diff --git a/Dockerfile b/Dockerfile index 42573acb10..fa9accc94a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,41 +1,41 @@ FROM ubuntu:trusty -MAINTAINER Thibault Cohen +MAINTAINER Sabe Jones -ENV DEBIAN_FRONTEND noninteractive - -### Init +# Avoid ERROR: invoke-rc.d: policy-rc.d denied execution of start. +RUN echo "#!/bin/sh\nexit 0" > /usr/sbin/policy-rc.d +# Install prerequisites RUN apt-get update +RUN apt-get install -y \ + build-essential \ + curl \ + git \ + libkrb5-dev \ + python -### Utils +# Install NodeJS +RUN curl -sL https://deb.nodesource.com/setup_4.x | sudo -E bash - +RUN apt-get install -y nodejs -RUN apt-get install -y git vim graphicsmagick nodejs phantomjs npm pkgconf libcairo2-dev libjpeg8-dev +# Clean up package management +RUN apt-get clean +RUN rm -rf /var/lib/apt/lists/* -### Installation +# Clone Habitica repo and install dependencies +RUN git clone https://github.com/HabitRPG/habitrpg.git +RUN npm install -g gulp grunt-cli bower +RUN cd /habitrpg && npm install +RUN cd /habitrpg && bower install --allow-root -RUN cd /opt && git clone https://github.com/HabitRPG/habitrpg.git +# Create environment config file and build directory +RUN cd /habitrpg && cp config.json.example config.json +RUN mkdir -p /habitrpg/website/build -#RUN cd /opt/habitrpg && git checkout -t origin/develop +# Point config.json to Mongo instance. Edit the IP address to your running Mongo container's IP before running. +RUN cd /habitrpg && sed -i 's/localhost/0.0.0.0/g' config.json -RUN cd /opt/habitrpg && git pull - -RUN cd /opt/habitrpg && npm install -g grunt-cli bower nodemon - -RUN ln -s /usr/bin/nodejs /usr/bin/node - -RUN cd /opt/habitrpg && npm install - -# Add config file - -ADD ./config.json /opt/habitrpg/ - -RUN mkdir -p /opt/habitrpg/build - -RUN cd /opt/habitrpg && bower install --allow-root - -# Run server - -RUN cd /opt/habitrpg && grunt build:prod - -CMD cd /opt/habitrpg && grunt nodemon +# Start Habitica +EXPOSE 3000 +WORKDIR /habitrpg/ +CMD ["npm", "start"] diff --git a/Gruntfile.js b/Gruntfile.js index 84b570da4c..b692b6c6bc 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -56,6 +56,7 @@ module.exports = function(grunt) { build: { files: [ {expand: true, cwd: 'website/public/', src: 'favicon.ico', dest: 'website/build/'}, + {expand: true, cwd: 'website/public/', src: 'favicon_192x192.png', dest: 'website/build/'}, {expand: true, cwd: '', src: 'common/dist/sprites/spritesmith*.png', dest: 'website/build/'}, {expand: true, cwd: '', src: 'common/img/sprites/backer-only/*.gif', dest: 'website/build/'}, {expand: true, cwd: '', src: 'common/img/sprites/npc_ian.gif', dest: 'website/build/'}, @@ -75,6 +76,7 @@ module.exports = function(grunt) { 'website/build/*.js', 'website/build/*.css', 'website/build/favicon.ico', + 'website/build/favicon_192x192.png', 'website/build/common/dist/sprites/*.png', 'website/build/common/img/sprites/backer-only/*.gif', 'website/build/common/img/sprites/npc_ian.gif', diff --git a/README.md b/README.md index acadee173b..e546a4295d 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -Habitica [![Build Status](https://travis-ci.org/HabitRPG/habitrpg.svg?branch=develop)](https://travis-ci.org/HabitRPG/habitrpg) [![Code Climate](https://codeclimate.com/github/HabitRPG/habitrpg.svg)](https://codeclimate.com/github/HabitRPG/habitrpg) [![Coverage Status](https://coveralls.io/repos/HabitRPG/habitrpg/badge.svg?branch=develop)](https://coveralls.io/r/HabitRPG/habitrpg?branch=develop) [![Bountysource](https://api.bountysource.com/badge/tracker?tracker_id=68393)](https://www.bountysource.com/trackers/68393-habitrpg?utm_source=68393&utm_medium=shield&utm_campaign=TRACKER_BADGE) [![Dependency Status](https://gemnasium.com/HabitRPG/habitrpg.svg)](https://gemnasium.com/HabitRPG/habitrpg) +Habitica [![Build Status](https://travis-ci.org/HabitRPG/habitrpg.svg?branch=develop)](https://travis-ci.org/HabitRPG/habitrpg) [![Code Climate](https://codeclimate.com/github/HabitRPG/habitrpg.svg)](https://codeclimate.com/github/HabitRPG/habitrpg) [![Coverage Status](https://coveralls.io/repos/HabitRPG/habitrpg/badge.svg?branch=develop)](https://coveralls.io/r/HabitRPG/habitrpg?branch=develop) [![Bountysource](https://api.bountysource.com/badge/tracker?tracker_id=68393)](https://www.bountysource.com/trackers/68393-habitrpg?utm_source=68393&utm_medium=shield&utm_campaign=TRACKER_BADGE) =============== [Habitica](https://habitica.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/common/README.md b/common/README.md index 9d3e1e2a43..c7ecb052a6 100644 --- a/common/README.md +++ b/common/README.md @@ -12,5 +12,5 @@ Shared resources useful for the multiple Habitica repositories, that way all the Because of some wonkiness with Heroku, the spritesheet compilation is not part of the production build process and must be done manually when new images are added by running: ``` bash -grunt compile:sprites +npm run sprites ``` diff --git a/common/audio/danielTheBard/Achievement_Unlocked.mp3 b/common/audio/danielTheBard/Achievement_Unlocked.mp3 index 539771b46f..a7080af148 100644 Binary files a/common/audio/danielTheBard/Achievement_Unlocked.mp3 and b/common/audio/danielTheBard/Achievement_Unlocked.mp3 differ diff --git a/common/audio/danielTheBard/Achievement_Unlocked.ogg b/common/audio/danielTheBard/Achievement_Unlocked.ogg index b70b4fe1ec..4bf46d0326 100644 Binary files a/common/audio/danielTheBard/Achievement_Unlocked.ogg and b/common/audio/danielTheBard/Achievement_Unlocked.ogg differ diff --git a/common/audio/danielTheBard/Chat.mp3 b/common/audio/danielTheBard/Chat.mp3 index dd3d8e0995..7276235419 100644 Binary files a/common/audio/danielTheBard/Chat.mp3 and b/common/audio/danielTheBard/Chat.mp3 differ diff --git a/common/audio/danielTheBard/Chat.ogg b/common/audio/danielTheBard/Chat.ogg index 462f1fe63f..4eeccdcbfb 100644 Binary files a/common/audio/danielTheBard/Chat.ogg and b/common/audio/danielTheBard/Chat.ogg differ diff --git a/common/audio/danielTheBard/Daily.mp3 b/common/audio/danielTheBard/Daily.mp3 index 0252f35975..8bf57b2f9f 100644 Binary files a/common/audio/danielTheBard/Daily.mp3 and b/common/audio/danielTheBard/Daily.mp3 differ diff --git a/common/audio/danielTheBard/Daily.ogg b/common/audio/danielTheBard/Daily.ogg index 6cb33851ee..2a49b43c91 100644 Binary files a/common/audio/danielTheBard/Daily.ogg and b/common/audio/danielTheBard/Daily.ogg differ diff --git a/common/audio/danielTheBard/Death.mp3 b/common/audio/danielTheBard/Death.mp3 index cda07e9076..b0b131d12c 100644 Binary files a/common/audio/danielTheBard/Death.mp3 and b/common/audio/danielTheBard/Death.mp3 differ diff --git a/common/audio/danielTheBard/Death.ogg b/common/audio/danielTheBard/Death.ogg index 9c0711cbfd..ef0c10bc01 100644 Binary files a/common/audio/danielTheBard/Death.ogg and b/common/audio/danielTheBard/Death.ogg differ diff --git a/common/audio/danielTheBard/Item_Drop.mp3 b/common/audio/danielTheBard/Item_Drop.mp3 index bfaa6a7171..3ffafb65c0 100644 Binary files a/common/audio/danielTheBard/Item_Drop.mp3 and b/common/audio/danielTheBard/Item_Drop.mp3 differ diff --git a/common/audio/danielTheBard/Item_Drop.ogg b/common/audio/danielTheBard/Item_Drop.ogg index a498bdb166..20861caf21 100644 Binary files a/common/audio/danielTheBard/Item_Drop.ogg and b/common/audio/danielTheBard/Item_Drop.ogg differ diff --git a/common/audio/danielTheBard/Level_Up.mp3 b/common/audio/danielTheBard/Level_Up.mp3 index 6f0e6e1a02..b99efdc458 100644 Binary files a/common/audio/danielTheBard/Level_Up.mp3 and b/common/audio/danielTheBard/Level_Up.mp3 differ diff --git a/common/audio/danielTheBard/Level_Up.ogg b/common/audio/danielTheBard/Level_Up.ogg index fe7988b68d..4daf76d2b0 100644 Binary files a/common/audio/danielTheBard/Level_Up.ogg and b/common/audio/danielTheBard/Level_Up.ogg differ diff --git a/common/audio/danielTheBard/Minus_Habit.mp3 b/common/audio/danielTheBard/Minus_Habit.mp3 index d29c6d8fe0..87230c71f1 100644 Binary files a/common/audio/danielTheBard/Minus_Habit.mp3 and b/common/audio/danielTheBard/Minus_Habit.mp3 differ diff --git a/common/audio/danielTheBard/Minus_Habit.ogg b/common/audio/danielTheBard/Minus_Habit.ogg index 182c856262..4295f9c978 100644 Binary files a/common/audio/danielTheBard/Minus_Habit.ogg and b/common/audio/danielTheBard/Minus_Habit.ogg differ diff --git a/common/audio/danielTheBard/Plus_Habit.mp3 b/common/audio/danielTheBard/Plus_Habit.mp3 index 3f43d830ac..fc2f8088a4 100644 Binary files a/common/audio/danielTheBard/Plus_Habit.mp3 and b/common/audio/danielTheBard/Plus_Habit.mp3 differ diff --git a/common/audio/danielTheBard/Plus_Habit.ogg b/common/audio/danielTheBard/Plus_Habit.ogg index d0874ba48d..3b8a61611a 100644 Binary files a/common/audio/danielTheBard/Plus_Habit.ogg and b/common/audio/danielTheBard/Plus_Habit.ogg differ diff --git a/common/audio/danielTheBard/Reward.mp3 b/common/audio/danielTheBard/Reward.mp3 index 58994c86b2..c88009f676 100644 Binary files a/common/audio/danielTheBard/Reward.mp3 and b/common/audio/danielTheBard/Reward.mp3 differ diff --git a/common/audio/danielTheBard/Reward.ogg b/common/audio/danielTheBard/Reward.ogg index 31341da2c4..c97bf5862d 100644 Binary files a/common/audio/danielTheBard/Reward.ogg and b/common/audio/danielTheBard/Reward.ogg differ diff --git a/common/audio/danielTheBard/ToDo.mp3 b/common/audio/danielTheBard/ToDo.mp3 index 50c1e8e32e..5e7478fdd8 100644 Binary files a/common/audio/danielTheBard/ToDo.mp3 and b/common/audio/danielTheBard/ToDo.mp3 differ diff --git a/common/audio/danielTheBard/ToDo.ogg b/common/audio/danielTheBard/ToDo.ogg index 23b8244f38..3d1ea001ca 100644 Binary files a/common/audio/danielTheBard/ToDo.ogg and b/common/audio/danielTheBard/ToDo.ogg differ diff --git a/common/audio/gokulTheme/Achievement_Unlocked.mp3 b/common/audio/gokulTheme/Achievement_Unlocked.mp3 index 05cd28ab61..329633deb2 100644 Binary files a/common/audio/gokulTheme/Achievement_Unlocked.mp3 and b/common/audio/gokulTheme/Achievement_Unlocked.mp3 differ diff --git a/common/audio/gokulTheme/Achievement_Unlocked.ogg b/common/audio/gokulTheme/Achievement_Unlocked.ogg index 666b7501fd..b3fc51b3ae 100644 Binary files a/common/audio/gokulTheme/Achievement_Unlocked.ogg and b/common/audio/gokulTheme/Achievement_Unlocked.ogg differ diff --git a/common/audio/gokulTheme/Chat.mp3 b/common/audio/gokulTheme/Chat.mp3 index 9bbfac8a29..0eff90059d 100644 Binary files a/common/audio/gokulTheme/Chat.mp3 and b/common/audio/gokulTheme/Chat.mp3 differ diff --git a/common/audio/gokulTheme/Chat.ogg b/common/audio/gokulTheme/Chat.ogg index a386443a5b..b5ffa577ae 100644 Binary files a/common/audio/gokulTheme/Chat.ogg and b/common/audio/gokulTheme/Chat.ogg differ diff --git a/common/audio/gokulTheme/Daily.mp3 b/common/audio/gokulTheme/Daily.mp3 index 58ece9fe2d..802d7a183d 100644 Binary files a/common/audio/gokulTheme/Daily.mp3 and b/common/audio/gokulTheme/Daily.mp3 differ diff --git a/common/audio/gokulTheme/Daily.ogg b/common/audio/gokulTheme/Daily.ogg index 03b75bf3d4..1d7741fbb5 100644 Binary files a/common/audio/gokulTheme/Daily.ogg and b/common/audio/gokulTheme/Daily.ogg differ diff --git a/common/audio/gokulTheme/Death.mp3 b/common/audio/gokulTheme/Death.mp3 index e5cbfd2699..e0fcdc39c4 100644 Binary files a/common/audio/gokulTheme/Death.mp3 and b/common/audio/gokulTheme/Death.mp3 differ diff --git a/common/audio/gokulTheme/Death.ogg b/common/audio/gokulTheme/Death.ogg index accd2390b3..c98fca9493 100644 Binary files a/common/audio/gokulTheme/Death.ogg and b/common/audio/gokulTheme/Death.ogg differ diff --git a/common/audio/gokulTheme/Item_Drop.mp3 b/common/audio/gokulTheme/Item_Drop.mp3 index 439fb7792d..8dda74181b 100644 Binary files a/common/audio/gokulTheme/Item_Drop.mp3 and b/common/audio/gokulTheme/Item_Drop.mp3 differ diff --git a/common/audio/gokulTheme/Item_Drop.ogg b/common/audio/gokulTheme/Item_Drop.ogg index 8a1309020c..99d174feff 100644 Binary files a/common/audio/gokulTheme/Item_Drop.ogg and b/common/audio/gokulTheme/Item_Drop.ogg differ diff --git a/common/audio/gokulTheme/Level_Up.mp3 b/common/audio/gokulTheme/Level_Up.mp3 index 49af3e84e9..f2153f5329 100644 Binary files a/common/audio/gokulTheme/Level_Up.mp3 and b/common/audio/gokulTheme/Level_Up.mp3 differ diff --git a/common/audio/gokulTheme/Level_Up.ogg b/common/audio/gokulTheme/Level_Up.ogg index f4473d8727..c88c355b45 100644 Binary files a/common/audio/gokulTheme/Level_Up.ogg and b/common/audio/gokulTheme/Level_Up.ogg differ diff --git a/common/audio/gokulTheme/Minus_Habit.mp3 b/common/audio/gokulTheme/Minus_Habit.mp3 index f7afb5c94b..c67418da4f 100644 Binary files a/common/audio/gokulTheme/Minus_Habit.mp3 and b/common/audio/gokulTheme/Minus_Habit.mp3 differ diff --git a/common/audio/gokulTheme/Minus_Habit.ogg b/common/audio/gokulTheme/Minus_Habit.ogg index 6e1d9eaeef..28c68f4cf3 100644 Binary files a/common/audio/gokulTheme/Minus_Habit.ogg and b/common/audio/gokulTheme/Minus_Habit.ogg differ diff --git a/common/audio/gokulTheme/Plus_Habit.mp3 b/common/audio/gokulTheme/Plus_Habit.mp3 index 91afbba5e9..9b79815eac 100644 Binary files a/common/audio/gokulTheme/Plus_Habit.mp3 and b/common/audio/gokulTheme/Plus_Habit.mp3 differ diff --git a/common/audio/gokulTheme/Plus_Habit.ogg b/common/audio/gokulTheme/Plus_Habit.ogg index 6343875f4d..8fd471d46d 100644 Binary files a/common/audio/gokulTheme/Plus_Habit.ogg and b/common/audio/gokulTheme/Plus_Habit.ogg differ diff --git a/common/audio/gokulTheme/Reward.mp3 b/common/audio/gokulTheme/Reward.mp3 index 570c2f424f..0ec446cc7d 100644 Binary files a/common/audio/gokulTheme/Reward.mp3 and b/common/audio/gokulTheme/Reward.mp3 differ diff --git a/common/audio/gokulTheme/Reward.ogg b/common/audio/gokulTheme/Reward.ogg index fe7c59cff1..f0aac8abd2 100644 Binary files a/common/audio/gokulTheme/Reward.ogg and b/common/audio/gokulTheme/Reward.ogg differ diff --git a/common/audio/gokulTheme/ToDo.mp3 b/common/audio/gokulTheme/ToDo.mp3 index 11bdd69e2e..6706c1fbbc 100644 Binary files a/common/audio/gokulTheme/ToDo.mp3 and b/common/audio/gokulTheme/ToDo.mp3 differ diff --git a/common/audio/gokulTheme/ToDo.ogg b/common/audio/gokulTheme/ToDo.ogg index 9a53b12874..3edc7e398b 100644 Binary files a/common/audio/gokulTheme/ToDo.ogg and b/common/audio/gokulTheme/ToDo.ogg differ diff --git a/common/audio/luneFoxTheme/Achievement_Unlocked.mp3 b/common/audio/luneFoxTheme/Achievement_Unlocked.mp3 index f45ac96f75..8ba7b1a371 100644 Binary files a/common/audio/luneFoxTheme/Achievement_Unlocked.mp3 and b/common/audio/luneFoxTheme/Achievement_Unlocked.mp3 differ diff --git a/common/audio/luneFoxTheme/Achievement_Unlocked.ogg b/common/audio/luneFoxTheme/Achievement_Unlocked.ogg index 9a81307512..a4cd548ed3 100644 Binary files a/common/audio/luneFoxTheme/Achievement_Unlocked.ogg and b/common/audio/luneFoxTheme/Achievement_Unlocked.ogg differ diff --git a/common/audio/luneFoxTheme/Chat.mp3 b/common/audio/luneFoxTheme/Chat.mp3 index 9fe637ff00..e7b8cce2b5 100644 Binary files a/common/audio/luneFoxTheme/Chat.mp3 and b/common/audio/luneFoxTheme/Chat.mp3 differ diff --git a/common/audio/luneFoxTheme/Chat.ogg b/common/audio/luneFoxTheme/Chat.ogg index 3caadb1909..1b90c9371b 100644 Binary files a/common/audio/luneFoxTheme/Chat.ogg and b/common/audio/luneFoxTheme/Chat.ogg differ diff --git a/common/audio/luneFoxTheme/Daily.mp3 b/common/audio/luneFoxTheme/Daily.mp3 index aa8561590a..8a019d8924 100644 Binary files a/common/audio/luneFoxTheme/Daily.mp3 and b/common/audio/luneFoxTheme/Daily.mp3 differ diff --git a/common/audio/luneFoxTheme/Daily.ogg b/common/audio/luneFoxTheme/Daily.ogg index 05287d2b4c..c4e94f31e8 100644 Binary files a/common/audio/luneFoxTheme/Daily.ogg and b/common/audio/luneFoxTheme/Daily.ogg differ diff --git a/common/audio/luneFoxTheme/Death.mp3 b/common/audio/luneFoxTheme/Death.mp3 index 917f6f4ac4..4b7961a750 100644 Binary files a/common/audio/luneFoxTheme/Death.mp3 and b/common/audio/luneFoxTheme/Death.mp3 differ diff --git a/common/audio/luneFoxTheme/Death.ogg b/common/audio/luneFoxTheme/Death.ogg index 25efd1f888..f1712da291 100644 Binary files a/common/audio/luneFoxTheme/Death.ogg and b/common/audio/luneFoxTheme/Death.ogg differ diff --git a/common/audio/luneFoxTheme/Item_Drop.mp3 b/common/audio/luneFoxTheme/Item_Drop.mp3 index 26b6e8e331..dfc595a93f 100644 Binary files a/common/audio/luneFoxTheme/Item_Drop.mp3 and b/common/audio/luneFoxTheme/Item_Drop.mp3 differ diff --git a/common/audio/luneFoxTheme/Item_Drop.ogg b/common/audio/luneFoxTheme/Item_Drop.ogg index b08764a709..58b7398b77 100644 Binary files a/common/audio/luneFoxTheme/Item_Drop.ogg and b/common/audio/luneFoxTheme/Item_Drop.ogg differ diff --git a/common/audio/luneFoxTheme/Level_Up.mp3 b/common/audio/luneFoxTheme/Level_Up.mp3 index 979678479f..4c128bc2d9 100644 Binary files a/common/audio/luneFoxTheme/Level_Up.mp3 and b/common/audio/luneFoxTheme/Level_Up.mp3 differ diff --git a/common/audio/luneFoxTheme/Level_Up.ogg b/common/audio/luneFoxTheme/Level_Up.ogg index f99dede828..6b94c08bf5 100644 Binary files a/common/audio/luneFoxTheme/Level_Up.ogg and b/common/audio/luneFoxTheme/Level_Up.ogg differ diff --git a/common/audio/luneFoxTheme/Minus_Habit.mp3 b/common/audio/luneFoxTheme/Minus_Habit.mp3 index 159ffa8afa..011c784494 100644 Binary files a/common/audio/luneFoxTheme/Minus_Habit.mp3 and b/common/audio/luneFoxTheme/Minus_Habit.mp3 differ diff --git a/common/audio/luneFoxTheme/Minus_Habit.ogg b/common/audio/luneFoxTheme/Minus_Habit.ogg index acc69e64b2..e769acdfcc 100644 Binary files a/common/audio/luneFoxTheme/Minus_Habit.ogg and b/common/audio/luneFoxTheme/Minus_Habit.ogg differ diff --git a/common/audio/luneFoxTheme/Plus_Habit.mp3 b/common/audio/luneFoxTheme/Plus_Habit.mp3 index 985c912883..a9fc0ce702 100644 Binary files a/common/audio/luneFoxTheme/Plus_Habit.mp3 and b/common/audio/luneFoxTheme/Plus_Habit.mp3 differ diff --git a/common/audio/luneFoxTheme/Plus_Habit.ogg b/common/audio/luneFoxTheme/Plus_Habit.ogg index db29eef496..264ff82d28 100644 Binary files a/common/audio/luneFoxTheme/Plus_Habit.ogg and b/common/audio/luneFoxTheme/Plus_Habit.ogg differ diff --git a/common/audio/luneFoxTheme/Reward.mp3 b/common/audio/luneFoxTheme/Reward.mp3 index f6e18a4157..52aa2cd686 100644 Binary files a/common/audio/luneFoxTheme/Reward.mp3 and b/common/audio/luneFoxTheme/Reward.mp3 differ diff --git a/common/audio/luneFoxTheme/Reward.ogg b/common/audio/luneFoxTheme/Reward.ogg index e149a004f0..f4d8c09360 100644 Binary files a/common/audio/luneFoxTheme/Reward.ogg and b/common/audio/luneFoxTheme/Reward.ogg differ diff --git a/common/audio/luneFoxTheme/ToDo.mp3 b/common/audio/luneFoxTheme/ToDo.mp3 index 188d023fb5..5871adbc91 100644 Binary files a/common/audio/luneFoxTheme/ToDo.mp3 and b/common/audio/luneFoxTheme/ToDo.mp3 differ diff --git a/common/audio/luneFoxTheme/ToDo.ogg b/common/audio/luneFoxTheme/ToDo.ogg index 38abefc5f3..ee7bb4671a 100644 Binary files a/common/audio/luneFoxTheme/ToDo.ogg and b/common/audio/luneFoxTheme/ToDo.ogg differ diff --git a/common/audio/wattsTheme/Achievement_Unlocked.mp3 b/common/audio/wattsTheme/Achievement_Unlocked.mp3 index f21b4dd9ab..9029fbff99 100644 Binary files a/common/audio/wattsTheme/Achievement_Unlocked.mp3 and b/common/audio/wattsTheme/Achievement_Unlocked.mp3 differ diff --git a/common/audio/wattsTheme/Achievement_Unlocked.ogg b/common/audio/wattsTheme/Achievement_Unlocked.ogg index 5fb69d90fa..a7d706ed77 100644 Binary files a/common/audio/wattsTheme/Achievement_Unlocked.ogg and b/common/audio/wattsTheme/Achievement_Unlocked.ogg differ diff --git a/common/audio/wattsTheme/Daily.mp3 b/common/audio/wattsTheme/Daily.mp3 index 8ad2ccf91b..574319801e 100644 Binary files a/common/audio/wattsTheme/Daily.mp3 and b/common/audio/wattsTheme/Daily.mp3 differ diff --git a/common/audio/wattsTheme/Daily.ogg b/common/audio/wattsTheme/Daily.ogg index 55cbdd1ab7..0c92bff7e5 100644 Binary files a/common/audio/wattsTheme/Daily.ogg and b/common/audio/wattsTheme/Daily.ogg differ diff --git a/common/audio/wattsTheme/Death.mp3 b/common/audio/wattsTheme/Death.mp3 index f540666a76..3eded7c2ab 100644 Binary files a/common/audio/wattsTheme/Death.mp3 and b/common/audio/wattsTheme/Death.mp3 differ diff --git a/common/audio/wattsTheme/Death.ogg b/common/audio/wattsTheme/Death.ogg index a2db1834fb..aab1b335c7 100644 Binary files a/common/audio/wattsTheme/Death.ogg and b/common/audio/wattsTheme/Death.ogg differ diff --git a/common/audio/wattsTheme/Item_Drop.mp3 b/common/audio/wattsTheme/Item_Drop.mp3 index 2d5b879fc7..7c61a91071 100644 Binary files a/common/audio/wattsTheme/Item_Drop.mp3 and b/common/audio/wattsTheme/Item_Drop.mp3 differ diff --git a/common/audio/wattsTheme/Item_Drop.ogg b/common/audio/wattsTheme/Item_Drop.ogg index 9a69aea16d..c09fd1d174 100644 Binary files a/common/audio/wattsTheme/Item_Drop.ogg and b/common/audio/wattsTheme/Item_Drop.ogg differ diff --git a/common/audio/wattsTheme/Level_Up.mp3 b/common/audio/wattsTheme/Level_Up.mp3 index 7e4be04d88..36427090b1 100644 Binary files a/common/audio/wattsTheme/Level_Up.mp3 and b/common/audio/wattsTheme/Level_Up.mp3 differ diff --git a/common/audio/wattsTheme/Level_Up.ogg b/common/audio/wattsTheme/Level_Up.ogg index da782f56f7..25672991a0 100644 Binary files a/common/audio/wattsTheme/Level_Up.ogg and b/common/audio/wattsTheme/Level_Up.ogg differ diff --git a/common/audio/wattsTheme/Minus_Habit.mp3 b/common/audio/wattsTheme/Minus_Habit.mp3 index 71cf23cd53..8584a5ae8c 100644 Binary files a/common/audio/wattsTheme/Minus_Habit.mp3 and b/common/audio/wattsTheme/Minus_Habit.mp3 differ diff --git a/common/audio/wattsTheme/Minus_Habit.ogg b/common/audio/wattsTheme/Minus_Habit.ogg index 981dc429e6..ec6247eb8e 100644 Binary files a/common/audio/wattsTheme/Minus_Habit.ogg and b/common/audio/wattsTheme/Minus_Habit.ogg differ diff --git a/common/audio/wattsTheme/Plus_Habit.mp3 b/common/audio/wattsTheme/Plus_Habit.mp3 index 54f132127d..5157827895 100644 Binary files a/common/audio/wattsTheme/Plus_Habit.mp3 and b/common/audio/wattsTheme/Plus_Habit.mp3 differ diff --git a/common/audio/wattsTheme/Plus_Habit.ogg b/common/audio/wattsTheme/Plus_Habit.ogg index 3436395de8..ba013e29fd 100644 Binary files a/common/audio/wattsTheme/Plus_Habit.ogg and b/common/audio/wattsTheme/Plus_Habit.ogg differ diff --git a/common/audio/wattsTheme/Reward.mp3 b/common/audio/wattsTheme/Reward.mp3 index d90efdd83c..a1c3b5dae8 100644 Binary files a/common/audio/wattsTheme/Reward.mp3 and b/common/audio/wattsTheme/Reward.mp3 differ diff --git a/common/audio/wattsTheme/Reward.ogg b/common/audio/wattsTheme/Reward.ogg index 1fce2f529c..b2cd01648f 100644 Binary files a/common/audio/wattsTheme/Reward.ogg and b/common/audio/wattsTheme/Reward.ogg differ diff --git a/common/audio/wattsTheme/ToDo.mp3 b/common/audio/wattsTheme/ToDo.mp3 index 9c85f09e26..26f160b3cc 100644 Binary files a/common/audio/wattsTheme/ToDo.mp3 and b/common/audio/wattsTheme/ToDo.mp3 differ diff --git a/common/audio/wattsTheme/ToDo.ogg b/common/audio/wattsTheme/ToDo.ogg index 9dbf533418..f91392d4e0 100644 Binary files a/common/audio/wattsTheme/ToDo.ogg and b/common/audio/wattsTheme/ToDo.ogg differ diff --git a/common/dist/sprites/habitrpg-shared.css b/common/dist/sprites/habitrpg-shared.css index c204501040..3accdf078a 100644 --- a/common/dist/sprites/habitrpg-shared.css +++ b/common/dist/sprites/habitrpg-shared.css @@ -1 +1 @@ -.2014_Fall_HealerPROMO2{background-image:url(spritesmith-largeSprites-0.png);background-position:-637px -955px;width:90px;height:90px}.2014_Fall_Mage_PROMO9{background-image:url(spritesmith-largeSprites-0.png);background-position:-452px -347px;width:120px;height:90px}.2014_Fall_RoguePROMO3{background-image:url(spritesmith-largeSprites-0.png);background-position:-573px -347px;width:105px;height:90px}.2014_Fall_Warrior_PROMO{background-image:url(spritesmith-largeSprites-0.png);background-position:-590px -461px;width:90px;height:90px}.promo_backtoschool{background-image:url(spritesmith-largeSprites-0.png);background-position:-970px -342px;width:150px;height:150px}.promo_burnout{background-image:url(spritesmith-largeSprites-0.png);background-position:0 -220px;width:219px;height:240px}.promo_classes_fall_2014{background-image:url(spritesmith-largeSprites-0.png);background-position:-326px -760px;width:321px;height:100px}.promo_classes_fall_2015{background-image:url(spritesmith-largeSprites-0.png);background-position:0 -660px;width:377px;height:99px}.promo_dilatoryDistress{background-image:url(spritesmith-largeSprites-0.png);background-position:0 -955px;width:90px;height:90px}.promo_enchanted_armoire{background-image:url(spritesmith-largeSprites-0.png);background-position:-378px -660px;width:374px;height:76px}.promo_enchanted_armoire_201507{background-image:url(spritesmith-largeSprites-0.png);background-position:-970px -641px;width:217px;height:90px}.promo_enchanted_armoire_201508{background-image:url(spritesmith-largeSprites-0.png);background-position:-723px -342px;width:180px;height:90px}.promo_enchanted_armoire_201509{background-image:url(spritesmith-largeSprites-0.png);background-position:-273px -955px;width:90px;height:90px}.promo_enchanted_armoire_201511{background-image:url(spritesmith-largeSprites-0.png);background-position:-1111px -493px;width:122px;height:90px}.promo_habitica{background-image:url(spritesmith-largeSprites-0.png);background-position:-723px -166px;width:175px;height:175px}.promo_haunted_hair{background-image:url(spritesmith-largeSprites-0.png);background-position:-1127px -194px;width:100px;height:137px}.customize-option.promo_haunted_hair{background-image:url(spritesmith-largeSprites-0.png);background-position:-1152px -209px;width:60px;height:60px}.promo_item_notif{background-image:url(spritesmith-largeSprites-0.png);background-position:-970px -91px;width:249px;height:102px}.promo_mystery_201405{background-image:url(spritesmith-largeSprites-0.png);background-position:-546px -955px;width:90px;height:90px}.promo_mystery_201406{background-image:url(spritesmith-largeSprites-0.png);background-position:-311px -220px;width:90px;height:96px}.promo_mystery_201407{background-image:url(spritesmith-largeSprites-0.png);background-position:-876px -433px;width:42px;height:62px}.promo_mystery_201408{background-image:url(spritesmith-largeSprites-0.png);background-position:-1188px -641px;width:60px;height:71px}.promo_mystery_201409{background-image:url(spritesmith-largeSprites-0.png);background-position:-182px -955px;width:90px;height:90px}.promo_mystery_201410{background-image:url(spritesmith-largeSprites-0.png);background-position:-1169px -823px;width:72px;height:63px}.promo_mystery_201411{background-image:url(spritesmith-largeSprites-0.png);background-position:-364px -955px;width:90px;height:90px}.promo_mystery_201412{background-image:url(spritesmith-largeSprites-0.png);background-position:-904px -342px;width:42px;height:66px}.promo_mystery_201501{background-image:url(spritesmith-largeSprites-0.png);background-position:-899px -166px;width:48px;height:63px}.promo_mystery_201502{background-image:url(spritesmith-largeSprites-0.png);background-position:-499px -461px;width:90px;height:90px}.promo_mystery_201503{background-image:url(spritesmith-largeSprites-0.png);background-position:-728px -955px;width:90px;height:90px}.promo_mystery_201504{background-image:url(spritesmith-largeSprites-0.png);background-position:-1188px -732px;width:60px;height:69px}.promo_mystery_201505{background-image:url(spritesmith-largeSprites-0.png);background-position:-91px -955px;width:90px;height:90px}.promo_mystery_201506{background-image:url(spritesmith-largeSprites-0.png);background-position:-899px -230px;width:42px;height:69px}.promo_mystery_201507{background-image:url(spritesmith-largeSprites-0.png);background-position:-220px -220px;width:90px;height:105px}.promo_mystery_201508{background-image:url(spritesmith-largeSprites-0.png);background-position:-314px -326px;width:93px;height:90px}.promo_mystery_201509{background-image:url(spritesmith-largeSprites-0.png);background-position:-455px -955px;width:90px;height:90px}.promo_mystery_201510{background-image:url(spritesmith-largeSprites-0.png);background-position:-220px -326px;width:93px;height:90px}.promo_mystery_3014{background-image:url(spritesmith-largeSprites-0.png);background-position:-970px -732px;width:217px;height:90px}.promo_orca{background-image:url(spritesmith-largeSprites-0.png);background-position:-1121px -342px;width:105px;height:105px}.promo_partyhats{background-image:url(spritesmith-largeSprites-0.png);background-position:-1111px -584px;width:115px;height:47px}.promo_pastel_skin{background-image:url(spritesmith-largeSprites-0.png);background-position:-331px -871px;width:330px;height:83px}.customize-option.promo_pastel_skin{background-image:url(spritesmith-largeSprites-0.png);background-position:-356px -886px;width:60px;height:60px}.promo_pet_skins{background-image:url(spritesmith-largeSprites-0.png);background-position:-970px -493px;width:140px;height:147px}.customize-option.promo_pet_skins{background-image:url(spritesmith-largeSprites-0.png);background-position:-995px -508px;width:60px;height:60px}.promo_shimmer_hair{background-image:url(spritesmith-largeSprites-0.png);background-position:0 -871px;width:330px;height:83px}.customize-option.promo_shimmer_hair{background-image:url(spritesmith-largeSprites-0.png);background-position:-25px -886px;width:60px;height:60px}.promo_splashyskins{background-image:url(spritesmith-largeSprites-0.png);background-position:-970px -823px;width:198px;height:91px}.customize-option.promo_splashyskins{background-image:url(spritesmith-largeSprites-0.png);background-position:-995px -838px;width:60px;height:60px}.promo_springclasses2014{background-image:url(spritesmith-largeSprites-0.png);background-position:-970px 0;width:288px;height:90px}.promo_springclasses2015{background-image:url(spritesmith-largeSprites-0.png);background-position:-430px -557px;width:288px;height:90px}.promo_summer_classes_2014{background-image:url(spritesmith-largeSprites-0.png);background-position:0 -557px;width:429px;height:102px}.promo_summer_classes_2015{background-image:url(spritesmith-largeSprites-0.png);background-position:-648px -760px;width:300px;height:88px}.promo_updos{background-image:url(spritesmith-largeSprites-0.png);background-position:-970px -194px;width:156px;height:147px}.promo_veteran_pets{background-image:url(spritesmith-largeSprites-0.png);background-position:-723px -509px;width:146px;height:75px}.promo_winterclasses2015{background-image:url(spritesmith-largeSprites-0.png);background-position:0 -760px;width:325px;height:110px}.promo_winteryhair{background-image:url(spritesmith-largeSprites-0.png);background-position:-723px -433px;width:152px;height:75px}.customize-option.promo_winteryhair{background-image:url(spritesmith-largeSprites-0.png);background-position:-748px -448px;width:60px;height:60px}.avatar_variety{background-image:url(spritesmith-largeSprites-0.png);background-position:0 -461px;width:498px;height:95px}.party_preview{background-image:url(spritesmith-largeSprites-0.png);background-position:0 0;width:451px;height:219px}.welcome_basic_avatars{background-image:url(spritesmith-largeSprites-0.png);background-position:-452px -181px;width:246px;height:165px}.welcome_promo_party{background-image:url(spritesmith-largeSprites-0.png);background-position:-452px 0;width:270px;height:180px}.welcome_sample_tasks{background-image:url(spritesmith-largeSprites-0.png);background-position:-723px 0;width:246px;height:165px}.achievement-alien{background-image:url(spritesmith-main-0.png);background-position:-1678px -1451px;width:24px;height:26px}.achievement-alien2x{background-image:url(spritesmith-main-0.png);background-position:-895px -979px;width:48px;height:52px}.achievement-alpha{background-image:url(spritesmith-main-0.png);background-position:-1678px -1424px;width:24px;height:26px}.achievement-armor{background-image:url(spritesmith-main-0.png);background-position:-1678px -1397px;width:24px;height:26px}.achievement-armor2x{background-image:url(spritesmith-main-0.png);background-position:-944px -979px;width:48px;height:52px}.achievement-boot{background-image:url(spritesmith-main-0.png);background-position:-1678px -1343px;width:24px;height:26px}.achievement-boot2x{background-image:url(spritesmith-main-0.png);background-position:-1042px -979px;width:48px;height:52px}.achievement-bow{background-image:url(spritesmith-main-0.png);background-position:-1678px -1289px;width:24px;height:26px}.achievement-bow2x{background-image:url(spritesmith-main-0.png);background-position:-504px -1582px;width:48px;height:52px}.achievement-burnout{background-image:url(spritesmith-main-0.png);background-position:-1678px -1235px;width:24px;height:26px}.achievement-burnout2x{background-image:url(spritesmith-main-0.png);background-position:-602px -1582px;width:48px;height:52px}.achievement-cactus{background-image:url(spritesmith-main-0.png);background-position:-1678px -1181px;width:24px;height:26px}.achievement-cactus2x{background-image:url(spritesmith-main-0.png);background-position:-700px -1582px;width:48px;height:52px}.achievement-cake{background-image:url(spritesmith-main-0.png);background-position:-1678px -1127px;width:24px;height:26px}.achievement-cake2x{background-image:url(spritesmith-main-0.png);background-position:-798px -1582px;width:48px;height:52px}.achievement-cave{background-image:url(spritesmith-main-0.png);background-position:-1678px -1073px;width:24px;height:26px}.achievement-cave2x{background-image:url(spritesmith-main-0.png);background-position:-896px -1582px;width:48px;height:52px}.achievement-coffin{background-image:url(spritesmith-main-0.png);background-position:-1678px -1019px;width:24px;height:26px}.achievement-comment{background-image:url(spritesmith-main-0.png);background-position:-1678px -992px;width:24px;height:26px}.achievement-comment2x{background-image:url(spritesmith-main-0.png);background-position:-994px -1582px;width:48px;height:52px}.achievement-costumeContest{background-image:url(spritesmith-main-0.png);background-position:-1678px -938px;width:24px;height:26px}.achievement-costumeContest2x{background-image:url(spritesmith-main-0.png);background-position:-1092px -1582px;width:48px;height:52px}.achievement-dilatory{background-image:url(spritesmith-main-0.png);background-position:-1678px -884px;width:24px;height:26px}.achievement-firefox{background-image:url(spritesmith-main-0.png);background-position:-1678px -857px;width:24px;height:26px}.achievement-greeting{background-image:url(spritesmith-main-0.png);background-position:-1678px -830px;width:24px;height:26px}.achievement-greeting2x{background-image:url(spritesmith-main-0.png);background-position:-1190px -1582px;width:48px;height:52px}.achievement-habitBirthday{background-image:url(spritesmith-main-0.png);background-position:-1678px -776px;width:24px;height:26px}.achievement-habitBirthday2x{background-image:url(spritesmith-main-0.png);background-position:-1288px -1582px;width:48px;height:52px}.achievement-habiticaDay{background-image:url(spritesmith-main-0.png);background-position:-1678px -722px;width:24px;height:26px}.achievement-habiticaDay2x{background-image:url(spritesmith-main-0.png);background-position:-1386px -1582px;width:48px;height:52px}.achievement-heart{background-image:url(spritesmith-main-0.png);background-position:-1678px -668px;width:24px;height:26px}.achievement-heart2x{background-image:url(spritesmith-main-0.png);background-position:-1435px -1582px;width:48px;height:52px}.achievement-karaoke-2x{background-image:url(spritesmith-main-0.png);background-position:-1533px -1582px;width:48px;height:52px}.achievement-karaoke{background-image:url(spritesmith-main-0.png);background-position:-1678px -587px;width:24px;height:26px}.achievement-ninja{background-image:url(spritesmith-main-0.png);background-position:-1678px -560px;width:24px;height:26px}.achievement-ninja2x{background-image:url(spritesmith-main-0.png);background-position:-1678px 0;width:48px;height:52px}.achievement-nye{background-image:url(spritesmith-main-0.png);background-position:-1678px -506px;width:24px;height:26px}.achievement-nye2x{background-image:url(spritesmith-main-0.png);background-position:-1678px -106px;width:48px;height:52px}.achievement-perfect{background-image:url(spritesmith-main-0.png);background-position:-1678px -452px;width:24px;height:26px}.achievement-perfect2x{background-image:url(spritesmith-main-0.png);background-position:-846px -979px;width:48px;height:52px}.achievement-rat{background-image:url(spritesmith-main-0.png);background-position:-1678px -911px;width:24px;height:26px}.achievement-rat2x{background-image:url(spritesmith-main-0.png);background-position:-1678px -318px;width:48px;height:52px}.achievement-seafoam{background-image:url(spritesmith-main-0.png);background-position:-1678px -398px;width:24px;height:26px}.achievement-seafoam2x{background-image:url(spritesmith-main-0.png);background-position:-1678px -265px;width:48px;height:52px}.achievement-shield{background-image:url(spritesmith-main-0.png);background-position:-1678px -425px;width:24px;height:26px}.achievement-shield2x{background-image:url(spritesmith-main-0.png);background-position:-1678px -159px;width:48px;height:52px}.achievement-shinySeed{background-image:url(spritesmith-main-0.png);background-position:-1678px -479px;width:24px;height:26px}.achievement-shinySeed2x{background-image:url(spritesmith-main-0.png);background-position:-1678px -53px;width:48px;height:52px}.achievement-snowball{background-image:url(spritesmith-main-0.png);background-position:-1678px -533px;width:24px;height:26px}.achievement-snowball2x{background-image:url(spritesmith-main-0.png);background-position:-1582px -1582px;width:48px;height:52px}.achievement-spookDust{background-image:url(spritesmith-main-0.png);background-position:-1678px -614px;width:24px;height:26px}.achievement-spookDust2x{background-image:url(spritesmith-main-0.png);background-position:-1484px -1582px;width:48px;height:52px}.achievement-stoikalm{background-image:url(spritesmith-main-0.png);background-position:-1678px -641px;width:24px;height:26px}.achievement-sun{background-image:url(spritesmith-main-0.png);background-position:-1678px -695px;width:24px;height:26px}.achievement-sun2x{background-image:url(spritesmith-main-0.png);background-position:-1337px -1582px;width:48px;height:52px}.achievement-sword{background-image:url(spritesmith-main-0.png);background-position:-1678px -749px;width:24px;height:26px}.achievement-sword2x{background-image:url(spritesmith-main-0.png);background-position:-1239px -1582px;width:48px;height:52px}.achievement-thankyou{background-image:url(spritesmith-main-0.png);background-position:-1678px -803px;width:24px;height:26px}.achievement-thankyou2x{background-image:url(spritesmith-main-0.png);background-position:-1141px -1582px;width:48px;height:52px}.achievement-thermometer{background-image:url(spritesmith-main-0.png);background-position:-1678px -371px;width:24px;height:26px}.achievement-thermometer2x{background-image:url(spritesmith-main-0.png);background-position:-1043px -1582px;width:48px;height:52px}.achievement-tree{background-image:url(spritesmith-main-0.png);background-position:-1678px -965px;width:24px;height:26px}.achievement-tree2x{background-image:url(spritesmith-main-0.png);background-position:-945px -1582px;width:48px;height:52px}.achievement-triadbingo{background-image:url(spritesmith-main-0.png);background-position:-1678px -1046px;width:24px;height:26px}.achievement-triadbingo2x{background-image:url(spritesmith-main-0.png);background-position:-847px -1582px;width:48px;height:52px}.achievement-ultimate-healer{background-image:url(spritesmith-main-0.png);background-position:-1678px -1100px;width:24px;height:26px}.achievement-ultimate-healer2x{background-image:url(spritesmith-main-0.png);background-position:-749px -1582px;width:48px;height:52px}.achievement-ultimate-mage{background-image:url(spritesmith-main-0.png);background-position:-1678px -1154px;width:24px;height:26px}.achievement-ultimate-mage2x{background-image:url(spritesmith-main-0.png);background-position:-651px -1582px;width:48px;height:52px}.achievement-ultimate-rogue{background-image:url(spritesmith-main-0.png);background-position:-1678px -1208px;width:24px;height:26px}.achievement-ultimate-rogue2x{background-image:url(spritesmith-main-0.png);background-position:-553px -1582px;width:48px;height:52px}.achievement-ultimate-warrior{background-image:url(spritesmith-main-0.png);background-position:-1678px -1262px;width:24px;height:26px}.achievement-ultimate-warrior2x{background-image:url(spritesmith-main-0.png);background-position:-455px -1582px;width:48px;height:52px}.achievement-valentine{background-image:url(spritesmith-main-0.png);background-position:-1678px -1316px;width:24px;height:26px}.achievement-valentine2x{background-image:url(spritesmith-main-0.png);background-position:-993px -979px;width:48px;height:52px}.achievement-wolf{background-image:url(spritesmith-main-0.png);background-position:-1678px -1370px;width:24px;height:26px}.achievement-wolf2x{background-image:url(spritesmith-main-0.png);background-position:-1678px -212px;width:48px;height:52px}.background_autumn_forest{background-image:url(spritesmith-main-0.png);background-position:-423px -592px;width:140px;height:147px}.background_beach{background-image:url(spritesmith-main-0.png);background-position:-426px 0;width:141px;height:147px}.background_blacksmithy{background-image:url(spritesmith-main-0.png);background-position:-709px -148px;width:140px;height:147px}.background_cherry_trees{background-image:url(spritesmith-main-0.png);background-position:-709px -296px;width:140px;height:147px}.background_clouds{background-image:url(spritesmith-main-0.png);background-position:0 -592px;width:140px;height:147px}.background_coral_reef{background-image:url(spritesmith-main-0.png);background-position:-850px -148px;width:140px;height:147px}.background_crystal_cave{background-image:url(spritesmith-main-0.png);background-position:-850px -592px;width:140px;height:147px}.background_dilatory_ruins{background-image:url(spritesmith-main-0.png);background-position:0 -740px;width:140px;height:147px}.background_distant_castle{background-image:url(spritesmith-main-0.png);background-position:-423px -888px;width:140px;height:147px}.background_drifting_raft{background-image:url(spritesmith-main-0.png);background-position:-564px -888px;width:140px;height:147px}.background_dusty_canyons{background-image:url(spritesmith-main-0.png);background-position:-705px -888px;width:140px;height:147px}.background_fairy_ring{background-image:url(spritesmith-main-0.png);background-position:-568px 0;width:140px;height:147px}.background_floating_islands{background-image:url(spritesmith-main-0.png);background-position:-568px -148px;width:140px;height:147px}.background_floral_meadow{background-image:url(spritesmith-main-0.png);background-position:-568px -296px;width:140px;height:147px}.background_forest{background-image:url(spritesmith-main-0.png);background-position:0 -444px;width:140px;height:147px}.background_frigid_peak{background-image:url(spritesmith-main-0.png);background-position:-141px -444px;width:140px;height:147px}.background_giant_wave{background-image:url(spritesmith-main-0.png);background-position:-284px 0;width:141px;height:147px}.background_graveyard{background-image:url(spritesmith-main-0.png);background-position:-423px -444px;width:140px;height:147px}.background_gumdrop_land{background-image:url(spritesmith-main-0.png);background-position:-564px -444px;width:140px;height:147px}.background_harvest_feast{background-image:url(spritesmith-main-0.png);background-position:-709px 0;width:140px;height:147px}.background_harvest_fields{background-image:url(spritesmith-main-0.png);background-position:0 -148px;width:141px;height:147px}.background_harvest_moon{background-image:url(spritesmith-main-0.png);background-position:-142px -148px;width:141px;height:147px}.background_haunted_house{background-image:url(spritesmith-main-0.png);background-position:-709px -444px;width:140px;height:147px}.background_ice_cave{background-image:url(spritesmith-main-0.png);background-position:-284px -148px;width:141px;height:147px}.background_iceberg{background-image:url(spritesmith-main-0.png);background-position:-141px -592px;width:140px;height:147px}.background_island_waterfalls{background-image:url(spritesmith-main-0.png);background-position:-282px -592px;width:140px;height:147px}.background_marble_temple{background-image:url(spritesmith-main-0.png);background-position:-142px 0;width:141px;height:147px}.background_market{background-image:url(spritesmith-main-0.png);background-position:-564px -592px;width:140px;height:147px}.background_mountain_lake{background-image:url(spritesmith-main-0.png);background-position:-705px -592px;width:140px;height:147px}.background_night_dunes{background-image:url(spritesmith-main-0.png);background-position:-850px 0;width:140px;height:147px}.background_open_waters{background-image:url(spritesmith-main-0.png);background-position:0 0;width:141px;height:147px}.background_pagodas{background-image:url(spritesmith-main-0.png);background-position:-850px -296px;width:140px;height:147px}.background_pumpkin_patch{background-image:url(spritesmith-main-0.png);background-position:-850px -444px;width:140px;height:147px}.background_pyramids{background-image:url(spritesmith-main-0.png);background-position:-426px -148px;width:141px;height:147px}.background_rolling_hills{background-image:url(spritesmith-main-0.png);background-position:0 -296px;width:141px;height:147px}.background_seafarer_ship{background-image:url(spritesmith-main-0.png);background-position:-141px -740px;width:140px;height:147px}.background_shimmery_bubbles{background-image:url(spritesmith-main-0.png);background-position:-282px -740px;width:140px;height:147px}.background_slimy_swamp{background-image:url(spritesmith-main-0.png);background-position:-423px -740px;width:140px;height:147px}.background_snowy_pines{background-image:url(spritesmith-main-0.png);background-position:-564px -740px;width:140px;height:147px}.background_south_pole{background-image:url(spritesmith-main-0.png);background-position:-705px -740px;width:140px;height:147px}.background_spring_rain{background-image:url(spritesmith-main-0.png);background-position:-846px -740px;width:140px;height:147px}.background_stable{background-image:url(spritesmith-main-0.png);background-position:-991px 0;width:140px;height:147px}.background_stained_glass{background-image:url(spritesmith-main-0.png);background-position:-991px -148px;width:140px;height:147px}.background_starry_skies{background-image:url(spritesmith-main-0.png);background-position:-991px -296px;width:140px;height:147px}.background_sunken_ship{background-image:url(spritesmith-main-0.png);background-position:-991px -444px;width:140px;height:147px}.background_sunset_meadow{background-image:url(spritesmith-main-0.png);background-position:-991px -592px;width:140px;height:147px}.background_sunset_oasis{background-image:url(spritesmith-main-0.png);background-position:-991px -740px;width:140px;height:147px}.background_sunset_savannah{background-image:url(spritesmith-main-0.png);background-position:0 -888px;width:140px;height:147px}.background_swarming_darkness{background-image:url(spritesmith-main-0.png);background-position:-141px -888px;width:140px;height:147px}.background_tavern{background-image:url(spritesmith-main-0.png);background-position:-282px -888px;width:140px;height:147px}.background_thunderstorm{background-image:url(spritesmith-main-0.png);background-position:-142px -296px;width:141px;height:147px}.background_twinkly_lights{background-image:url(spritesmith-main-0.png);background-position:-284px -296px;width:141px;height:147px}.background_twinkly_party_lights{background-image:url(spritesmith-main-0.png);background-position:-426px -296px;width:141px;height:147px}.background_volcano{background-image:url(spritesmith-main-0.png);background-position:-282px -444px;width:140px;height:147px}.hair_beard_1_TRUred{background-image:url(spritesmith-main-0.png);background-position:-1314px -910px;width:90px;height:90px}.customize-option.hair_beard_1_TRUred{background-image:url(spritesmith-main-0.png);background-position:-1339px -925px;width:60px;height:60px}.hair_beard_1_aurora{background-image:url(spritesmith-main-0.png);background-position:-1314px -1001px;width:90px;height:90px}.customize-option.hair_beard_1_aurora{background-image:url(spritesmith-main-0.png);background-position:-1339px -1016px;width:60px;height:60px}.hair_beard_1_black{background-image:url(spritesmith-main-0.png);background-position:-1314px -1092px;width:90px;height:90px}.customize-option.hair_beard_1_black{background-image:url(spritesmith-main-0.png);background-position:-1339px -1107px;width:60px;height:60px}.hair_beard_1_blond{background-image:url(spritesmith-main-0.png);background-position:-1314px -1183px;width:90px;height:90px}.customize-option.hair_beard_1_blond{background-image:url(spritesmith-main-0.png);background-position:-1339px -1198px;width:60px;height:60px}.hair_beard_1_blue{background-image:url(spritesmith-main-0.png);background-position:0 -1309px;width:90px;height:90px}.customize-option.hair_beard_1_blue{background-image:url(spritesmith-main-0.png);background-position:-25px -1324px;width:60px;height:60px}.hair_beard_1_brown{background-image:url(spritesmith-main-0.png);background-position:-91px -1309px;width:90px;height:90px}.customize-option.hair_beard_1_brown{background-image:url(spritesmith-main-0.png);background-position:-116px -1324px;width:60px;height:60px}.hair_beard_1_candycane{background-image:url(spritesmith-main-0.png);background-position:-182px -1309px;width:90px;height:90px}.customize-option.hair_beard_1_candycane{background-image:url(spritesmith-main-0.png);background-position:-207px -1324px;width:60px;height:60px}.hair_beard_1_candycorn{background-image:url(spritesmith-main-0.png);background-position:-273px -1309px;width:90px;height:90px}.customize-option.hair_beard_1_candycorn{background-image:url(spritesmith-main-0.png);background-position:-298px -1324px;width:60px;height:60px}.hair_beard_1_festive{background-image:url(spritesmith-main-0.png);background-position:-364px -1309px;width:90px;height:90px}.customize-option.hair_beard_1_festive{background-image:url(spritesmith-main-0.png);background-position:-389px -1324px;width:60px;height:60px}.hair_beard_1_frost{background-image:url(spritesmith-main-0.png);background-position:-455px -1309px;width:90px;height:90px}.customize-option.hair_beard_1_frost{background-image:url(spritesmith-main-0.png);background-position:-480px -1324px;width:60px;height:60px}.hair_beard_1_ghostwhite{background-image:url(spritesmith-main-0.png);background-position:-546px -1309px;width:90px;height:90px}.customize-option.hair_beard_1_ghostwhite{background-image:url(spritesmith-main-0.png);background-position:-571px -1324px;width:60px;height:60px}.hair_beard_1_green{background-image:url(spritesmith-main-0.png);background-position:-637px -1309px;width:90px;height:90px}.customize-option.hair_beard_1_green{background-image:url(spritesmith-main-0.png);background-position:-662px -1324px;width:60px;height:60px}.hair_beard_1_halloween{background-image:url(spritesmith-main-0.png);background-position:-728px -1309px;width:90px;height:90px}.customize-option.hair_beard_1_halloween{background-image:url(spritesmith-main-0.png);background-position:-753px -1324px;width:60px;height:60px}.hair_beard_1_holly{background-image:url(spritesmith-main-0.png);background-position:-819px -1309px;width:90px;height:90px}.customize-option.hair_beard_1_holly{background-image:url(spritesmith-main-0.png);background-position:-844px -1324px;width:60px;height:60px}.hair_beard_1_hollygreen{background-image:url(spritesmith-main-0.png);background-position:-910px -1309px;width:90px;height:90px}.customize-option.hair_beard_1_hollygreen{background-image:url(spritesmith-main-0.png);background-position:-935px -1324px;width:60px;height:60px}.hair_beard_1_midnight{background-image:url(spritesmith-main-0.png);background-position:-1001px -1309px;width:90px;height:90px}.customize-option.hair_beard_1_midnight{background-image:url(spritesmith-main-0.png);background-position:-1026px -1324px;width:60px;height:60px}.hair_beard_1_pblue{background-image:url(spritesmith-main-0.png);background-position:-1092px -1309px;width:90px;height:90px}.customize-option.hair_beard_1_pblue{background-image:url(spritesmith-main-0.png);background-position:-1117px -1324px;width:60px;height:60px}.hair_beard_1_peppermint{background-image:url(spritesmith-main-0.png);background-position:-1183px -1309px;width:90px;height:90px}.customize-option.hair_beard_1_peppermint{background-image:url(spritesmith-main-0.png);background-position:-1208px -1324px;width:60px;height:60px}.hair_beard_1_pgreen{background-image:url(spritesmith-main-0.png);background-position:-1274px -1309px;width:90px;height:90px}.customize-option.hair_beard_1_pgreen{background-image:url(spritesmith-main-0.png);background-position:-1299px -1324px;width:60px;height:60px}.hair_beard_1_porange{background-image:url(spritesmith-main-0.png);background-position:-1405px 0;width:90px;height:90px}.customize-option.hair_beard_1_porange{background-image:url(spritesmith-main-0.png);background-position:-1430px -15px;width:60px;height:60px}.hair_beard_1_ppink{background-image:url(spritesmith-main-0.png);background-position:-1405px -91px;width:90px;height:90px}.customize-option.hair_beard_1_ppink{background-image:url(spritesmith-main-0.png);background-position:-1430px -106px;width:60px;height:60px}.hair_beard_1_ppurple{background-image:url(spritesmith-main-0.png);background-position:-1405px -182px;width:90px;height:90px}.customize-option.hair_beard_1_ppurple{background-image:url(spritesmith-main-0.png);background-position:-1430px -197px;width:60px;height:60px}.hair_beard_1_pumpkin{background-image:url(spritesmith-main-0.png);background-position:-1405px -273px;width:90px;height:90px}.customize-option.hair_beard_1_pumpkin{background-image:url(spritesmith-main-0.png);background-position:-1430px -288px;width:60px;height:60px}.hair_beard_1_purple{background-image:url(spritesmith-main-0.png);background-position:-1405px -364px;width:90px;height:90px}.customize-option.hair_beard_1_purple{background-image:url(spritesmith-main-0.png);background-position:-1430px -379px;width:60px;height:60px}.hair_beard_1_pyellow{background-image:url(spritesmith-main-0.png);background-position:-1405px -455px;width:90px;height:90px}.customize-option.hair_beard_1_pyellow{background-image:url(spritesmith-main-0.png);background-position:-1430px -470px;width:60px;height:60px}.hair_beard_1_rainbow{background-image:url(spritesmith-main-0.png);background-position:-846px -888px;width:90px;height:90px}.customize-option.hair_beard_1_rainbow{background-image:url(spritesmith-main-0.png);background-position:-871px -903px;width:60px;height:60px}.hair_beard_1_red{background-image:url(spritesmith-main-0.png);background-position:-1405px -637px;width:90px;height:90px}.customize-option.hair_beard_1_red{background-image:url(spritesmith-main-0.png);background-position:-1430px -652px;width:60px;height:60px}.hair_beard_1_snowy{background-image:url(spritesmith-main-0.png);background-position:-1405px -728px;width:90px;height:90px}.customize-option.hair_beard_1_snowy{background-image:url(spritesmith-main-0.png);background-position:-1430px -743px;width:60px;height:60px}.hair_beard_1_white{background-image:url(spritesmith-main-0.png);background-position:-1405px -819px;width:90px;height:90px}.customize-option.hair_beard_1_white{background-image:url(spritesmith-main-0.png);background-position:-1430px -834px;width:60px;height:60px}.hair_beard_1_winternight{background-image:url(spritesmith-main-0.png);background-position:-1405px -910px;width:90px;height:90px}.customize-option.hair_beard_1_winternight{background-image:url(spritesmith-main-0.png);background-position:-1430px -925px;width:60px;height:60px}.hair_beard_1_winterstar{background-image:url(spritesmith-main-0.png);background-position:-1405px -1001px;width:90px;height:90px}.customize-option.hair_beard_1_winterstar{background-image:url(spritesmith-main-0.png);background-position:-1430px -1016px;width:60px;height:60px}.hair_beard_1_yellow{background-image:url(spritesmith-main-0.png);background-position:-1405px -1092px;width:90px;height:90px}.customize-option.hair_beard_1_yellow{background-image:url(spritesmith-main-0.png);background-position:-1430px -1107px;width:60px;height:60px}.hair_beard_1_zombie{background-image:url(spritesmith-main-0.png);background-position:-1405px -1183px;width:90px;height:90px}.customize-option.hair_beard_1_zombie{background-image:url(spritesmith-main-0.png);background-position:-1430px -1198px;width:60px;height:60px}.hair_beard_2_TRUred{background-image:url(spritesmith-main-0.png);background-position:-1405px -1274px;width:90px;height:90px}.customize-option.hair_beard_2_TRUred{background-image:url(spritesmith-main-0.png);background-position:-1430px -1289px;width:60px;height:60px}.hair_beard_2_aurora{background-image:url(spritesmith-main-0.png);background-position:0 -1400px;width:90px;height:90px}.customize-option.hair_beard_2_aurora{background-image:url(spritesmith-main-0.png);background-position:-25px -1415px;width:60px;height:60px}.hair_beard_2_black{background-image:url(spritesmith-main-0.png);background-position:-91px -1400px;width:90px;height:90px}.customize-option.hair_beard_2_black{background-image:url(spritesmith-main-0.png);background-position:-116px -1415px;width:60px;height:60px}.hair_beard_2_blond{background-image:url(spritesmith-main-0.png);background-position:-182px -1400px;width:90px;height:90px}.customize-option.hair_beard_2_blond{background-image:url(spritesmith-main-0.png);background-position:-207px -1415px;width:60px;height:60px}.hair_beard_2_blue{background-image:url(spritesmith-main-0.png);background-position:-273px -1400px;width:90px;height:90px}.customize-option.hair_beard_2_blue{background-image:url(spritesmith-main-0.png);background-position:-298px -1415px;width:60px;height:60px}.hair_beard_2_brown{background-image:url(spritesmith-main-0.png);background-position:-364px -1400px;width:90px;height:90px}.customize-option.hair_beard_2_brown{background-image:url(spritesmith-main-0.png);background-position:-389px -1415px;width:60px;height:60px}.hair_beard_2_candycane{background-image:url(spritesmith-main-0.png);background-position:-455px -1400px;width:90px;height:90px}.customize-option.hair_beard_2_candycane{background-image:url(spritesmith-main-0.png);background-position:-480px -1415px;width:60px;height:60px}.hair_beard_2_candycorn{background-image:url(spritesmith-main-0.png);background-position:-546px -1400px;width:90px;height:90px}.customize-option.hair_beard_2_candycorn{background-image:url(spritesmith-main-0.png);background-position:-571px -1415px;width:60px;height:60px}.hair_beard_2_festive{background-image:url(spritesmith-main-0.png);background-position:-637px -1400px;width:90px;height:90px}.customize-option.hair_beard_2_festive{background-image:url(spritesmith-main-0.png);background-position:-662px -1415px;width:60px;height:60px}.hair_beard_2_frost{background-image:url(spritesmith-main-0.png);background-position:-728px -1400px;width:90px;height:90px}.customize-option.hair_beard_2_frost{background-image:url(spritesmith-main-0.png);background-position:-753px -1415px;width:60px;height:60px}.hair_beard_2_ghostwhite{background-image:url(spritesmith-main-0.png);background-position:-819px -1400px;width:90px;height:90px}.customize-option.hair_beard_2_ghostwhite{background-image:url(spritesmith-main-0.png);background-position:-844px -1415px;width:60px;height:60px}.hair_beard_2_green{background-image:url(spritesmith-main-0.png);background-position:-910px -1400px;width:90px;height:90px}.customize-option.hair_beard_2_green{background-image:url(spritesmith-main-0.png);background-position:-935px -1415px;width:60px;height:60px}.hair_beard_2_halloween{background-image:url(spritesmith-main-0.png);background-position:-1001px -1400px;width:90px;height:90px}.customize-option.hair_beard_2_halloween{background-image:url(spritesmith-main-0.png);background-position:-1026px -1415px;width:60px;height:60px}.hair_beard_2_holly{background-image:url(spritesmith-main-0.png);background-position:-1092px -1400px;width:90px;height:90px}.customize-option.hair_beard_2_holly{background-image:url(spritesmith-main-0.png);background-position:-1117px -1415px;width:60px;height:60px}.hair_beard_2_hollygreen{background-image:url(spritesmith-main-0.png);background-position:-1183px -1400px;width:90px;height:90px}.customize-option.hair_beard_2_hollygreen{background-image:url(spritesmith-main-0.png);background-position:-1208px -1415px;width:60px;height:60px}.hair_beard_2_midnight{background-image:url(spritesmith-main-0.png);background-position:-1274px -1400px;width:90px;height:90px}.customize-option.hair_beard_2_midnight{background-image:url(spritesmith-main-0.png);background-position:-1299px -1415px;width:60px;height:60px}.hair_beard_2_pblue{background-image:url(spritesmith-main-0.png);background-position:-1365px -1400px;width:90px;height:90px}.customize-option.hair_beard_2_pblue{background-image:url(spritesmith-main-0.png);background-position:-1390px -1415px;width:60px;height:60px}.hair_beard_2_peppermint{background-image:url(spritesmith-main-0.png);background-position:-1496px 0;width:90px;height:90px}.customize-option.hair_beard_2_peppermint{background-image:url(spritesmith-main-0.png);background-position:-1521px -15px;width:60px;height:60px}.hair_beard_2_pgreen{background-image:url(spritesmith-main-0.png);background-position:-1496px -91px;width:90px;height:90px}.customize-option.hair_beard_2_pgreen{background-image:url(spritesmith-main-0.png);background-position:-1521px -106px;width:60px;height:60px}.hair_beard_2_porange{background-image:url(spritesmith-main-0.png);background-position:-1496px -182px;width:90px;height:90px}.customize-option.hair_beard_2_porange{background-image:url(spritesmith-main-0.png);background-position:-1521px -197px;width:60px;height:60px}.hair_beard_2_ppink{background-image:url(spritesmith-main-0.png);background-position:-1496px -273px;width:90px;height:90px}.customize-option.hair_beard_2_ppink{background-image:url(spritesmith-main-0.png);background-position:-1521px -288px;width:60px;height:60px}.hair_beard_2_ppurple{background-image:url(spritesmith-main-0.png);background-position:-1496px -364px;width:90px;height:90px}.customize-option.hair_beard_2_ppurple{background-image:url(spritesmith-main-0.png);background-position:-1521px -379px;width:60px;height:60px}.hair_beard_2_pumpkin{background-image:url(spritesmith-main-0.png);background-position:-1496px -455px;width:90px;height:90px}.customize-option.hair_beard_2_pumpkin{background-image:url(spritesmith-main-0.png);background-position:-1521px -470px;width:60px;height:60px}.hair_beard_2_purple{background-image:url(spritesmith-main-0.png);background-position:-1496px -546px;width:90px;height:90px}.customize-option.hair_beard_2_purple{background-image:url(spritesmith-main-0.png);background-position:-1521px -561px;width:60px;height:60px}.hair_beard_2_pyellow{background-image:url(spritesmith-main-0.png);background-position:-1496px -637px;width:90px;height:90px}.customize-option.hair_beard_2_pyellow{background-image:url(spritesmith-main-0.png);background-position:-1521px -652px;width:60px;height:60px}.hair_beard_2_rainbow{background-image:url(spritesmith-main-0.png);background-position:-1496px -728px;width:90px;height:90px}.customize-option.hair_beard_2_rainbow{background-image:url(spritesmith-main-0.png);background-position:-1521px -743px;width:60px;height:60px}.hair_beard_2_red{background-image:url(spritesmith-main-0.png);background-position:-1496px -819px;width:90px;height:90px}.customize-option.hair_beard_2_red{background-image:url(spritesmith-main-0.png);background-position:-1521px -834px;width:60px;height:60px}.hair_beard_2_snowy{background-image:url(spritesmith-main-0.png);background-position:-1496px -910px;width:90px;height:90px}.customize-option.hair_beard_2_snowy{background-image:url(spritesmith-main-0.png);background-position:-1521px -925px;width:60px;height:60px}.hair_beard_2_white{background-image:url(spritesmith-main-0.png);background-position:-1496px -1001px;width:90px;height:90px}.customize-option.hair_beard_2_white{background-image:url(spritesmith-main-0.png);background-position:-1521px -1016px;width:60px;height:60px}.hair_beard_2_winternight{background-image:url(spritesmith-main-0.png);background-position:-1496px -1092px;width:90px;height:90px}.customize-option.hair_beard_2_winternight{background-image:url(spritesmith-main-0.png);background-position:-1521px -1107px;width:60px;height:60px}.hair_beard_2_winterstar{background-image:url(spritesmith-main-0.png);background-position:-1496px -1183px;width:90px;height:90px}.customize-option.hair_beard_2_winterstar{background-image:url(spritesmith-main-0.png);background-position:-1521px -1198px;width:60px;height:60px}.hair_beard_2_yellow{background-image:url(spritesmith-main-0.png);background-position:-1496px -1274px;width:90px;height:90px}.customize-option.hair_beard_2_yellow{background-image:url(spritesmith-main-0.png);background-position:-1521px -1289px;width:60px;height:60px}.hair_beard_2_zombie{background-image:url(spritesmith-main-0.png);background-position:-1496px -1365px;width:90px;height:90px}.customize-option.hair_beard_2_zombie{background-image:url(spritesmith-main-0.png);background-position:-1521px -1380px;width:60px;height:60px}.hair_beard_3_TRUred{background-image:url(spritesmith-main-0.png);background-position:0 -1491px;width:90px;height:90px}.customize-option.hair_beard_3_TRUred{background-image:url(spritesmith-main-0.png);background-position:-25px -1506px;width:60px;height:60px}.hair_beard_3_aurora{background-image:url(spritesmith-main-0.png);background-position:-91px -1491px;width:90px;height:90px}.customize-option.hair_beard_3_aurora{background-image:url(spritesmith-main-0.png);background-position:-116px -1506px;width:60px;height:60px}.hair_beard_3_black{background-image:url(spritesmith-main-0.png);background-position:-182px -1491px;width:90px;height:90px}.customize-option.hair_beard_3_black{background-image:url(spritesmith-main-0.png);background-position:-207px -1506px;width:60px;height:60px}.hair_beard_3_blond{background-image:url(spritesmith-main-0.png);background-position:-273px -1491px;width:90px;height:90px}.customize-option.hair_beard_3_blond{background-image:url(spritesmith-main-0.png);background-position:-298px -1506px;width:60px;height:60px}.hair_beard_3_blue{background-image:url(spritesmith-main-0.png);background-position:-364px -1491px;width:90px;height:90px}.customize-option.hair_beard_3_blue{background-image:url(spritesmith-main-0.png);background-position:-389px -1506px;width:60px;height:60px}.hair_beard_3_brown{background-image:url(spritesmith-main-0.png);background-position:-455px -1491px;width:90px;height:90px}.customize-option.hair_beard_3_brown{background-image:url(spritesmith-main-0.png);background-position:-480px -1506px;width:60px;height:60px}.hair_beard_3_candycane{background-image:url(spritesmith-main-0.png);background-position:-546px -1491px;width:90px;height:90px}.customize-option.hair_beard_3_candycane{background-image:url(spritesmith-main-0.png);background-position:-571px -1506px;width:60px;height:60px}.hair_beard_3_candycorn{background-image:url(spritesmith-main-0.png);background-position:-637px -1491px;width:90px;height:90px}.customize-option.hair_beard_3_candycorn{background-image:url(spritesmith-main-0.png);background-position:-662px -1506px;width:60px;height:60px}.hair_beard_3_festive{background-image:url(spritesmith-main-0.png);background-position:-728px -1491px;width:90px;height:90px}.customize-option.hair_beard_3_festive{background-image:url(spritesmith-main-0.png);background-position:-753px -1506px;width:60px;height:60px}.hair_beard_3_frost{background-image:url(spritesmith-main-0.png);background-position:-819px -1491px;width:90px;height:90px}.customize-option.hair_beard_3_frost{background-image:url(spritesmith-main-0.png);background-position:-844px -1506px;width:60px;height:60px}.hair_beard_3_ghostwhite{background-image:url(spritesmith-main-0.png);background-position:-910px -1491px;width:90px;height:90px}.customize-option.hair_beard_3_ghostwhite{background-image:url(spritesmith-main-0.png);background-position:-935px -1506px;width:60px;height:60px}.hair_beard_3_green{background-image:url(spritesmith-main-0.png);background-position:-1001px -1491px;width:90px;height:90px}.customize-option.hair_beard_3_green{background-image:url(spritesmith-main-0.png);background-position:-1026px -1506px;width:60px;height:60px}.hair_beard_3_halloween{background-image:url(spritesmith-main-0.png);background-position:-1092px -1491px;width:90px;height:90px}.customize-option.hair_beard_3_halloween{background-image:url(spritesmith-main-0.png);background-position:-1117px -1506px;width:60px;height:60px}.hair_beard_3_holly{background-image:url(spritesmith-main-0.png);background-position:-1183px -1491px;width:90px;height:90px}.customize-option.hair_beard_3_holly{background-image:url(spritesmith-main-0.png);background-position:-1208px -1506px;width:60px;height:60px}.hair_beard_3_hollygreen{background-image:url(spritesmith-main-0.png);background-position:-1274px -1491px;width:90px;height:90px}.customize-option.hair_beard_3_hollygreen{background-image:url(spritesmith-main-0.png);background-position:-1299px -1506px;width:60px;height:60px}.hair_beard_3_midnight{background-image:url(spritesmith-main-0.png);background-position:-1365px -1491px;width:90px;height:90px}.customize-option.hair_beard_3_midnight{background-image:url(spritesmith-main-0.png);background-position:-1390px -1506px;width:60px;height:60px}.hair_beard_3_pblue{background-image:url(spritesmith-main-0.png);background-position:-1456px -1491px;width:90px;height:90px}.customize-option.hair_beard_3_pblue{background-image:url(spritesmith-main-0.png);background-position:-1481px -1506px;width:60px;height:60px}.hair_beard_3_peppermint{background-image:url(spritesmith-main-0.png);background-position:-1587px 0;width:90px;height:90px}.customize-option.hair_beard_3_peppermint{background-image:url(spritesmith-main-0.png);background-position:-1612px -15px;width:60px;height:60px}.hair_beard_3_pgreen{background-image:url(spritesmith-main-0.png);background-position:-1587px -91px;width:90px;height:90px}.customize-option.hair_beard_3_pgreen{background-image:url(spritesmith-main-0.png);background-position:-1612px -106px;width:60px;height:60px}.hair_beard_3_porange{background-image:url(spritesmith-main-0.png);background-position:-1587px -182px;width:90px;height:90px}.customize-option.hair_beard_3_porange{background-image:url(spritesmith-main-0.png);background-position:-1612px -197px;width:60px;height:60px}.hair_beard_3_ppink{background-image:url(spritesmith-main-0.png);background-position:-1587px -273px;width:90px;height:90px}.customize-option.hair_beard_3_ppink{background-image:url(spritesmith-main-0.png);background-position:-1612px -288px;width:60px;height:60px}.hair_beard_3_ppurple{background-image:url(spritesmith-main-0.png);background-position:-1587px -364px;width:90px;height:90px}.customize-option.hair_beard_3_ppurple{background-image:url(spritesmith-main-0.png);background-position:-1612px -379px;width:60px;height:60px}.hair_beard_3_pumpkin{background-image:url(spritesmith-main-0.png);background-position:-1587px -455px;width:90px;height:90px}.customize-option.hair_beard_3_pumpkin{background-image:url(spritesmith-main-0.png);background-position:-1612px -470px;width:60px;height:60px}.hair_beard_3_purple{background-image:url(spritesmith-main-0.png);background-position:-1587px -546px;width:90px;height:90px}.customize-option.hair_beard_3_purple{background-image:url(spritesmith-main-0.png);background-position:-1612px -561px;width:60px;height:60px}.hair_beard_3_pyellow{background-image:url(spritesmith-main-0.png);background-position:-1587px -637px;width:90px;height:90px}.customize-option.hair_beard_3_pyellow{background-image:url(spritesmith-main-0.png);background-position:-1612px -652px;width:60px;height:60px}.hair_beard_3_rainbow{background-image:url(spritesmith-main-0.png);background-position:-1587px -728px;width:90px;height:90px}.customize-option.hair_beard_3_rainbow{background-image:url(spritesmith-main-0.png);background-position:-1612px -743px;width:60px;height:60px}.hair_beard_3_red{background-image:url(spritesmith-main-0.png);background-position:-1587px -819px;width:90px;height:90px}.customize-option.hair_beard_3_red{background-image:url(spritesmith-main-0.png);background-position:-1612px -834px;width:60px;height:60px}.hair_beard_3_snowy{background-image:url(spritesmith-main-0.png);background-position:-1587px -910px;width:90px;height:90px}.customize-option.hair_beard_3_snowy{background-image:url(spritesmith-main-0.png);background-position:-1612px -925px;width:60px;height:60px}.hair_beard_3_white{background-image:url(spritesmith-main-0.png);background-position:-1587px -1001px;width:90px;height:90px}.customize-option.hair_beard_3_white{background-image:url(spritesmith-main-0.png);background-position:-1612px -1016px;width:60px;height:60px}.hair_beard_3_winternight{background-image:url(spritesmith-main-0.png);background-position:-1587px -1092px;width:90px;height:90px}.customize-option.hair_beard_3_winternight{background-image:url(spritesmith-main-0.png);background-position:-1612px -1107px;width:60px;height:60px}.hair_beard_3_winterstar{background-image:url(spritesmith-main-0.png);background-position:-1587px -1183px;width:90px;height:90px}.customize-option.hair_beard_3_winterstar{background-image:url(spritesmith-main-0.png);background-position:-1612px -1198px;width:60px;height:60px}.hair_beard_3_yellow{background-image:url(spritesmith-main-0.png);background-position:-1587px -1274px;width:90px;height:90px}.customize-option.hair_beard_3_yellow{background-image:url(spritesmith-main-0.png);background-position:-1612px -1289px;width:60px;height:60px}.hair_beard_3_zombie{background-image:url(spritesmith-main-0.png);background-position:-1587px -1365px;width:90px;height:90px}.customize-option.hair_beard_3_zombie{background-image:url(spritesmith-main-0.png);background-position:-1612px -1380px;width:60px;height:60px}.hair_mustache_1_TRUred{background-image:url(spritesmith-main-0.png);background-position:-1587px -1456px;width:90px;height:90px}.customize-option.hair_mustache_1_TRUred{background-image:url(spritesmith-main-0.png);background-position:-1612px -1471px;width:60px;height:60px}.hair_mustache_1_aurora{background-image:url(spritesmith-main-0.png);background-position:0 -1582px;width:90px;height:90px}.customize-option.hair_mustache_1_aurora{background-image:url(spritesmith-main-0.png);background-position:-25px -1597px;width:60px;height:60px}.hair_mustache_1_black{background-image:url(spritesmith-main-0.png);background-position:-91px -1582px;width:90px;height:90px}.customize-option.hair_mustache_1_black{background-image:url(spritesmith-main-0.png);background-position:-116px -1597px;width:60px;height:60px}.hair_mustache_1_blond{background-image:url(spritesmith-main-0.png);background-position:-182px -1582px;width:90px;height:90px}.customize-option.hair_mustache_1_blond{background-image:url(spritesmith-main-0.png);background-position:-207px -1597px;width:60px;height:60px}.hair_mustache_1_blue{background-image:url(spritesmith-main-0.png);background-position:-273px -1582px;width:90px;height:90px}.customize-option.hair_mustache_1_blue{background-image:url(spritesmith-main-0.png);background-position:-298px -1597px;width:60px;height:60px}.hair_mustache_1_brown{background-image:url(spritesmith-main-0.png);background-position:-364px -1582px;width:90px;height:90px}.customize-option.hair_mustache_1_brown{background-image:url(spritesmith-main-0.png);background-position:-389px -1597px;width:60px;height:60px}.hair_mustache_1_candycane{background-image:url(spritesmith-main-0.png);background-position:-1405px -546px;width:90px;height:90px}.customize-option.hair_mustache_1_candycane{background-image:url(spritesmith-main-0.png);background-position:-1430px -561px;width:60px;height:60px}.hair_mustache_1_candycorn{background-image:url(spritesmith-main-0.png);background-position:-1132px -637px;width:90px;height:90px}.customize-option.hair_mustache_1_candycorn{background-image:url(spritesmith-main-0.png);background-position:-1157px -652px;width:60px;height:60px}.hair_mustache_1_festive{background-image:url(spritesmith-main-0.png);background-position:-1132px -546px;width:90px;height:90px}.customize-option.hair_mustache_1_festive{background-image:url(spritesmith-main-0.png);background-position:-1157px -561px;width:60px;height:60px}.hair_mustache_1_frost{background-image:url(spritesmith-main-0.png);background-position:-1132px -455px;width:90px;height:90px}.customize-option.hair_mustache_1_frost{background-image:url(spritesmith-main-0.png);background-position:-1157px -470px;width:60px;height:60px}.hair_mustache_1_ghostwhite{background-image:url(spritesmith-main-0.png);background-position:-1132px -364px;width:90px;height:90px}.customize-option.hair_mustache_1_ghostwhite{background-image:url(spritesmith-main-0.png);background-position:-1157px -379px;width:60px;height:60px}.hair_mustache_1_green{background-image:url(spritesmith-main-0.png);background-position:-1132px -273px;width:90px;height:90px}.customize-option.hair_mustache_1_green{background-image:url(spritesmith-main-0.png);background-position:-1157px -288px;width:60px;height:60px}.hair_mustache_1_halloween{background-image:url(spritesmith-main-0.png);background-position:-1132px -182px;width:90px;height:90px}.customize-option.hair_mustache_1_halloween{background-image:url(spritesmith-main-0.png);background-position:-1157px -197px;width:60px;height:60px}.hair_mustache_1_holly{background-image:url(spritesmith-main-0.png);background-position:-1132px -91px;width:90px;height:90px}.customize-option.hair_mustache_1_holly{background-image:url(spritesmith-main-0.png);background-position:-1157px -106px;width:60px;height:60px}.hair_mustache_1_hollygreen{background-image:url(spritesmith-main-0.png);background-position:-1132px 0;width:90px;height:90px}.customize-option.hair_mustache_1_hollygreen{background-image:url(spritesmith-main-0.png);background-position:-1157px -15px;width:60px;height:60px}.hair_mustache_1_midnight{background-image:url(spritesmith-main-0.png);background-position:-1001px -1036px;width:90px;height:90px}.customize-option.hair_mustache_1_midnight{background-image:url(spritesmith-main-0.png);background-position:-1026px -1051px;width:60px;height:60px}.hair_mustache_1_pblue{background-image:url(spritesmith-main-0.png);background-position:-910px -1036px;width:90px;height:90px}.customize-option.hair_mustache_1_pblue{background-image:url(spritesmith-main-0.png);background-position:-935px -1051px;width:60px;height:60px}.hair_mustache_1_peppermint{background-image:url(spritesmith-main-0.png);background-position:-819px -1036px;width:90px;height:90px}.customize-option.hair_mustache_1_peppermint{background-image:url(spritesmith-main-0.png);background-position:-844px -1051px;width:60px;height:60px}.hair_mustache_1_pgreen{background-image:url(spritesmith-main-0.png);background-position:-728px -1036px;width:90px;height:90px}.customize-option.hair_mustache_1_pgreen{background-image:url(spritesmith-main-0.png);background-position:-753px -1051px;width:60px;height:60px}.hair_mustache_1_porange{background-image:url(spritesmith-main-0.png);background-position:-637px -1036px;width:90px;height:90px}.customize-option.hair_mustache_1_porange{background-image:url(spritesmith-main-0.png);background-position:-662px -1051px;width:60px;height:60px}.hair_mustache_1_ppink{background-image:url(spritesmith-main-0.png);background-position:-546px -1036px;width:90px;height:90px}.customize-option.hair_mustache_1_ppink{background-image:url(spritesmith-main-0.png);background-position:-571px -1051px;width:60px;height:60px}.hair_mustache_1_ppurple{background-image:url(spritesmith-main-0.png);background-position:-455px -1036px;width:90px;height:90px}.customize-option.hair_mustache_1_ppurple{background-image:url(spritesmith-main-0.png);background-position:-480px -1051px;width:60px;height:60px}.hair_mustache_1_pumpkin{background-image:url(spritesmith-main-0.png);background-position:-364px -1036px;width:90px;height:90px}.customize-option.hair_mustache_1_pumpkin{background-image:url(spritesmith-main-0.png);background-position:-389px -1051px;width:60px;height:60px}.hair_mustache_1_purple{background-image:url(spritesmith-main-0.png);background-position:-273px -1036px;width:90px;height:90px}.customize-option.hair_mustache_1_purple{background-image:url(spritesmith-main-0.png);background-position:-298px -1051px;width:60px;height:60px}.hair_mustache_1_pyellow{background-image:url(spritesmith-main-0.png);background-position:-182px -1036px;width:90px;height:90px}.customize-option.hair_mustache_1_pyellow{background-image:url(spritesmith-main-0.png);background-position:-207px -1051px;width:60px;height:60px}.hair_mustache_1_rainbow{background-image:url(spritesmith-main-0.png);background-position:-91px -1036px;width:90px;height:90px}.customize-option.hair_mustache_1_rainbow{background-image:url(spritesmith-main-0.png);background-position:-116px -1051px;width:60px;height:60px}.hair_mustache_1_red{background-image:url(spritesmith-main-0.png);background-position:0 -1036px;width:90px;height:90px}.customize-option.hair_mustache_1_red{background-image:url(spritesmith-main-0.png);background-position:-25px -1051px;width:60px;height:60px}.hair_mustache_1_snowy{background-image:url(spritesmith-main-0.png);background-position:-1028px -888px;width:90px;height:90px}.customize-option.hair_mustache_1_snowy{background-image:url(spritesmith-main-0.png);background-position:-1053px -903px;width:60px;height:60px}.hair_mustache_1_white{background-image:url(spritesmith-main-0.png);background-position:-937px -888px;width:90px;height:90px}.customize-option.hair_mustache_1_white{background-image:url(spritesmith-main-0.png);background-position:-962px -903px;width:60px;height:60px}.hair_mustache_1_winternight{background-image:url(spritesmith-main-0.png);background-position:-1314px -819px;width:90px;height:90px}.customize-option.hair_mustache_1_winternight{background-image:url(spritesmith-main-0.png);background-position:-1339px -834px;width:60px;height:60px}.hair_mustache_1_winterstar{background-image:url(spritesmith-main-0.png);background-position:-1314px -728px;width:90px;height:90px}.customize-option.hair_mustache_1_winterstar{background-image:url(spritesmith-main-0.png);background-position:-1339px -743px;width:60px;height:60px}.hair_mustache_1_yellow{background-image:url(spritesmith-main-0.png);background-position:-1314px -637px;width:90px;height:90px}.customize-option.hair_mustache_1_yellow{background-image:url(spritesmith-main-0.png);background-position:-1339px -652px;width:60px;height:60px}.hair_mustache_1_zombie{background-image:url(spritesmith-main-0.png);background-position:-1314px -546px;width:90px;height:90px}.customize-option.hair_mustache_1_zombie{background-image:url(spritesmith-main-0.png);background-position:-1339px -561px;width:60px;height:60px}.hair_mustache_2_TRUred{background-image:url(spritesmith-main-0.png);background-position:-1314px -455px;width:90px;height:90px}.customize-option.hair_mustache_2_TRUred{background-image:url(spritesmith-main-0.png);background-position:-1339px -470px;width:60px;height:60px}.hair_mustache_2_aurora{background-image:url(spritesmith-main-0.png);background-position:-1314px -364px;width:90px;height:90px}.customize-option.hair_mustache_2_aurora{background-image:url(spritesmith-main-0.png);background-position:-1339px -379px;width:60px;height:60px}.hair_mustache_2_black{background-image:url(spritesmith-main-0.png);background-position:-1314px -273px;width:90px;height:90px}.customize-option.hair_mustache_2_black{background-image:url(spritesmith-main-0.png);background-position:-1339px -288px;width:60px;height:60px}.hair_mustache_2_blond{background-image:url(spritesmith-main-0.png);background-position:-1314px -182px;width:90px;height:90px}.customize-option.hair_mustache_2_blond{background-image:url(spritesmith-main-0.png);background-position:-1339px -197px;width:60px;height:60px}.hair_mustache_2_blue{background-image:url(spritesmith-main-0.png);background-position:-1314px -91px;width:90px;height:90px}.customize-option.hair_mustache_2_blue{background-image:url(spritesmith-main-0.png);background-position:-1339px -106px;width:60px;height:60px}.hair_mustache_2_brown{background-image:url(spritesmith-main-0.png);background-position:-1314px 0;width:90px;height:90px}.customize-option.hair_mustache_2_brown{background-image:url(spritesmith-main-0.png);background-position:-1339px -15px;width:60px;height:60px}.hair_mustache_2_candycane{background-image:url(spritesmith-main-0.png);background-position:-1183px -1218px;width:90px;height:90px}.customize-option.hair_mustache_2_candycane{background-image:url(spritesmith-main-0.png);background-position:-1208px -1233px;width:60px;height:60px}.hair_mustache_2_candycorn{background-image:url(spritesmith-main-0.png);background-position:-1092px -1218px;width:90px;height:90px}.customize-option.hair_mustache_2_candycorn{background-image:url(spritesmith-main-0.png);background-position:-1117px -1233px;width:60px;height:60px}.hair_mustache_2_festive{background-image:url(spritesmith-main-0.png);background-position:-1001px -1218px;width:90px;height:90px}.customize-option.hair_mustache_2_festive{background-image:url(spritesmith-main-0.png);background-position:-1026px -1233px;width:60px;height:60px}.hair_mustache_2_frost{background-image:url(spritesmith-main-0.png);background-position:-910px -1218px;width:90px;height:90px}.customize-option.hair_mustache_2_frost{background-image:url(spritesmith-main-0.png);background-position:-935px -1233px;width:60px;height:60px}.hair_mustache_2_ghostwhite{background-image:url(spritesmith-main-0.png);background-position:-819px -1218px;width:90px;height:90px}.customize-option.hair_mustache_2_ghostwhite{background-image:url(spritesmith-main-0.png);background-position:-844px -1233px;width:60px;height:60px}.hair_mustache_2_green{background-image:url(spritesmith-main-0.png);background-position:-728px -1218px;width:90px;height:90px}.customize-option.hair_mustache_2_green{background-image:url(spritesmith-main-0.png);background-position:-753px -1233px;width:60px;height:60px}.hair_mustache_2_halloween{background-image:url(spritesmith-main-0.png);background-position:-637px -1218px;width:90px;height:90px}.customize-option.hair_mustache_2_halloween{background-image:url(spritesmith-main-0.png);background-position:-662px -1233px;width:60px;height:60px}.hair_mustache_2_holly{background-image:url(spritesmith-main-0.png);background-position:-546px -1218px;width:90px;height:90px}.customize-option.hair_mustache_2_holly{background-image:url(spritesmith-main-0.png);background-position:-571px -1233px;width:60px;height:60px}.hair_mustache_2_hollygreen{background-image:url(spritesmith-main-0.png);background-position:-455px -1218px;width:90px;height:90px}.customize-option.hair_mustache_2_hollygreen{background-image:url(spritesmith-main-0.png);background-position:-480px -1233px;width:60px;height:60px}.hair_mustache_2_midnight{background-image:url(spritesmith-main-0.png);background-position:-364px -1218px;width:90px;height:90px}.customize-option.hair_mustache_2_midnight{background-image:url(spritesmith-main-0.png);background-position:-389px -1233px;width:60px;height:60px}.hair_mustache_2_pblue{background-image:url(spritesmith-main-0.png);background-position:-273px -1218px;width:90px;height:90px}.customize-option.hair_mustache_2_pblue{background-image:url(spritesmith-main-0.png);background-position:-298px -1233px;width:60px;height:60px}.hair_mustache_2_peppermint{background-image:url(spritesmith-main-0.png);background-position:-182px -1218px;width:90px;height:90px}.customize-option.hair_mustache_2_peppermint{background-image:url(spritesmith-main-0.png);background-position:-207px -1233px;width:60px;height:60px}.hair_mustache_2_pgreen{background-image:url(spritesmith-main-0.png);background-position:-91px -1218px;width:90px;height:90px}.customize-option.hair_mustache_2_pgreen{background-image:url(spritesmith-main-0.png);background-position:-116px -1233px;width:60px;height:60px}.hair_mustache_2_porange{background-image:url(spritesmith-main-0.png);background-position:0 -1218px;width:90px;height:90px}.customize-option.hair_mustache_2_porange{background-image:url(spritesmith-main-0.png);background-position:-25px -1233px;width:60px;height:60px}.hair_mustache_2_ppink{background-image:url(spritesmith-main-0.png);background-position:-1223px -1092px;width:90px;height:90px}.customize-option.hair_mustache_2_ppink{background-image:url(spritesmith-main-0.png);background-position:-1248px -1107px;width:60px;height:60px}.hair_mustache_2_ppurple{background-image:url(spritesmith-main-0.png);background-position:-1223px -1001px;width:90px;height:90px}.customize-option.hair_mustache_2_ppurple{background-image:url(spritesmith-main-0.png);background-position:-1248px -1016px;width:60px;height:60px}.hair_mustache_2_pumpkin{background-image:url(spritesmith-main-0.png);background-position:-1223px -910px;width:90px;height:90px}.customize-option.hair_mustache_2_pumpkin{background-image:url(spritesmith-main-0.png);background-position:-1248px -925px;width:60px;height:60px}.hair_mustache_2_purple{background-image:url(spritesmith-main-0.png);background-position:-1223px -819px;width:90px;height:90px}.customize-option.hair_mustache_2_purple{background-image:url(spritesmith-main-0.png);background-position:-1248px -834px;width:60px;height:60px}.hair_mustache_2_pyellow{background-image:url(spritesmith-main-0.png);background-position:-1223px -728px;width:90px;height:90px}.customize-option.hair_mustache_2_pyellow{background-image:url(spritesmith-main-0.png);background-position:-1248px -743px;width:60px;height:60px}.hair_mustache_2_rainbow{background-image:url(spritesmith-main-0.png);background-position:-1223px -637px;width:90px;height:90px}.customize-option.hair_mustache_2_rainbow{background-image:url(spritesmith-main-0.png);background-position:-1248px -652px;width:60px;height:60px}.hair_mustache_2_red{background-image:url(spritesmith-main-0.png);background-position:-1223px -546px;width:90px;height:90px}.customize-option.hair_mustache_2_red{background-image:url(spritesmith-main-0.png);background-position:-1248px -561px;width:60px;height:60px}.hair_mustache_2_snowy{background-image:url(spritesmith-main-0.png);background-position:-1223px -455px;width:90px;height:90px}.customize-option.hair_mustache_2_snowy{background-image:url(spritesmith-main-0.png);background-position:-1248px -470px;width:60px;height:60px}.hair_mustache_2_white{background-image:url(spritesmith-main-0.png);background-position:-1223px -364px;width:90px;height:90px}.customize-option.hair_mustache_2_white{background-image:url(spritesmith-main-0.png);background-position:-1248px -379px;width:60px;height:60px}.hair_mustache_2_winternight{background-image:url(spritesmith-main-0.png);background-position:-1223px -273px;width:90px;height:90px}.customize-option.hair_mustache_2_winternight{background-image:url(spritesmith-main-0.png);background-position:-1248px -288px;width:60px;height:60px}.hair_mustache_2_winterstar{background-image:url(spritesmith-main-0.png);background-position:-1223px -182px;width:90px;height:90px}.customize-option.hair_mustache_2_winterstar{background-image:url(spritesmith-main-0.png);background-position:-1248px -197px;width:60px;height:60px}.hair_mustache_2_yellow{background-image:url(spritesmith-main-0.png);background-position:-1223px -91px;width:90px;height:90px}.customize-option.hair_mustache_2_yellow{background-image:url(spritesmith-main-0.png);background-position:-1248px -106px;width:60px;height:60px}.hair_mustache_2_zombie{background-image:url(spritesmith-main-0.png);background-position:-1223px 0;width:90px;height:90px}.customize-option.hair_mustache_2_zombie{background-image:url(spritesmith-main-0.png);background-position:-1248px -15px;width:60px;height:60px}.hair_flower_1{background-image:url(spritesmith-main-0.png);background-position:-1092px -1127px;width:90px;height:90px}.customize-option.hair_flower_1{background-image:url(spritesmith-main-0.png);background-position:-1117px -1142px;width:60px;height:60px}.hair_flower_2{background-image:url(spritesmith-main-0.png);background-position:-1001px -1127px;width:90px;height:90px}.customize-option.hair_flower_2{background-image:url(spritesmith-main-0.png);background-position:-1026px -1142px;width:60px;height:60px}.hair_flower_3{background-image:url(spritesmith-main-0.png);background-position:-910px -1127px;width:90px;height:90px}.customize-option.hair_flower_3{background-image:url(spritesmith-main-0.png);background-position:-935px -1142px;width:60px;height:60px}.hair_flower_4{background-image:url(spritesmith-main-0.png);background-position:-819px -1127px;width:90px;height:90px}.customize-option.hair_flower_4{background-image:url(spritesmith-main-0.png);background-position:-844px -1142px;width:60px;height:60px}.hair_flower_5{background-image:url(spritesmith-main-0.png);background-position:-728px -1127px;width:90px;height:90px}.customize-option.hair_flower_5{background-image:url(spritesmith-main-0.png);background-position:-753px -1142px;width:60px;height:60px}.hair_flower_6{background-image:url(spritesmith-main-0.png);background-position:-637px -1127px;width:90px;height:90px}.customize-option.hair_flower_6{background-image:url(spritesmith-main-0.png);background-position:-662px -1142px;width:60px;height:60px}.hair_bangs_1_TRUred{background-image:url(spritesmith-main-0.png);background-position:-546px -1127px;width:90px;height:90px}.customize-option.hair_bangs_1_TRUred{background-image:url(spritesmith-main-0.png);background-position:-571px -1142px;width:60px;height:60px}.hair_bangs_1_aurora{background-image:url(spritesmith-main-0.png);background-position:-455px -1127px;width:90px;height:90px}.customize-option.hair_bangs_1_aurora{background-image:url(spritesmith-main-0.png);background-position:-480px -1142px;width:60px;height:60px}.hair_bangs_1_black{background-image:url(spritesmith-main-0.png);background-position:-364px -1127px;width:90px;height:90px}.customize-option.hair_bangs_1_black{background-image:url(spritesmith-main-0.png);background-position:-389px -1142px;width:60px;height:60px}.hair_bangs_1_blond{background-image:url(spritesmith-main-0.png);background-position:-273px -1127px;width:90px;height:90px}.customize-option.hair_bangs_1_blond{background-image:url(spritesmith-main-0.png);background-position:-298px -1142px;width:60px;height:60px}.hair_bangs_1_blue{background-image:url(spritesmith-main-0.png);background-position:-182px -1127px;width:90px;height:90px}.customize-option.hair_bangs_1_blue{background-image:url(spritesmith-main-0.png);background-position:-207px -1142px;width:60px;height:60px}.hair_bangs_1_brown{background-image:url(spritesmith-main-0.png);background-position:-91px -1127px;width:90px;height:90px}.customize-option.hair_bangs_1_brown{background-image:url(spritesmith-main-0.png);background-position:-116px -1142px;width:60px;height:60px}.hair_bangs_1_candycane{background-image:url(spritesmith-main-0.png);background-position:0 -1127px;width:90px;height:90px}.customize-option.hair_bangs_1_candycane{background-image:url(spritesmith-main-0.png);background-position:-25px -1142px;width:60px;height:60px}.hair_bangs_1_candycorn{background-image:url(spritesmith-main-0.png);background-position:-1132px -1001px;width:90px;height:90px}.customize-option.hair_bangs_1_candycorn{background-image:url(spritesmith-main-0.png);background-position:-1157px -1016px;width:60px;height:60px}.hair_bangs_1_festive{background-image:url(spritesmith-main-0.png);background-position:-1132px -910px;width:90px;height:90px}.customize-option.hair_bangs_1_festive{background-image:url(spritesmith-main-0.png);background-position:-1157px -925px;width:60px;height:60px}.hair_bangs_1_frost{background-image:url(spritesmith-main-0.png);background-position:-1132px -819px;width:90px;height:90px}.customize-option.hair_bangs_1_frost{background-image:url(spritesmith-main-0.png);background-position:-1157px -834px;width:60px;height:60px}.hair_bangs_1_ghostwhite{background-image:url(spritesmith-main-0.png);background-position:-1132px -728px;width:90px;height:90px}.customize-option.hair_bangs_1_ghostwhite{background-image:url(spritesmith-main-0.png);background-position:-1157px -743px;width:60px;height:60px}.hair_bangs_1_green{background-image:url(spritesmith-main-1.png);background-position:-91px 0;width:90px;height:90px}.customize-option.hair_bangs_1_green{background-image:url(spritesmith-main-1.png);background-position:-116px -15px;width:60px;height:60px}.hair_bangs_1_halloween{background-image:url(spritesmith-main-1.png);background-position:-728px -1092px;width:90px;height:90px}.customize-option.hair_bangs_1_halloween{background-image:url(spritesmith-main-1.png);background-position:-753px -1107px;width:60px;height:60px}.hair_bangs_1_holly{background-image:url(spritesmith-main-1.png);background-position:0 -91px;width:90px;height:90px}.customize-option.hair_bangs_1_holly{background-image:url(spritesmith-main-1.png);background-position:-25px -106px;width:60px;height:60px}.hair_bangs_1_hollygreen{background-image:url(spritesmith-main-1.png);background-position:-91px -91px;width:90px;height:90px}.customize-option.hair_bangs_1_hollygreen{background-image:url(spritesmith-main-1.png);background-position:-116px -106px;width:60px;height:60px}.hair_bangs_1_midnight{background-image:url(spritesmith-main-1.png);background-position:-182px 0;width:90px;height:90px}.customize-option.hair_bangs_1_midnight{background-image:url(spritesmith-main-1.png);background-position:-207px -15px;width:60px;height:60px}.hair_bangs_1_pblue{background-image:url(spritesmith-main-1.png);background-position:-182px -91px;width:90px;height:90px}.customize-option.hair_bangs_1_pblue{background-image:url(spritesmith-main-1.png);background-position:-207px -106px;width:60px;height:60px}.hair_bangs_1_pblue2{background-image:url(spritesmith-main-1.png);background-position:0 -182px;width:90px;height:90px}.customize-option.hair_bangs_1_pblue2{background-image:url(spritesmith-main-1.png);background-position:-25px -197px;width:60px;height:60px}.hair_bangs_1_peppermint{background-image:url(spritesmith-main-1.png);background-position:-91px -182px;width:90px;height:90px}.customize-option.hair_bangs_1_peppermint{background-image:url(spritesmith-main-1.png);background-position:-116px -197px;width:60px;height:60px}.hair_bangs_1_pgreen{background-image:url(spritesmith-main-1.png);background-position:-182px -182px;width:90px;height:90px}.customize-option.hair_bangs_1_pgreen{background-image:url(spritesmith-main-1.png);background-position:-207px -197px;width:60px;height:60px}.hair_bangs_1_pgreen2{background-image:url(spritesmith-main-1.png);background-position:-273px 0;width:90px;height:90px}.customize-option.hair_bangs_1_pgreen2{background-image:url(spritesmith-main-1.png);background-position:-298px -15px;width:60px;height:60px}.hair_bangs_1_porange{background-image:url(spritesmith-main-1.png);background-position:-273px -91px;width:90px;height:90px}.customize-option.hair_bangs_1_porange{background-image:url(spritesmith-main-1.png);background-position:-298px -106px;width:60px;height:60px}.hair_bangs_1_porange2{background-image:url(spritesmith-main-1.png);background-position:-273px -182px;width:90px;height:90px}.customize-option.hair_bangs_1_porange2{background-image:url(spritesmith-main-1.png);background-position:-298px -197px;width:60px;height:60px}.hair_bangs_1_ppink{background-image:url(spritesmith-main-1.png);background-position:0 -273px;width:90px;height:90px}.customize-option.hair_bangs_1_ppink{background-image:url(spritesmith-main-1.png);background-position:-25px -288px;width:60px;height:60px}.hair_bangs_1_ppink2{background-image:url(spritesmith-main-1.png);background-position:-91px -273px;width:90px;height:90px}.customize-option.hair_bangs_1_ppink2{background-image:url(spritesmith-main-1.png);background-position:-116px -288px;width:60px;height:60px}.hair_bangs_1_ppurple{background-image:url(spritesmith-main-1.png);background-position:-182px -273px;width:90px;height:90px}.customize-option.hair_bangs_1_ppurple{background-image:url(spritesmith-main-1.png);background-position:-207px -288px;width:60px;height:60px}.hair_bangs_1_ppurple2{background-image:url(spritesmith-main-1.png);background-position:-273px -273px;width:90px;height:90px}.customize-option.hair_bangs_1_ppurple2{background-image:url(spritesmith-main-1.png);background-position:-298px -288px;width:60px;height:60px}.hair_bangs_1_pumpkin{background-image:url(spritesmith-main-1.png);background-position:-364px 0;width:90px;height:90px}.customize-option.hair_bangs_1_pumpkin{background-image:url(spritesmith-main-1.png);background-position:-389px -15px;width:60px;height:60px}.hair_bangs_1_purple{background-image:url(spritesmith-main-1.png);background-position:-364px -91px;width:90px;height:90px}.customize-option.hair_bangs_1_purple{background-image:url(spritesmith-main-1.png);background-position:-389px -106px;width:60px;height:60px}.hair_bangs_1_pyellow{background-image:url(spritesmith-main-1.png);background-position:-364px -182px;width:90px;height:90px}.customize-option.hair_bangs_1_pyellow{background-image:url(spritesmith-main-1.png);background-position:-389px -197px;width:60px;height:60px}.hair_bangs_1_pyellow2{background-image:url(spritesmith-main-1.png);background-position:-364px -273px;width:90px;height:90px}.customize-option.hair_bangs_1_pyellow2{background-image:url(spritesmith-main-1.png);background-position:-389px -288px;width:60px;height:60px}.hair_bangs_1_rainbow{background-image:url(spritesmith-main-1.png);background-position:0 -364px;width:90px;height:90px}.customize-option.hair_bangs_1_rainbow{background-image:url(spritesmith-main-1.png);background-position:-25px -379px;width:60px;height:60px}.hair_bangs_1_red{background-image:url(spritesmith-main-1.png);background-position:-91px -364px;width:90px;height:90px}.customize-option.hair_bangs_1_red{background-image:url(spritesmith-main-1.png);background-position:-116px -379px;width:60px;height:60px}.hair_bangs_1_snowy{background-image:url(spritesmith-main-1.png);background-position:-182px -364px;width:90px;height:90px}.customize-option.hair_bangs_1_snowy{background-image:url(spritesmith-main-1.png);background-position:-207px -379px;width:60px;height:60px}.hair_bangs_1_white{background-image:url(spritesmith-main-1.png);background-position:-273px -364px;width:90px;height:90px}.customize-option.hair_bangs_1_white{background-image:url(spritesmith-main-1.png);background-position:-298px -379px;width:60px;height:60px}.hair_bangs_1_winternight{background-image:url(spritesmith-main-1.png);background-position:-364px -364px;width:90px;height:90px}.customize-option.hair_bangs_1_winternight{background-image:url(spritesmith-main-1.png);background-position:-389px -379px;width:60px;height:60px}.hair_bangs_1_winterstar{background-image:url(spritesmith-main-1.png);background-position:-455px 0;width:90px;height:90px}.customize-option.hair_bangs_1_winterstar{background-image:url(spritesmith-main-1.png);background-position:-480px -15px;width:60px;height:60px}.hair_bangs_1_yellow{background-image:url(spritesmith-main-1.png);background-position:-455px -91px;width:90px;height:90px}.customize-option.hair_bangs_1_yellow{background-image:url(spritesmith-main-1.png);background-position:-480px -106px;width:60px;height:60px}.hair_bangs_1_zombie{background-image:url(spritesmith-main-1.png);background-position:-455px -182px;width:90px;height:90px}.customize-option.hair_bangs_1_zombie{background-image:url(spritesmith-main-1.png);background-position:-480px -197px;width:60px;height:60px}.hair_bangs_2_TRUred{background-image:url(spritesmith-main-1.png);background-position:-455px -273px;width:90px;height:90px}.customize-option.hair_bangs_2_TRUred{background-image:url(spritesmith-main-1.png);background-position:-480px -288px;width:60px;height:60px}.hair_bangs_2_aurora{background-image:url(spritesmith-main-1.png);background-position:-455px -364px;width:90px;height:90px}.customize-option.hair_bangs_2_aurora{background-image:url(spritesmith-main-1.png);background-position:-480px -379px;width:60px;height:60px}.hair_bangs_2_black{background-image:url(spritesmith-main-1.png);background-position:0 -455px;width:90px;height:90px}.customize-option.hair_bangs_2_black{background-image:url(spritesmith-main-1.png);background-position:-25px -470px;width:60px;height:60px}.hair_bangs_2_blond{background-image:url(spritesmith-main-1.png);background-position:-91px -455px;width:90px;height:90px}.customize-option.hair_bangs_2_blond{background-image:url(spritesmith-main-1.png);background-position:-116px -470px;width:60px;height:60px}.hair_bangs_2_blue{background-image:url(spritesmith-main-1.png);background-position:-182px -455px;width:90px;height:90px}.customize-option.hair_bangs_2_blue{background-image:url(spritesmith-main-1.png);background-position:-207px -470px;width:60px;height:60px}.hair_bangs_2_brown{background-image:url(spritesmith-main-1.png);background-position:-273px -455px;width:90px;height:90px}.customize-option.hair_bangs_2_brown{background-image:url(spritesmith-main-1.png);background-position:-298px -470px;width:60px;height:60px}.hair_bangs_2_candycane{background-image:url(spritesmith-main-1.png);background-position:-364px -455px;width:90px;height:90px}.customize-option.hair_bangs_2_candycane{background-image:url(spritesmith-main-1.png);background-position:-389px -470px;width:60px;height:60px}.hair_bangs_2_candycorn{background-image:url(spritesmith-main-1.png);background-position:-455px -455px;width:90px;height:90px}.customize-option.hair_bangs_2_candycorn{background-image:url(spritesmith-main-1.png);background-position:-480px -470px;width:60px;height:60px}.hair_bangs_2_festive{background-image:url(spritesmith-main-1.png);background-position:-546px 0;width:90px;height:90px}.customize-option.hair_bangs_2_festive{background-image:url(spritesmith-main-1.png);background-position:-571px -15px;width:60px;height:60px}.hair_bangs_2_frost{background-image:url(spritesmith-main-1.png);background-position:-546px -91px;width:90px;height:90px}.customize-option.hair_bangs_2_frost{background-image:url(spritesmith-main-1.png);background-position:-571px -106px;width:60px;height:60px}.hair_bangs_2_ghostwhite{background-image:url(spritesmith-main-1.png);background-position:-546px -182px;width:90px;height:90px}.customize-option.hair_bangs_2_ghostwhite{background-image:url(spritesmith-main-1.png);background-position:-571px -197px;width:60px;height:60px}.hair_bangs_2_green{background-image:url(spritesmith-main-1.png);background-position:-546px -273px;width:90px;height:90px}.customize-option.hair_bangs_2_green{background-image:url(spritesmith-main-1.png);background-position:-571px -288px;width:60px;height:60px}.hair_bangs_2_halloween{background-image:url(spritesmith-main-1.png);background-position:-546px -364px;width:90px;height:90px}.customize-option.hair_bangs_2_halloween{background-image:url(spritesmith-main-1.png);background-position:-571px -379px;width:60px;height:60px}.hair_bangs_2_holly{background-image:url(spritesmith-main-1.png);background-position:-546px -455px;width:90px;height:90px}.customize-option.hair_bangs_2_holly{background-image:url(spritesmith-main-1.png);background-position:-571px -470px;width:60px;height:60px}.hair_bangs_2_hollygreen{background-image:url(spritesmith-main-1.png);background-position:0 -546px;width:90px;height:90px}.customize-option.hair_bangs_2_hollygreen{background-image:url(spritesmith-main-1.png);background-position:-25px -561px;width:60px;height:60px}.hair_bangs_2_midnight{background-image:url(spritesmith-main-1.png);background-position:-91px -546px;width:90px;height:90px}.customize-option.hair_bangs_2_midnight{background-image:url(spritesmith-main-1.png);background-position:-116px -561px;width:60px;height:60px}.hair_bangs_2_pblue{background-image:url(spritesmith-main-1.png);background-position:-182px -546px;width:90px;height:90px}.customize-option.hair_bangs_2_pblue{background-image:url(spritesmith-main-1.png);background-position:-207px -561px;width:60px;height:60px}.hair_bangs_2_pblue2{background-image:url(spritesmith-main-1.png);background-position:-273px -546px;width:90px;height:90px}.customize-option.hair_bangs_2_pblue2{background-image:url(spritesmith-main-1.png);background-position:-298px -561px;width:60px;height:60px}.hair_bangs_2_peppermint{background-image:url(spritesmith-main-1.png);background-position:-364px -546px;width:90px;height:90px}.customize-option.hair_bangs_2_peppermint{background-image:url(spritesmith-main-1.png);background-position:-389px -561px;width:60px;height:60px}.hair_bangs_2_pgreen{background-image:url(spritesmith-main-1.png);background-position:-455px -546px;width:90px;height:90px}.customize-option.hair_bangs_2_pgreen{background-image:url(spritesmith-main-1.png);background-position:-480px -561px;width:60px;height:60px}.hair_bangs_2_pgreen2{background-image:url(spritesmith-main-1.png);background-position:-546px -546px;width:90px;height:90px}.customize-option.hair_bangs_2_pgreen2{background-image:url(spritesmith-main-1.png);background-position:-571px -561px;width:60px;height:60px}.hair_bangs_2_porange{background-image:url(spritesmith-main-1.png);background-position:-637px 0;width:90px;height:90px}.customize-option.hair_bangs_2_porange{background-image:url(spritesmith-main-1.png);background-position:-662px -15px;width:60px;height:60px}.hair_bangs_2_porange2{background-image:url(spritesmith-main-1.png);background-position:-637px -91px;width:90px;height:90px}.customize-option.hair_bangs_2_porange2{background-image:url(spritesmith-main-1.png);background-position:-662px -106px;width:60px;height:60px}.hair_bangs_2_ppink{background-image:url(spritesmith-main-1.png);background-position:-637px -182px;width:90px;height:90px}.customize-option.hair_bangs_2_ppink{background-image:url(spritesmith-main-1.png);background-position:-662px -197px;width:60px;height:60px}.hair_bangs_2_ppink2{background-image:url(spritesmith-main-1.png);background-position:-637px -273px;width:90px;height:90px}.customize-option.hair_bangs_2_ppink2{background-image:url(spritesmith-main-1.png);background-position:-662px -288px;width:60px;height:60px}.hair_bangs_2_ppurple{background-image:url(spritesmith-main-1.png);background-position:-637px -364px;width:90px;height:90px}.customize-option.hair_bangs_2_ppurple{background-image:url(spritesmith-main-1.png);background-position:-662px -379px;width:60px;height:60px}.hair_bangs_2_ppurple2{background-image:url(spritesmith-main-1.png);background-position:-637px -455px;width:90px;height:90px}.customize-option.hair_bangs_2_ppurple2{background-image:url(spritesmith-main-1.png);background-position:-662px -470px;width:60px;height:60px}.hair_bangs_2_pumpkin{background-image:url(spritesmith-main-1.png);background-position:-637px -546px;width:90px;height:90px}.customize-option.hair_bangs_2_pumpkin{background-image:url(spritesmith-main-1.png);background-position:-662px -561px;width:60px;height:60px}.hair_bangs_2_purple{background-image:url(spritesmith-main-1.png);background-position:0 -637px;width:90px;height:90px}.customize-option.hair_bangs_2_purple{background-image:url(spritesmith-main-1.png);background-position:-25px -652px;width:60px;height:60px}.hair_bangs_2_pyellow{background-image:url(spritesmith-main-1.png);background-position:-91px -637px;width:90px;height:90px}.customize-option.hair_bangs_2_pyellow{background-image:url(spritesmith-main-1.png);background-position:-116px -652px;width:60px;height:60px}.hair_bangs_2_pyellow2{background-image:url(spritesmith-main-1.png);background-position:-182px -637px;width:90px;height:90px}.customize-option.hair_bangs_2_pyellow2{background-image:url(spritesmith-main-1.png);background-position:-207px -652px;width:60px;height:60px}.hair_bangs_2_rainbow{background-image:url(spritesmith-main-1.png);background-position:-273px -637px;width:90px;height:90px}.customize-option.hair_bangs_2_rainbow{background-image:url(spritesmith-main-1.png);background-position:-298px -652px;width:60px;height:60px}.hair_bangs_2_red{background-image:url(spritesmith-main-1.png);background-position:-364px -637px;width:90px;height:90px}.customize-option.hair_bangs_2_red{background-image:url(spritesmith-main-1.png);background-position:-389px -652px;width:60px;height:60px}.hair_bangs_2_snowy{background-image:url(spritesmith-main-1.png);background-position:-455px -637px;width:90px;height:90px}.customize-option.hair_bangs_2_snowy{background-image:url(spritesmith-main-1.png);background-position:-480px -652px;width:60px;height:60px}.hair_bangs_2_white{background-image:url(spritesmith-main-1.png);background-position:-546px -637px;width:90px;height:90px}.customize-option.hair_bangs_2_white{background-image:url(spritesmith-main-1.png);background-position:-571px -652px;width:60px;height:60px}.hair_bangs_2_winternight{background-image:url(spritesmith-main-1.png);background-position:-637px -637px;width:90px;height:90px}.customize-option.hair_bangs_2_winternight{background-image:url(spritesmith-main-1.png);background-position:-662px -652px;width:60px;height:60px}.hair_bangs_2_winterstar{background-image:url(spritesmith-main-1.png);background-position:-728px 0;width:90px;height:90px}.customize-option.hair_bangs_2_winterstar{background-image:url(spritesmith-main-1.png);background-position:-753px -15px;width:60px;height:60px}.hair_bangs_2_yellow{background-image:url(spritesmith-main-1.png);background-position:-728px -91px;width:90px;height:90px}.customize-option.hair_bangs_2_yellow{background-image:url(spritesmith-main-1.png);background-position:-753px -106px;width:60px;height:60px}.hair_bangs_2_zombie{background-image:url(spritesmith-main-1.png);background-position:-728px -182px;width:90px;height:90px}.customize-option.hair_bangs_2_zombie{background-image:url(spritesmith-main-1.png);background-position:-753px -197px;width:60px;height:60px}.hair_bangs_3_TRUred{background-image:url(spritesmith-main-1.png);background-position:-728px -273px;width:90px;height:90px}.customize-option.hair_bangs_3_TRUred{background-image:url(spritesmith-main-1.png);background-position:-753px -288px;width:60px;height:60px}.hair_bangs_3_aurora{background-image:url(spritesmith-main-1.png);background-position:-728px -364px;width:90px;height:90px}.customize-option.hair_bangs_3_aurora{background-image:url(spritesmith-main-1.png);background-position:-753px -379px;width:60px;height:60px}.hair_bangs_3_black{background-image:url(spritesmith-main-1.png);background-position:-728px -455px;width:90px;height:90px}.customize-option.hair_bangs_3_black{background-image:url(spritesmith-main-1.png);background-position:-753px -470px;width:60px;height:60px}.hair_bangs_3_blond{background-image:url(spritesmith-main-1.png);background-position:-728px -546px;width:90px;height:90px}.customize-option.hair_bangs_3_blond{background-image:url(spritesmith-main-1.png);background-position:-753px -561px;width:60px;height:60px}.hair_bangs_3_blue{background-image:url(spritesmith-main-1.png);background-position:-728px -637px;width:90px;height:90px}.customize-option.hair_bangs_3_blue{background-image:url(spritesmith-main-1.png);background-position:-753px -652px;width:60px;height:60px}.hair_bangs_3_brown{background-image:url(spritesmith-main-1.png);background-position:0 -728px;width:90px;height:90px}.customize-option.hair_bangs_3_brown{background-image:url(spritesmith-main-1.png);background-position:-25px -743px;width:60px;height:60px}.hair_bangs_3_candycane{background-image:url(spritesmith-main-1.png);background-position:-91px -728px;width:90px;height:90px}.customize-option.hair_bangs_3_candycane{background-image:url(spritesmith-main-1.png);background-position:-116px -743px;width:60px;height:60px}.hair_bangs_3_candycorn{background-image:url(spritesmith-main-1.png);background-position:-182px -728px;width:90px;height:90px}.customize-option.hair_bangs_3_candycorn{background-image:url(spritesmith-main-1.png);background-position:-207px -743px;width:60px;height:60px}.hair_bangs_3_festive{background-image:url(spritesmith-main-1.png);background-position:-273px -728px;width:90px;height:90px}.customize-option.hair_bangs_3_festive{background-image:url(spritesmith-main-1.png);background-position:-298px -743px;width:60px;height:60px}.hair_bangs_3_frost{background-image:url(spritesmith-main-1.png);background-position:-364px -728px;width:90px;height:90px}.customize-option.hair_bangs_3_frost{background-image:url(spritesmith-main-1.png);background-position:-389px -743px;width:60px;height:60px}.hair_bangs_3_ghostwhite{background-image:url(spritesmith-main-1.png);background-position:-455px -728px;width:90px;height:90px}.customize-option.hair_bangs_3_ghostwhite{background-image:url(spritesmith-main-1.png);background-position:-480px -743px;width:60px;height:60px}.hair_bangs_3_green{background-image:url(spritesmith-main-1.png);background-position:-546px -728px;width:90px;height:90px}.customize-option.hair_bangs_3_green{background-image:url(spritesmith-main-1.png);background-position:-571px -743px;width:60px;height:60px}.hair_bangs_3_halloween{background-image:url(spritesmith-main-1.png);background-position:-637px -728px;width:90px;height:90px}.customize-option.hair_bangs_3_halloween{background-image:url(spritesmith-main-1.png);background-position:-662px -743px;width:60px;height:60px}.hair_bangs_3_holly{background-image:url(spritesmith-main-1.png);background-position:-728px -728px;width:90px;height:90px}.customize-option.hair_bangs_3_holly{background-image:url(spritesmith-main-1.png);background-position:-753px -743px;width:60px;height:60px}.hair_bangs_3_hollygreen{background-image:url(spritesmith-main-1.png);background-position:-819px 0;width:90px;height:90px}.customize-option.hair_bangs_3_hollygreen{background-image:url(spritesmith-main-1.png);background-position:-844px -15px;width:60px;height:60px}.hair_bangs_3_midnight{background-image:url(spritesmith-main-1.png);background-position:-819px -91px;width:90px;height:90px}.customize-option.hair_bangs_3_midnight{background-image:url(spritesmith-main-1.png);background-position:-844px -106px;width:60px;height:60px}.hair_bangs_3_pblue{background-image:url(spritesmith-main-1.png);background-position:-819px -182px;width:90px;height:90px}.customize-option.hair_bangs_3_pblue{background-image:url(spritesmith-main-1.png);background-position:-844px -197px;width:60px;height:60px}.hair_bangs_3_pblue2{background-image:url(spritesmith-main-1.png);background-position:-819px -273px;width:90px;height:90px}.customize-option.hair_bangs_3_pblue2{background-image:url(spritesmith-main-1.png);background-position:-844px -288px;width:60px;height:60px}.hair_bangs_3_peppermint{background-image:url(spritesmith-main-1.png);background-position:-819px -364px;width:90px;height:90px}.customize-option.hair_bangs_3_peppermint{background-image:url(spritesmith-main-1.png);background-position:-844px -379px;width:60px;height:60px}.hair_bangs_3_pgreen{background-image:url(spritesmith-main-1.png);background-position:-819px -455px;width:90px;height:90px}.customize-option.hair_bangs_3_pgreen{background-image:url(spritesmith-main-1.png);background-position:-844px -470px;width:60px;height:60px}.hair_bangs_3_pgreen2{background-image:url(spritesmith-main-1.png);background-position:-819px -546px;width:90px;height:90px}.customize-option.hair_bangs_3_pgreen2{background-image:url(spritesmith-main-1.png);background-position:-844px -561px;width:60px;height:60px}.hair_bangs_3_porange{background-image:url(spritesmith-main-1.png);background-position:-819px -637px;width:90px;height:90px}.customize-option.hair_bangs_3_porange{background-image:url(spritesmith-main-1.png);background-position:-844px -652px;width:60px;height:60px}.hair_bangs_3_porange2{background-image:url(spritesmith-main-1.png);background-position:-819px -728px;width:90px;height:90px}.customize-option.hair_bangs_3_porange2{background-image:url(spritesmith-main-1.png);background-position:-844px -743px;width:60px;height:60px}.hair_bangs_3_ppink{background-image:url(spritesmith-main-1.png);background-position:0 -819px;width:90px;height:90px}.customize-option.hair_bangs_3_ppink{background-image:url(spritesmith-main-1.png);background-position:-25px -834px;width:60px;height:60px}.hair_bangs_3_ppink2{background-image:url(spritesmith-main-1.png);background-position:-91px -819px;width:90px;height:90px}.customize-option.hair_bangs_3_ppink2{background-image:url(spritesmith-main-1.png);background-position:-116px -834px;width:60px;height:60px}.hair_bangs_3_ppurple{background-image:url(spritesmith-main-1.png);background-position:-182px -819px;width:90px;height:90px}.customize-option.hair_bangs_3_ppurple{background-image:url(spritesmith-main-1.png);background-position:-207px -834px;width:60px;height:60px}.hair_bangs_3_ppurple2{background-image:url(spritesmith-main-1.png);background-position:-273px -819px;width:90px;height:90px}.customize-option.hair_bangs_3_ppurple2{background-image:url(spritesmith-main-1.png);background-position:-298px -834px;width:60px;height:60px}.hair_bangs_3_pumpkin{background-image:url(spritesmith-main-1.png);background-position:-364px -819px;width:90px;height:90px}.customize-option.hair_bangs_3_pumpkin{background-image:url(spritesmith-main-1.png);background-position:-389px -834px;width:60px;height:60px}.hair_bangs_3_purple{background-image:url(spritesmith-main-1.png);background-position:-455px -819px;width:90px;height:90px}.customize-option.hair_bangs_3_purple{background-image:url(spritesmith-main-1.png);background-position:-480px -834px;width:60px;height:60px}.hair_bangs_3_pyellow{background-image:url(spritesmith-main-1.png);background-position:-546px -819px;width:90px;height:90px}.customize-option.hair_bangs_3_pyellow{background-image:url(spritesmith-main-1.png);background-position:-571px -834px;width:60px;height:60px}.hair_bangs_3_pyellow2{background-image:url(spritesmith-main-1.png);background-position:-637px -819px;width:90px;height:90px}.customize-option.hair_bangs_3_pyellow2{background-image:url(spritesmith-main-1.png);background-position:-662px -834px;width:60px;height:60px}.hair_bangs_3_rainbow{background-image:url(spritesmith-main-1.png);background-position:-728px -819px;width:90px;height:90px}.customize-option.hair_bangs_3_rainbow{background-image:url(spritesmith-main-1.png);background-position:-753px -834px;width:60px;height:60px}.hair_bangs_3_red{background-image:url(spritesmith-main-1.png);background-position:-819px -819px;width:90px;height:90px}.customize-option.hair_bangs_3_red{background-image:url(spritesmith-main-1.png);background-position:-844px -834px;width:60px;height:60px}.hair_bangs_3_snowy{background-image:url(spritesmith-main-1.png);background-position:-910px 0;width:90px;height:90px}.customize-option.hair_bangs_3_snowy{background-image:url(spritesmith-main-1.png);background-position:-935px -15px;width:60px;height:60px}.hair_bangs_3_white{background-image:url(spritesmith-main-1.png);background-position:-910px -91px;width:90px;height:90px}.customize-option.hair_bangs_3_white{background-image:url(spritesmith-main-1.png);background-position:-935px -106px;width:60px;height:60px}.hair_bangs_3_winternight{background-image:url(spritesmith-main-1.png);background-position:-910px -182px;width:90px;height:90px}.customize-option.hair_bangs_3_winternight{background-image:url(spritesmith-main-1.png);background-position:-935px -197px;width:60px;height:60px}.hair_bangs_3_winterstar{background-image:url(spritesmith-main-1.png);background-position:-910px -273px;width:90px;height:90px}.customize-option.hair_bangs_3_winterstar{background-image:url(spritesmith-main-1.png);background-position:-935px -288px;width:60px;height:60px}.hair_bangs_3_yellow{background-image:url(spritesmith-main-1.png);background-position:-910px -364px;width:90px;height:90px}.customize-option.hair_bangs_3_yellow{background-image:url(spritesmith-main-1.png);background-position:-935px -379px;width:60px;height:60px}.hair_bangs_3_zombie{background-image:url(spritesmith-main-1.png);background-position:-910px -455px;width:90px;height:90px}.customize-option.hair_bangs_3_zombie{background-image:url(spritesmith-main-1.png);background-position:-935px -470px;width:60px;height:60px}.hair_base_10_TRUred{background-image:url(spritesmith-main-1.png);background-position:-910px -546px;width:90px;height:90px}.customize-option.hair_base_10_TRUred{background-image:url(spritesmith-main-1.png);background-position:-935px -561px;width:60px;height:60px}.hair_base_10_aurora{background-image:url(spritesmith-main-1.png);background-position:-910px -637px;width:90px;height:90px}.customize-option.hair_base_10_aurora{background-image:url(spritesmith-main-1.png);background-position:-935px -652px;width:60px;height:60px}.hair_base_10_black{background-image:url(spritesmith-main-1.png);background-position:-910px -728px;width:90px;height:90px}.customize-option.hair_base_10_black{background-image:url(spritesmith-main-1.png);background-position:-935px -743px;width:60px;height:60px}.hair_base_10_blond{background-image:url(spritesmith-main-1.png);background-position:-910px -819px;width:90px;height:90px}.customize-option.hair_base_10_blond{background-image:url(spritesmith-main-1.png);background-position:-935px -834px;width:60px;height:60px}.hair_base_10_blue{background-image:url(spritesmith-main-1.png);background-position:0 -910px;width:90px;height:90px}.customize-option.hair_base_10_blue{background-image:url(spritesmith-main-1.png);background-position:-25px -925px;width:60px;height:60px}.hair_base_10_brown{background-image:url(spritesmith-main-1.png);background-position:-91px -910px;width:90px;height:90px}.customize-option.hair_base_10_brown{background-image:url(spritesmith-main-1.png);background-position:-116px -925px;width:60px;height:60px}.hair_base_10_candycane{background-image:url(spritesmith-main-1.png);background-position:-182px -910px;width:90px;height:90px}.customize-option.hair_base_10_candycane{background-image:url(spritesmith-main-1.png);background-position:-207px -925px;width:60px;height:60px}.hair_base_10_candycorn{background-image:url(spritesmith-main-1.png);background-position:-273px -910px;width:90px;height:90px}.customize-option.hair_base_10_candycorn{background-image:url(spritesmith-main-1.png);background-position:-298px -925px;width:60px;height:60px}.hair_base_10_festive{background-image:url(spritesmith-main-1.png);background-position:-364px -910px;width:90px;height:90px}.customize-option.hair_base_10_festive{background-image:url(spritesmith-main-1.png);background-position:-389px -925px;width:60px;height:60px}.hair_base_10_frost{background-image:url(spritesmith-main-1.png);background-position:-455px -910px;width:90px;height:90px}.customize-option.hair_base_10_frost{background-image:url(spritesmith-main-1.png);background-position:-480px -925px;width:60px;height:60px}.hair_base_10_ghostwhite{background-image:url(spritesmith-main-1.png);background-position:-546px -910px;width:90px;height:90px}.customize-option.hair_base_10_ghostwhite{background-image:url(spritesmith-main-1.png);background-position:-571px -925px;width:60px;height:60px}.hair_base_10_green{background-image:url(spritesmith-main-1.png);background-position:-637px -910px;width:90px;height:90px}.customize-option.hair_base_10_green{background-image:url(spritesmith-main-1.png);background-position:-662px -925px;width:60px;height:60px}.hair_base_10_halloween{background-image:url(spritesmith-main-1.png);background-position:-728px -910px;width:90px;height:90px}.customize-option.hair_base_10_halloween{background-image:url(spritesmith-main-1.png);background-position:-753px -925px;width:60px;height:60px}.hair_base_10_holly{background-image:url(spritesmith-main-1.png);background-position:-819px -910px;width:90px;height:90px}.customize-option.hair_base_10_holly{background-image:url(spritesmith-main-1.png);background-position:-844px -925px;width:60px;height:60px}.hair_base_10_hollygreen{background-image:url(spritesmith-main-1.png);background-position:-910px -910px;width:90px;height:90px}.customize-option.hair_base_10_hollygreen{background-image:url(spritesmith-main-1.png);background-position:-935px -925px;width:60px;height:60px}.hair_base_10_midnight{background-image:url(spritesmith-main-1.png);background-position:-1001px 0;width:90px;height:90px}.customize-option.hair_base_10_midnight{background-image:url(spritesmith-main-1.png);background-position:-1026px -15px;width:60px;height:60px}.hair_base_10_pblue{background-image:url(spritesmith-main-1.png);background-position:-1001px -91px;width:90px;height:90px}.customize-option.hair_base_10_pblue{background-image:url(spritesmith-main-1.png);background-position:-1026px -106px;width:60px;height:60px}.hair_base_10_pblue2{background-image:url(spritesmith-main-1.png);background-position:-1001px -182px;width:90px;height:90px}.customize-option.hair_base_10_pblue2{background-image:url(spritesmith-main-1.png);background-position:-1026px -197px;width:60px;height:60px}.hair_base_10_peppermint{background-image:url(spritesmith-main-1.png);background-position:-1001px -273px;width:90px;height:90px}.customize-option.hair_base_10_peppermint{background-image:url(spritesmith-main-1.png);background-position:-1026px -288px;width:60px;height:60px}.hair_base_10_pgreen{background-image:url(spritesmith-main-1.png);background-position:-1001px -364px;width:90px;height:90px}.customize-option.hair_base_10_pgreen{background-image:url(spritesmith-main-1.png);background-position:-1026px -379px;width:60px;height:60px}.hair_base_10_pgreen2{background-image:url(spritesmith-main-1.png);background-position:-1001px -455px;width:90px;height:90px}.customize-option.hair_base_10_pgreen2{background-image:url(spritesmith-main-1.png);background-position:-1026px -470px;width:60px;height:60px}.hair_base_10_porange{background-image:url(spritesmith-main-1.png);background-position:-1001px -546px;width:90px;height:90px}.customize-option.hair_base_10_porange{background-image:url(spritesmith-main-1.png);background-position:-1026px -561px;width:60px;height:60px}.hair_base_10_porange2{background-image:url(spritesmith-main-1.png);background-position:-1001px -637px;width:90px;height:90px}.customize-option.hair_base_10_porange2{background-image:url(spritesmith-main-1.png);background-position:-1026px -652px;width:60px;height:60px}.hair_base_10_ppink{background-image:url(spritesmith-main-1.png);background-position:-1001px -728px;width:90px;height:90px}.customize-option.hair_base_10_ppink{background-image:url(spritesmith-main-1.png);background-position:-1026px -743px;width:60px;height:60px}.hair_base_10_ppink2{background-image:url(spritesmith-main-1.png);background-position:-1001px -819px;width:90px;height:90px}.customize-option.hair_base_10_ppink2{background-image:url(spritesmith-main-1.png);background-position:-1026px -834px;width:60px;height:60px}.hair_base_10_ppurple{background-image:url(spritesmith-main-1.png);background-position:-1001px -910px;width:90px;height:90px}.customize-option.hair_base_10_ppurple{background-image:url(spritesmith-main-1.png);background-position:-1026px -925px;width:60px;height:60px}.hair_base_10_ppurple2{background-image:url(spritesmith-main-1.png);background-position:0 -1001px;width:90px;height:90px}.customize-option.hair_base_10_ppurple2{background-image:url(spritesmith-main-1.png);background-position:-25px -1016px;width:60px;height:60px}.hair_base_10_pumpkin{background-image:url(spritesmith-main-1.png);background-position:-91px -1001px;width:90px;height:90px}.customize-option.hair_base_10_pumpkin{background-image:url(spritesmith-main-1.png);background-position:-116px -1016px;width:60px;height:60px}.hair_base_10_purple{background-image:url(spritesmith-main-1.png);background-position:-182px -1001px;width:90px;height:90px}.customize-option.hair_base_10_purple{background-image:url(spritesmith-main-1.png);background-position:-207px -1016px;width:60px;height:60px}.hair_base_10_pyellow{background-image:url(spritesmith-main-1.png);background-position:-273px -1001px;width:90px;height:90px}.customize-option.hair_base_10_pyellow{background-image:url(spritesmith-main-1.png);background-position:-298px -1016px;width:60px;height:60px}.hair_base_10_pyellow2{background-image:url(spritesmith-main-1.png);background-position:-364px -1001px;width:90px;height:90px}.customize-option.hair_base_10_pyellow2{background-image:url(spritesmith-main-1.png);background-position:-389px -1016px;width:60px;height:60px}.hair_base_10_rainbow{background-image:url(spritesmith-main-1.png);background-position:-455px -1001px;width:90px;height:90px}.customize-option.hair_base_10_rainbow{background-image:url(spritesmith-main-1.png);background-position:-480px -1016px;width:60px;height:60px}.hair_base_10_red{background-image:url(spritesmith-main-1.png);background-position:-546px -1001px;width:90px;height:90px}.customize-option.hair_base_10_red{background-image:url(spritesmith-main-1.png);background-position:-571px -1016px;width:60px;height:60px}.hair_base_10_snowy{background-image:url(spritesmith-main-1.png);background-position:-637px -1001px;width:90px;height:90px}.customize-option.hair_base_10_snowy{background-image:url(spritesmith-main-1.png);background-position:-662px -1016px;width:60px;height:60px}.hair_base_10_white{background-image:url(spritesmith-main-1.png);background-position:-728px -1001px;width:90px;height:90px}.customize-option.hair_base_10_white{background-image:url(spritesmith-main-1.png);background-position:-753px -1016px;width:60px;height:60px}.hair_base_10_winternight{background-image:url(spritesmith-main-1.png);background-position:-819px -1001px;width:90px;height:90px}.customize-option.hair_base_10_winternight{background-image:url(spritesmith-main-1.png);background-position:-844px -1016px;width:60px;height:60px}.hair_base_10_winterstar{background-image:url(spritesmith-main-1.png);background-position:-910px -1001px;width:90px;height:90px}.customize-option.hair_base_10_winterstar{background-image:url(spritesmith-main-1.png);background-position:-935px -1016px;width:60px;height:60px}.hair_base_10_yellow{background-image:url(spritesmith-main-1.png);background-position:-1001px -1001px;width:90px;height:90px}.customize-option.hair_base_10_yellow{background-image:url(spritesmith-main-1.png);background-position:-1026px -1016px;width:60px;height:60px}.hair_base_10_zombie{background-image:url(spritesmith-main-1.png);background-position:-1092px 0;width:90px;height:90px}.customize-option.hair_base_10_zombie{background-image:url(spritesmith-main-1.png);background-position:-1117px -15px;width:60px;height:60px}.hair_base_11_TRUred{background-image:url(spritesmith-main-1.png);background-position:-1092px -91px;width:90px;height:90px}.customize-option.hair_base_11_TRUred{background-image:url(spritesmith-main-1.png);background-position:-1117px -106px;width:60px;height:60px}.hair_base_11_aurora{background-image:url(spritesmith-main-1.png);background-position:-1092px -182px;width:90px;height:90px}.customize-option.hair_base_11_aurora{background-image:url(spritesmith-main-1.png);background-position:-1117px -197px;width:60px;height:60px}.hair_base_11_black{background-image:url(spritesmith-main-1.png);background-position:-1092px -273px;width:90px;height:90px}.customize-option.hair_base_11_black{background-image:url(spritesmith-main-1.png);background-position:-1117px -288px;width:60px;height:60px}.hair_base_11_blond{background-image:url(spritesmith-main-1.png);background-position:-1092px -364px;width:90px;height:90px}.customize-option.hair_base_11_blond{background-image:url(spritesmith-main-1.png);background-position:-1117px -379px;width:60px;height:60px}.hair_base_11_blue{background-image:url(spritesmith-main-1.png);background-position:-1092px -455px;width:90px;height:90px}.customize-option.hair_base_11_blue{background-image:url(spritesmith-main-1.png);background-position:-1117px -470px;width:60px;height:60px}.hair_base_11_brown{background-image:url(spritesmith-main-1.png);background-position:-1092px -546px;width:90px;height:90px}.customize-option.hair_base_11_brown{background-image:url(spritesmith-main-1.png);background-position:-1117px -561px;width:60px;height:60px}.hair_base_11_candycane{background-image:url(spritesmith-main-1.png);background-position:-1092px -637px;width:90px;height:90px}.customize-option.hair_base_11_candycane{background-image:url(spritesmith-main-1.png);background-position:-1117px -652px;width:60px;height:60px}.hair_base_11_candycorn{background-image:url(spritesmith-main-1.png);background-position:-1092px -728px;width:90px;height:90px}.customize-option.hair_base_11_candycorn{background-image:url(spritesmith-main-1.png);background-position:-1117px -743px;width:60px;height:60px}.hair_base_11_festive{background-image:url(spritesmith-main-1.png);background-position:-1092px -819px;width:90px;height:90px}.customize-option.hair_base_11_festive{background-image:url(spritesmith-main-1.png);background-position:-1117px -834px;width:60px;height:60px}.hair_base_11_frost{background-image:url(spritesmith-main-1.png);background-position:-1092px -910px;width:90px;height:90px}.customize-option.hair_base_11_frost{background-image:url(spritesmith-main-1.png);background-position:-1117px -925px;width:60px;height:60px}.hair_base_11_ghostwhite{background-image:url(spritesmith-main-1.png);background-position:-1092px -1001px;width:90px;height:90px}.customize-option.hair_base_11_ghostwhite{background-image:url(spritesmith-main-1.png);background-position:-1117px -1016px;width:60px;height:60px}.hair_base_11_green{background-image:url(spritesmith-main-1.png);background-position:0 -1092px;width:90px;height:90px}.customize-option.hair_base_11_green{background-image:url(spritesmith-main-1.png);background-position:-25px -1107px;width:60px;height:60px}.hair_base_11_halloween{background-image:url(spritesmith-main-1.png);background-position:-91px -1092px;width:90px;height:90px}.customize-option.hair_base_11_halloween{background-image:url(spritesmith-main-1.png);background-position:-116px -1107px;width:60px;height:60px}.hair_base_11_holly{background-image:url(spritesmith-main-1.png);background-position:-182px -1092px;width:90px;height:90px}.customize-option.hair_base_11_holly{background-image:url(spritesmith-main-1.png);background-position:-207px -1107px;width:60px;height:60px}.hair_base_11_hollygreen{background-image:url(spritesmith-main-1.png);background-position:-273px -1092px;width:90px;height:90px}.customize-option.hair_base_11_hollygreen{background-image:url(spritesmith-main-1.png);background-position:-298px -1107px;width:60px;height:60px}.hair_base_11_midnight{background-image:url(spritesmith-main-1.png);background-position:-364px -1092px;width:90px;height:90px}.customize-option.hair_base_11_midnight{background-image:url(spritesmith-main-1.png);background-position:-389px -1107px;width:60px;height:60px}.hair_base_11_pblue{background-image:url(spritesmith-main-1.png);background-position:-455px -1092px;width:90px;height:90px}.customize-option.hair_base_11_pblue{background-image:url(spritesmith-main-1.png);background-position:-480px -1107px;width:60px;height:60px}.hair_base_11_pblue2{background-image:url(spritesmith-main-1.png);background-position:-546px -1092px;width:90px;height:90px}.customize-option.hair_base_11_pblue2{background-image:url(spritesmith-main-1.png);background-position:-571px -1107px;width:60px;height:60px}.hair_base_11_peppermint{background-image:url(spritesmith-main-1.png);background-position:-637px -1092px;width:90px;height:90px}.customize-option.hair_base_11_peppermint{background-image:url(spritesmith-main-1.png);background-position:-662px -1107px;width:60px;height:60px}.hair_base_11_pgreen{background-image:url(spritesmith-main-1.png);background-position:0 0;width:90px;height:90px}.customize-option.hair_base_11_pgreen{background-image:url(spritesmith-main-1.png);background-position:-25px -15px;width:60px;height:60px}.hair_base_11_pgreen2{background-image:url(spritesmith-main-1.png);background-position:-819px -1092px;width:90px;height:90px}.customize-option.hair_base_11_pgreen2{background-image:url(spritesmith-main-1.png);background-position:-844px -1107px;width:60px;height:60px}.hair_base_11_porange{background-image:url(spritesmith-main-1.png);background-position:-910px -1092px;width:90px;height:90px}.customize-option.hair_base_11_porange{background-image:url(spritesmith-main-1.png);background-position:-935px -1107px;width:60px;height:60px}.hair_base_11_porange2{background-image:url(spritesmith-main-1.png);background-position:-1001px -1092px;width:90px;height:90px}.customize-option.hair_base_11_porange2{background-image:url(spritesmith-main-1.png);background-position:-1026px -1107px;width:60px;height:60px}.hair_base_11_ppink{background-image:url(spritesmith-main-1.png);background-position:-1092px -1092px;width:90px;height:90px}.customize-option.hair_base_11_ppink{background-image:url(spritesmith-main-1.png);background-position:-1117px -1107px;width:60px;height:60px}.hair_base_11_ppink2{background-image:url(spritesmith-main-1.png);background-position:-1183px 0;width:90px;height:90px}.customize-option.hair_base_11_ppink2{background-image:url(spritesmith-main-1.png);background-position:-1208px -15px;width:60px;height:60px}.hair_base_11_ppurple{background-image:url(spritesmith-main-1.png);background-position:-1183px -91px;width:90px;height:90px}.customize-option.hair_base_11_ppurple{background-image:url(spritesmith-main-1.png);background-position:-1208px -106px;width:60px;height:60px}.hair_base_11_ppurple2{background-image:url(spritesmith-main-1.png);background-position:-1183px -182px;width:90px;height:90px}.customize-option.hair_base_11_ppurple2{background-image:url(spritesmith-main-1.png);background-position:-1208px -197px;width:60px;height:60px}.hair_base_11_pumpkin{background-image:url(spritesmith-main-1.png);background-position:-1183px -273px;width:90px;height:90px}.customize-option.hair_base_11_pumpkin{background-image:url(spritesmith-main-1.png);background-position:-1208px -288px;width:60px;height:60px}.hair_base_11_purple{background-image:url(spritesmith-main-1.png);background-position:-1183px -364px;width:90px;height:90px}.customize-option.hair_base_11_purple{background-image:url(spritesmith-main-1.png);background-position:-1208px -379px;width:60px;height:60px}.hair_base_11_pyellow{background-image:url(spritesmith-main-1.png);background-position:-1183px -455px;width:90px;height:90px}.customize-option.hair_base_11_pyellow{background-image:url(spritesmith-main-1.png);background-position:-1208px -470px;width:60px;height:60px}.hair_base_11_pyellow2{background-image:url(spritesmith-main-1.png);background-position:-1183px -546px;width:90px;height:90px}.customize-option.hair_base_11_pyellow2{background-image:url(spritesmith-main-1.png);background-position:-1208px -561px;width:60px;height:60px}.hair_base_11_rainbow{background-image:url(spritesmith-main-1.png);background-position:-1183px -637px;width:90px;height:90px}.customize-option.hair_base_11_rainbow{background-image:url(spritesmith-main-1.png);background-position:-1208px -652px;width:60px;height:60px}.hair_base_11_red{background-image:url(spritesmith-main-1.png);background-position:-1183px -728px;width:90px;height:90px}.customize-option.hair_base_11_red{background-image:url(spritesmith-main-1.png);background-position:-1208px -743px;width:60px;height:60px}.hair_base_11_snowy{background-image:url(spritesmith-main-1.png);background-position:-1183px -819px;width:90px;height:90px}.customize-option.hair_base_11_snowy{background-image:url(spritesmith-main-1.png);background-position:-1208px -834px;width:60px;height:60px}.hair_base_11_white{background-image:url(spritesmith-main-1.png);background-position:-1183px -910px;width:90px;height:90px}.customize-option.hair_base_11_white{background-image:url(spritesmith-main-1.png);background-position:-1208px -925px;width:60px;height:60px}.hair_base_11_winternight{background-image:url(spritesmith-main-1.png);background-position:-1183px -1001px;width:90px;height:90px}.customize-option.hair_base_11_winternight{background-image:url(spritesmith-main-1.png);background-position:-1208px -1016px;width:60px;height:60px}.hair_base_11_winterstar{background-image:url(spritesmith-main-1.png);background-position:-1183px -1092px;width:90px;height:90px}.customize-option.hair_base_11_winterstar{background-image:url(spritesmith-main-1.png);background-position:-1208px -1107px;width:60px;height:60px}.hair_base_11_yellow{background-image:url(spritesmith-main-1.png);background-position:0 -1183px;width:90px;height:90px}.customize-option.hair_base_11_yellow{background-image:url(spritesmith-main-1.png);background-position:-25px -1198px;width:60px;height:60px}.hair_base_11_zombie{background-image:url(spritesmith-main-1.png);background-position:-91px -1183px;width:90px;height:90px}.customize-option.hair_base_11_zombie{background-image:url(spritesmith-main-1.png);background-position:-116px -1198px;width:60px;height:60px}.hair_base_12_TRUred{background-image:url(spritesmith-main-1.png);background-position:-182px -1183px;width:90px;height:90px}.customize-option.hair_base_12_TRUred{background-image:url(spritesmith-main-1.png);background-position:-207px -1198px;width:60px;height:60px}.hair_base_12_aurora{background-image:url(spritesmith-main-1.png);background-position:-273px -1183px;width:90px;height:90px}.customize-option.hair_base_12_aurora{background-image:url(spritesmith-main-1.png);background-position:-298px -1198px;width:60px;height:60px}.hair_base_12_black{background-image:url(spritesmith-main-1.png);background-position:-364px -1183px;width:90px;height:90px}.customize-option.hair_base_12_black{background-image:url(spritesmith-main-1.png);background-position:-389px -1198px;width:60px;height:60px}.hair_base_12_blond{background-image:url(spritesmith-main-1.png);background-position:-455px -1183px;width:90px;height:90px}.customize-option.hair_base_12_blond{background-image:url(spritesmith-main-1.png);background-position:-480px -1198px;width:60px;height:60px}.hair_base_12_blue{background-image:url(spritesmith-main-1.png);background-position:-546px -1183px;width:90px;height:90px}.customize-option.hair_base_12_blue{background-image:url(spritesmith-main-1.png);background-position:-571px -1198px;width:60px;height:60px}.hair_base_12_brown{background-image:url(spritesmith-main-1.png);background-position:-637px -1183px;width:90px;height:90px}.customize-option.hair_base_12_brown{background-image:url(spritesmith-main-1.png);background-position:-662px -1198px;width:60px;height:60px}.hair_base_12_candycane{background-image:url(spritesmith-main-1.png);background-position:-728px -1183px;width:90px;height:90px}.customize-option.hair_base_12_candycane{background-image:url(spritesmith-main-1.png);background-position:-753px -1198px;width:60px;height:60px}.hair_base_12_candycorn{background-image:url(spritesmith-main-1.png);background-position:-819px -1183px;width:90px;height:90px}.customize-option.hair_base_12_candycorn{background-image:url(spritesmith-main-1.png);background-position:-844px -1198px;width:60px;height:60px}.hair_base_12_festive{background-image:url(spritesmith-main-1.png);background-position:-910px -1183px;width:90px;height:90px}.customize-option.hair_base_12_festive{background-image:url(spritesmith-main-1.png);background-position:-935px -1198px;width:60px;height:60px}.hair_base_12_frost{background-image:url(spritesmith-main-1.png);background-position:-1001px -1183px;width:90px;height:90px}.customize-option.hair_base_12_frost{background-image:url(spritesmith-main-1.png);background-position:-1026px -1198px;width:60px;height:60px}.hair_base_12_ghostwhite{background-image:url(spritesmith-main-1.png);background-position:-1092px -1183px;width:90px;height:90px}.customize-option.hair_base_12_ghostwhite{background-image:url(spritesmith-main-1.png);background-position:-1117px -1198px;width:60px;height:60px}.hair_base_12_green{background-image:url(spritesmith-main-1.png);background-position:-1183px -1183px;width:90px;height:90px}.customize-option.hair_base_12_green{background-image:url(spritesmith-main-1.png);background-position:-1208px -1198px;width:60px;height:60px}.hair_base_12_halloween{background-image:url(spritesmith-main-1.png);background-position:-1274px 0;width:90px;height:90px}.customize-option.hair_base_12_halloween{background-image:url(spritesmith-main-1.png);background-position:-1299px -15px;width:60px;height:60px}.hair_base_12_holly{background-image:url(spritesmith-main-1.png);background-position:-1274px -91px;width:90px;height:90px}.customize-option.hair_base_12_holly{background-image:url(spritesmith-main-1.png);background-position:-1299px -106px;width:60px;height:60px}.hair_base_12_hollygreen{background-image:url(spritesmith-main-1.png);background-position:-1274px -182px;width:90px;height:90px}.customize-option.hair_base_12_hollygreen{background-image:url(spritesmith-main-1.png);background-position:-1299px -197px;width:60px;height:60px}.hair_base_12_midnight{background-image:url(spritesmith-main-1.png);background-position:-1274px -273px;width:90px;height:90px}.customize-option.hair_base_12_midnight{background-image:url(spritesmith-main-1.png);background-position:-1299px -288px;width:60px;height:60px}.hair_base_12_pblue{background-image:url(spritesmith-main-1.png);background-position:-1274px -364px;width:90px;height:90px}.customize-option.hair_base_12_pblue{background-image:url(spritesmith-main-1.png);background-position:-1299px -379px;width:60px;height:60px}.hair_base_12_pblue2{background-image:url(spritesmith-main-1.png);background-position:-1274px -455px;width:90px;height:90px}.customize-option.hair_base_12_pblue2{background-image:url(spritesmith-main-1.png);background-position:-1299px -470px;width:60px;height:60px}.hair_base_12_peppermint{background-image:url(spritesmith-main-1.png);background-position:-1274px -546px;width:90px;height:90px}.customize-option.hair_base_12_peppermint{background-image:url(spritesmith-main-1.png);background-position:-1299px -561px;width:60px;height:60px}.hair_base_12_pgreen{background-image:url(spritesmith-main-1.png);background-position:-1274px -637px;width:90px;height:90px}.customize-option.hair_base_12_pgreen{background-image:url(spritesmith-main-1.png);background-position:-1299px -652px;width:60px;height:60px}.hair_base_12_pgreen2{background-image:url(spritesmith-main-1.png);background-position:-1274px -728px;width:90px;height:90px}.customize-option.hair_base_12_pgreen2{background-image:url(spritesmith-main-1.png);background-position:-1299px -743px;width:60px;height:60px}.hair_base_12_porange{background-image:url(spritesmith-main-1.png);background-position:-1274px -819px;width:90px;height:90px}.customize-option.hair_base_12_porange{background-image:url(spritesmith-main-1.png);background-position:-1299px -834px;width:60px;height:60px}.hair_base_12_porange2{background-image:url(spritesmith-main-1.png);background-position:-1274px -910px;width:90px;height:90px}.customize-option.hair_base_12_porange2{background-image:url(spritesmith-main-1.png);background-position:-1299px -925px;width:60px;height:60px}.hair_base_12_ppink{background-image:url(spritesmith-main-1.png);background-position:-1274px -1001px;width:90px;height:90px}.customize-option.hair_base_12_ppink{background-image:url(spritesmith-main-1.png);background-position:-1299px -1016px;width:60px;height:60px}.hair_base_12_ppink2{background-image:url(spritesmith-main-1.png);background-position:-1274px -1092px;width:90px;height:90px}.customize-option.hair_base_12_ppink2{background-image:url(spritesmith-main-1.png);background-position:-1299px -1107px;width:60px;height:60px}.hair_base_12_ppurple{background-image:url(spritesmith-main-1.png);background-position:-1274px -1183px;width:90px;height:90px}.customize-option.hair_base_12_ppurple{background-image:url(spritesmith-main-1.png);background-position:-1299px -1198px;width:60px;height:60px}.hair_base_12_ppurple2{background-image:url(spritesmith-main-1.png);background-position:0 -1274px;width:90px;height:90px}.customize-option.hair_base_12_ppurple2{background-image:url(spritesmith-main-1.png);background-position:-25px -1289px;width:60px;height:60px}.hair_base_12_pumpkin{background-image:url(spritesmith-main-1.png);background-position:-91px -1274px;width:90px;height:90px}.customize-option.hair_base_12_pumpkin{background-image:url(spritesmith-main-1.png);background-position:-116px -1289px;width:60px;height:60px}.hair_base_12_purple{background-image:url(spritesmith-main-1.png);background-position:-182px -1274px;width:90px;height:90px}.customize-option.hair_base_12_purple{background-image:url(spritesmith-main-1.png);background-position:-207px -1289px;width:60px;height:60px}.hair_base_12_pyellow{background-image:url(spritesmith-main-1.png);background-position:-273px -1274px;width:90px;height:90px}.customize-option.hair_base_12_pyellow{background-image:url(spritesmith-main-1.png);background-position:-298px -1289px;width:60px;height:60px}.hair_base_12_pyellow2{background-image:url(spritesmith-main-1.png);background-position:-364px -1274px;width:90px;height:90px}.customize-option.hair_base_12_pyellow2{background-image:url(spritesmith-main-1.png);background-position:-389px -1289px;width:60px;height:60px}.hair_base_12_rainbow{background-image:url(spritesmith-main-1.png);background-position:-455px -1274px;width:90px;height:90px}.customize-option.hair_base_12_rainbow{background-image:url(spritesmith-main-1.png);background-position:-480px -1289px;width:60px;height:60px}.hair_base_12_red{background-image:url(spritesmith-main-1.png);background-position:-546px -1274px;width:90px;height:90px}.customize-option.hair_base_12_red{background-image:url(spritesmith-main-1.png);background-position:-571px -1289px;width:60px;height:60px}.hair_base_12_snowy{background-image:url(spritesmith-main-1.png);background-position:-637px -1274px;width:90px;height:90px}.customize-option.hair_base_12_snowy{background-image:url(spritesmith-main-1.png);background-position:-662px -1289px;width:60px;height:60px}.hair_base_12_white{background-image:url(spritesmith-main-1.png);background-position:-728px -1274px;width:90px;height:90px}.customize-option.hair_base_12_white{background-image:url(spritesmith-main-1.png);background-position:-753px -1289px;width:60px;height:60px}.hair_base_12_winternight{background-image:url(spritesmith-main-1.png);background-position:-819px -1274px;width:90px;height:90px}.customize-option.hair_base_12_winternight{background-image:url(spritesmith-main-1.png);background-position:-844px -1289px;width:60px;height:60px}.hair_base_12_winterstar{background-image:url(spritesmith-main-1.png);background-position:-910px -1274px;width:90px;height:90px}.customize-option.hair_base_12_winterstar{background-image:url(spritesmith-main-1.png);background-position:-935px -1289px;width:60px;height:60px}.hair_base_12_yellow{background-image:url(spritesmith-main-1.png);background-position:-1001px -1274px;width:90px;height:90px}.customize-option.hair_base_12_yellow{background-image:url(spritesmith-main-1.png);background-position:-1026px -1289px;width:60px;height:60px}.hair_base_12_zombie{background-image:url(spritesmith-main-1.png);background-position:-1092px -1274px;width:90px;height:90px}.customize-option.hair_base_12_zombie{background-image:url(spritesmith-main-1.png);background-position:-1117px -1289px;width:60px;height:60px}.hair_base_13_TRUred{background-image:url(spritesmith-main-1.png);background-position:-1183px -1274px;width:90px;height:90px}.customize-option.hair_base_13_TRUred{background-image:url(spritesmith-main-1.png);background-position:-1208px -1289px;width:60px;height:60px}.hair_base_13_aurora{background-image:url(spritesmith-main-1.png);background-position:-1274px -1274px;width:90px;height:90px}.customize-option.hair_base_13_aurora{background-image:url(spritesmith-main-1.png);background-position:-1299px -1289px;width:60px;height:60px}.hair_base_13_black{background-image:url(spritesmith-main-1.png);background-position:-1365px 0;width:90px;height:90px}.customize-option.hair_base_13_black{background-image:url(spritesmith-main-1.png);background-position:-1390px -15px;width:60px;height:60px}.hair_base_13_blond{background-image:url(spritesmith-main-1.png);background-position:-1365px -91px;width:90px;height:90px}.customize-option.hair_base_13_blond{background-image:url(spritesmith-main-1.png);background-position:-1390px -106px;width:60px;height:60px}.hair_base_13_blue{background-image:url(spritesmith-main-1.png);background-position:-1365px -182px;width:90px;height:90px}.customize-option.hair_base_13_blue{background-image:url(spritesmith-main-1.png);background-position:-1390px -197px;width:60px;height:60px}.hair_base_13_brown{background-image:url(spritesmith-main-1.png);background-position:-1365px -273px;width:90px;height:90px}.customize-option.hair_base_13_brown{background-image:url(spritesmith-main-1.png);background-position:-1390px -288px;width:60px;height:60px}.hair_base_13_candycane{background-image:url(spritesmith-main-1.png);background-position:-1365px -364px;width:90px;height:90px}.customize-option.hair_base_13_candycane{background-image:url(spritesmith-main-1.png);background-position:-1390px -379px;width:60px;height:60px}.hair_base_13_candycorn{background-image:url(spritesmith-main-1.png);background-position:-1365px -455px;width:90px;height:90px}.customize-option.hair_base_13_candycorn{background-image:url(spritesmith-main-1.png);background-position:-1390px -470px;width:60px;height:60px}.hair_base_13_festive{background-image:url(spritesmith-main-1.png);background-position:-1365px -546px;width:90px;height:90px}.customize-option.hair_base_13_festive{background-image:url(spritesmith-main-1.png);background-position:-1390px -561px;width:60px;height:60px}.hair_base_13_frost{background-image:url(spritesmith-main-1.png);background-position:-1365px -637px;width:90px;height:90px}.customize-option.hair_base_13_frost{background-image:url(spritesmith-main-1.png);background-position:-1390px -652px;width:60px;height:60px}.hair_base_13_ghostwhite{background-image:url(spritesmith-main-1.png);background-position:-1365px -728px;width:90px;height:90px}.customize-option.hair_base_13_ghostwhite{background-image:url(spritesmith-main-1.png);background-position:-1390px -743px;width:60px;height:60px}.hair_base_13_green{background-image:url(spritesmith-main-1.png);background-position:-1365px -819px;width:90px;height:90px}.customize-option.hair_base_13_green{background-image:url(spritesmith-main-1.png);background-position:-1390px -834px;width:60px;height:60px}.hair_base_13_halloween{background-image:url(spritesmith-main-1.png);background-position:-1365px -910px;width:90px;height:90px}.customize-option.hair_base_13_halloween{background-image:url(spritesmith-main-1.png);background-position:-1390px -925px;width:60px;height:60px}.hair_base_13_holly{background-image:url(spritesmith-main-1.png);background-position:-1365px -1001px;width:90px;height:90px}.customize-option.hair_base_13_holly{background-image:url(spritesmith-main-1.png);background-position:-1390px -1016px;width:60px;height:60px}.hair_base_13_hollygreen{background-image:url(spritesmith-main-1.png);background-position:-1365px -1092px;width:90px;height:90px}.customize-option.hair_base_13_hollygreen{background-image:url(spritesmith-main-1.png);background-position:-1390px -1107px;width:60px;height:60px}.hair_base_13_midnight{background-image:url(spritesmith-main-1.png);background-position:-1365px -1183px;width:90px;height:90px}.customize-option.hair_base_13_midnight{background-image:url(spritesmith-main-1.png);background-position:-1390px -1198px;width:60px;height:60px}.hair_base_13_pblue{background-image:url(spritesmith-main-1.png);background-position:-1365px -1274px;width:90px;height:90px}.customize-option.hair_base_13_pblue{background-image:url(spritesmith-main-1.png);background-position:-1390px -1289px;width:60px;height:60px}.hair_base_13_pblue2{background-image:url(spritesmith-main-1.png);background-position:0 -1365px;width:90px;height:90px}.customize-option.hair_base_13_pblue2{background-image:url(spritesmith-main-1.png);background-position:-25px -1380px;width:60px;height:60px}.hair_base_13_peppermint{background-image:url(spritesmith-main-1.png);background-position:-91px -1365px;width:90px;height:90px}.customize-option.hair_base_13_peppermint{background-image:url(spritesmith-main-1.png);background-position:-116px -1380px;width:60px;height:60px}.hair_base_13_pgreen{background-image:url(spritesmith-main-1.png);background-position:-182px -1365px;width:90px;height:90px}.customize-option.hair_base_13_pgreen{background-image:url(spritesmith-main-1.png);background-position:-207px -1380px;width:60px;height:60px}.hair_base_13_pgreen2{background-image:url(spritesmith-main-1.png);background-position:-273px -1365px;width:90px;height:90px}.customize-option.hair_base_13_pgreen2{background-image:url(spritesmith-main-1.png);background-position:-298px -1380px;width:60px;height:60px}.hair_base_13_porange{background-image:url(spritesmith-main-1.png);background-position:-364px -1365px;width:90px;height:90px}.customize-option.hair_base_13_porange{background-image:url(spritesmith-main-1.png);background-position:-389px -1380px;width:60px;height:60px}.hair_base_13_porange2{background-image:url(spritesmith-main-1.png);background-position:-455px -1365px;width:90px;height:90px}.customize-option.hair_base_13_porange2{background-image:url(spritesmith-main-1.png);background-position:-480px -1380px;width:60px;height:60px}.hair_base_13_ppink{background-image:url(spritesmith-main-1.png);background-position:-546px -1365px;width:90px;height:90px}.customize-option.hair_base_13_ppink{background-image:url(spritesmith-main-1.png);background-position:-571px -1380px;width:60px;height:60px}.hair_base_13_ppink2{background-image:url(spritesmith-main-1.png);background-position:-637px -1365px;width:90px;height:90px}.customize-option.hair_base_13_ppink2{background-image:url(spritesmith-main-1.png);background-position:-662px -1380px;width:60px;height:60px}.hair_base_13_ppurple{background-image:url(spritesmith-main-1.png);background-position:-728px -1365px;width:90px;height:90px}.customize-option.hair_base_13_ppurple{background-image:url(spritesmith-main-1.png);background-position:-753px -1380px;width:60px;height:60px}.hair_base_13_ppurple2{background-image:url(spritesmith-main-1.png);background-position:-819px -1365px;width:90px;height:90px}.customize-option.hair_base_13_ppurple2{background-image:url(spritesmith-main-1.png);background-position:-844px -1380px;width:60px;height:60px}.hair_base_13_pumpkin{background-image:url(spritesmith-main-1.png);background-position:-910px -1365px;width:90px;height:90px}.customize-option.hair_base_13_pumpkin{background-image:url(spritesmith-main-1.png);background-position:-935px -1380px;width:60px;height:60px}.hair_base_13_purple{background-image:url(spritesmith-main-1.png);background-position:-1001px -1365px;width:90px;height:90px}.customize-option.hair_base_13_purple{background-image:url(spritesmith-main-1.png);background-position:-1026px -1380px;width:60px;height:60px}.hair_base_13_pyellow{background-image:url(spritesmith-main-1.png);background-position:-1092px -1365px;width:90px;height:90px}.customize-option.hair_base_13_pyellow{background-image:url(spritesmith-main-1.png);background-position:-1117px -1380px;width:60px;height:60px}.hair_base_13_pyellow2{background-image:url(spritesmith-main-1.png);background-position:-1183px -1365px;width:90px;height:90px}.customize-option.hair_base_13_pyellow2{background-image:url(spritesmith-main-1.png);background-position:-1208px -1380px;width:60px;height:60px}.hair_base_13_rainbow{background-image:url(spritesmith-main-1.png);background-position:-1274px -1365px;width:90px;height:90px}.customize-option.hair_base_13_rainbow{background-image:url(spritesmith-main-1.png);background-position:-1299px -1380px;width:60px;height:60px}.hair_base_13_red{background-image:url(spritesmith-main-1.png);background-position:-1365px -1365px;width:90px;height:90px}.customize-option.hair_base_13_red{background-image:url(spritesmith-main-1.png);background-position:-1390px -1380px;width:60px;height:60px}.hair_base_13_snowy{background-image:url(spritesmith-main-1.png);background-position:-1456px 0;width:90px;height:90px}.customize-option.hair_base_13_snowy{background-image:url(spritesmith-main-1.png);background-position:-1481px -15px;width:60px;height:60px}.hair_base_13_white{background-image:url(spritesmith-main-1.png);background-position:-1456px -91px;width:90px;height:90px}.customize-option.hair_base_13_white{background-image:url(spritesmith-main-1.png);background-position:-1481px -106px;width:60px;height:60px}.hair_base_13_winternight{background-image:url(spritesmith-main-1.png);background-position:-1456px -182px;width:90px;height:90px}.customize-option.hair_base_13_winternight{background-image:url(spritesmith-main-1.png);background-position:-1481px -197px;width:60px;height:60px}.hair_base_13_winterstar{background-image:url(spritesmith-main-1.png);background-position:-1456px -273px;width:90px;height:90px}.customize-option.hair_base_13_winterstar{background-image:url(spritesmith-main-1.png);background-position:-1481px -288px;width:60px;height:60px}.hair_base_13_yellow{background-image:url(spritesmith-main-1.png);background-position:-1456px -364px;width:90px;height:90px}.customize-option.hair_base_13_yellow{background-image:url(spritesmith-main-1.png);background-position:-1481px -379px;width:60px;height:60px}.hair_base_13_zombie{background-image:url(spritesmith-main-1.png);background-position:-1456px -455px;width:90px;height:90px}.customize-option.hair_base_13_zombie{background-image:url(spritesmith-main-1.png);background-position:-1481px -470px;width:60px;height:60px}.hair_base_14_TRUred{background-image:url(spritesmith-main-1.png);background-position:-1456px -546px;width:90px;height:90px}.customize-option.hair_base_14_TRUred{background-image:url(spritesmith-main-1.png);background-position:-1481px -561px;width:60px;height:60px}.hair_base_14_aurora{background-image:url(spritesmith-main-1.png);background-position:-1456px -637px;width:90px;height:90px}.customize-option.hair_base_14_aurora{background-image:url(spritesmith-main-1.png);background-position:-1481px -652px;width:60px;height:60px}.hair_base_14_black{background-image:url(spritesmith-main-1.png);background-position:-1456px -728px;width:90px;height:90px}.customize-option.hair_base_14_black{background-image:url(spritesmith-main-1.png);background-position:-1481px -743px;width:60px;height:60px}.hair_base_14_blond{background-image:url(spritesmith-main-1.png);background-position:-1456px -819px;width:90px;height:90px}.customize-option.hair_base_14_blond{background-image:url(spritesmith-main-1.png);background-position:-1481px -834px;width:60px;height:60px}.hair_base_14_blue{background-image:url(spritesmith-main-1.png);background-position:-1456px -910px;width:90px;height:90px}.customize-option.hair_base_14_blue{background-image:url(spritesmith-main-1.png);background-position:-1481px -925px;width:60px;height:60px}.hair_base_14_brown{background-image:url(spritesmith-main-1.png);background-position:-1456px -1001px;width:90px;height:90px}.customize-option.hair_base_14_brown{background-image:url(spritesmith-main-1.png);background-position:-1481px -1016px;width:60px;height:60px}.hair_base_14_candycane{background-image:url(spritesmith-main-1.png);background-position:-1456px -1092px;width:90px;height:90px}.customize-option.hair_base_14_candycane{background-image:url(spritesmith-main-1.png);background-position:-1481px -1107px;width:60px;height:60px}.hair_base_14_candycorn{background-image:url(spritesmith-main-1.png);background-position:-1456px -1183px;width:90px;height:90px}.customize-option.hair_base_14_candycorn{background-image:url(spritesmith-main-1.png);background-position:-1481px -1198px;width:60px;height:60px}.hair_base_14_festive{background-image:url(spritesmith-main-1.png);background-position:-1456px -1274px;width:90px;height:90px}.customize-option.hair_base_14_festive{background-image:url(spritesmith-main-1.png);background-position:-1481px -1289px;width:60px;height:60px}.hair_base_14_frost{background-image:url(spritesmith-main-1.png);background-position:-1456px -1365px;width:90px;height:90px}.customize-option.hair_base_14_frost{background-image:url(spritesmith-main-1.png);background-position:-1481px -1380px;width:60px;height:60px}.hair_base_14_ghostwhite{background-image:url(spritesmith-main-1.png);background-position:0 -1456px;width:90px;height:90px}.customize-option.hair_base_14_ghostwhite{background-image:url(spritesmith-main-1.png);background-position:-25px -1471px;width:60px;height:60px}.hair_base_14_green{background-image:url(spritesmith-main-1.png);background-position:-91px -1456px;width:90px;height:90px}.customize-option.hair_base_14_green{background-image:url(spritesmith-main-1.png);background-position:-116px -1471px;width:60px;height:60px}.hair_base_14_halloween{background-image:url(spritesmith-main-1.png);background-position:-182px -1456px;width:90px;height:90px}.customize-option.hair_base_14_halloween{background-image:url(spritesmith-main-1.png);background-position:-207px -1471px;width:60px;height:60px}.hair_base_14_holly{background-image:url(spritesmith-main-1.png);background-position:-273px -1456px;width:90px;height:90px}.customize-option.hair_base_14_holly{background-image:url(spritesmith-main-1.png);background-position:-298px -1471px;width:60px;height:60px}.hair_base_14_hollygreen{background-image:url(spritesmith-main-1.png);background-position:-364px -1456px;width:90px;height:90px}.customize-option.hair_base_14_hollygreen{background-image:url(spritesmith-main-1.png);background-position:-389px -1471px;width:60px;height:60px}.hair_base_14_midnight{background-image:url(spritesmith-main-1.png);background-position:-455px -1456px;width:90px;height:90px}.customize-option.hair_base_14_midnight{background-image:url(spritesmith-main-1.png);background-position:-480px -1471px;width:60px;height:60px}.hair_base_14_pblue{background-image:url(spritesmith-main-1.png);background-position:-546px -1456px;width:90px;height:90px}.customize-option.hair_base_14_pblue{background-image:url(spritesmith-main-1.png);background-position:-571px -1471px;width:60px;height:60px}.hair_base_14_pblue2{background-image:url(spritesmith-main-1.png);background-position:-637px -1456px;width:90px;height:90px}.customize-option.hair_base_14_pblue2{background-image:url(spritesmith-main-1.png);background-position:-662px -1471px;width:60px;height:60px}.hair_base_14_peppermint{background-image:url(spritesmith-main-1.png);background-position:-728px -1456px;width:90px;height:90px}.customize-option.hair_base_14_peppermint{background-image:url(spritesmith-main-1.png);background-position:-753px -1471px;width:60px;height:60px}.hair_base_14_pgreen{background-image:url(spritesmith-main-1.png);background-position:-819px -1456px;width:90px;height:90px}.customize-option.hair_base_14_pgreen{background-image:url(spritesmith-main-1.png);background-position:-844px -1471px;width:60px;height:60px}.hair_base_14_pgreen2{background-image:url(spritesmith-main-1.png);background-position:-910px -1456px;width:90px;height:90px}.customize-option.hair_base_14_pgreen2{background-image:url(spritesmith-main-1.png);background-position:-935px -1471px;width:60px;height:60px}.hair_base_14_porange{background-image:url(spritesmith-main-1.png);background-position:-1001px -1456px;width:90px;height:90px}.customize-option.hair_base_14_porange{background-image:url(spritesmith-main-1.png);background-position:-1026px -1471px;width:60px;height:60px}.hair_base_14_porange2{background-image:url(spritesmith-main-1.png);background-position:-1092px -1456px;width:90px;height:90px}.customize-option.hair_base_14_porange2{background-image:url(spritesmith-main-1.png);background-position:-1117px -1471px;width:60px;height:60px}.hair_base_14_ppink{background-image:url(spritesmith-main-1.png);background-position:-1183px -1456px;width:90px;height:90px}.customize-option.hair_base_14_ppink{background-image:url(spritesmith-main-1.png);background-position:-1208px -1471px;width:60px;height:60px}.hair_base_14_ppink2{background-image:url(spritesmith-main-1.png);background-position:-1274px -1456px;width:90px;height:90px}.customize-option.hair_base_14_ppink2{background-image:url(spritesmith-main-1.png);background-position:-1299px -1471px;width:60px;height:60px}.hair_base_14_ppurple{background-image:url(spritesmith-main-1.png);background-position:-1365px -1456px;width:90px;height:90px}.customize-option.hair_base_14_ppurple{background-image:url(spritesmith-main-1.png);background-position:-1390px -1471px;width:60px;height:60px}.hair_base_14_ppurple2{background-image:url(spritesmith-main-1.png);background-position:-1456px -1456px;width:90px;height:90px}.customize-option.hair_base_14_ppurple2{background-image:url(spritesmith-main-1.png);background-position:-1481px -1471px;width:60px;height:60px}.hair_base_14_pumpkin{background-image:url(spritesmith-main-1.png);background-position:-1547px 0;width:90px;height:90px}.customize-option.hair_base_14_pumpkin{background-image:url(spritesmith-main-1.png);background-position:-1572px -15px;width:60px;height:60px}.hair_base_14_purple{background-image:url(spritesmith-main-1.png);background-position:-1547px -91px;width:90px;height:90px}.customize-option.hair_base_14_purple{background-image:url(spritesmith-main-1.png);background-position:-1572px -106px;width:60px;height:60px}.hair_base_14_pyellow{background-image:url(spritesmith-main-1.png);background-position:-1547px -182px;width:90px;height:90px}.customize-option.hair_base_14_pyellow{background-image:url(spritesmith-main-1.png);background-position:-1572px -197px;width:60px;height:60px}.hair_base_14_pyellow2{background-image:url(spritesmith-main-1.png);background-position:-1547px -273px;width:90px;height:90px}.customize-option.hair_base_14_pyellow2{background-image:url(spritesmith-main-1.png);background-position:-1572px -288px;width:60px;height:60px}.hair_base_14_rainbow{background-image:url(spritesmith-main-1.png);background-position:-1547px -364px;width:90px;height:90px}.customize-option.hair_base_14_rainbow{background-image:url(spritesmith-main-1.png);background-position:-1572px -379px;width:60px;height:60px}.hair_base_14_red{background-image:url(spritesmith-main-1.png);background-position:-1547px -455px;width:90px;height:90px}.customize-option.hair_base_14_red{background-image:url(spritesmith-main-1.png);background-position:-1572px -470px;width:60px;height:60px}.hair_base_14_snowy{background-image:url(spritesmith-main-1.png);background-position:-1547px -546px;width:90px;height:90px}.customize-option.hair_base_14_snowy{background-image:url(spritesmith-main-1.png);background-position:-1572px -561px;width:60px;height:60px}.hair_base_14_white{background-image:url(spritesmith-main-1.png);background-position:-1547px -637px;width:90px;height:90px}.customize-option.hair_base_14_white{background-image:url(spritesmith-main-1.png);background-position:-1572px -652px;width:60px;height:60px}.hair_base_14_winternight{background-image:url(spritesmith-main-1.png);background-position:-1547px -728px;width:90px;height:90px}.customize-option.hair_base_14_winternight{background-image:url(spritesmith-main-1.png);background-position:-1572px -743px;width:60px;height:60px}.hair_base_14_winterstar{background-image:url(spritesmith-main-1.png);background-position:-1547px -819px;width:90px;height:90px}.customize-option.hair_base_14_winterstar{background-image:url(spritesmith-main-1.png);background-position:-1572px -834px;width:60px;height:60px}.hair_base_14_yellow{background-image:url(spritesmith-main-1.png);background-position:-1547px -910px;width:90px;height:90px}.customize-option.hair_base_14_yellow{background-image:url(spritesmith-main-1.png);background-position:-1572px -925px;width:60px;height:60px}.hair_base_14_zombie{background-image:url(spritesmith-main-1.png);background-position:-1547px -1001px;width:90px;height:90px}.customize-option.hair_base_14_zombie{background-image:url(spritesmith-main-1.png);background-position:-1572px -1016px;width:60px;height:60px}.hair_base_1_TRUred{background-image:url(spritesmith-main-1.png);background-position:-1547px -1092px;width:90px;height:90px}.customize-option.hair_base_1_TRUred{background-image:url(spritesmith-main-1.png);background-position:-1572px -1107px;width:60px;height:60px}.hair_base_1_aurora{background-image:url(spritesmith-main-1.png);background-position:-1547px -1183px;width:90px;height:90px}.customize-option.hair_base_1_aurora{background-image:url(spritesmith-main-1.png);background-position:-1572px -1198px;width:60px;height:60px}.hair_base_1_black{background-image:url(spritesmith-main-1.png);background-position:-1547px -1274px;width:90px;height:90px}.customize-option.hair_base_1_black{background-image:url(spritesmith-main-1.png);background-position:-1572px -1289px;width:60px;height:60px}.hair_base_1_blond{background-image:url(spritesmith-main-1.png);background-position:-1547px -1365px;width:90px;height:90px}.customize-option.hair_base_1_blond{background-image:url(spritesmith-main-1.png);background-position:-1572px -1380px;width:60px;height:60px}.hair_base_1_blue{background-image:url(spritesmith-main-1.png);background-position:-1547px -1456px;width:90px;height:90px}.customize-option.hair_base_1_blue{background-image:url(spritesmith-main-1.png);background-position:-1572px -1471px;width:60px;height:60px}.hair_base_1_brown{background-image:url(spritesmith-main-1.png);background-position:0 -1547px;width:90px;height:90px}.customize-option.hair_base_1_brown{background-image:url(spritesmith-main-1.png);background-position:-25px -1562px;width:60px;height:60px}.hair_base_1_candycane{background-image:url(spritesmith-main-1.png);background-position:-91px -1547px;width:90px;height:90px}.customize-option.hair_base_1_candycane{background-image:url(spritesmith-main-1.png);background-position:-116px -1562px;width:60px;height:60px}.hair_base_1_candycorn{background-image:url(spritesmith-main-1.png);background-position:-182px -1547px;width:90px;height:90px}.customize-option.hair_base_1_candycorn{background-image:url(spritesmith-main-1.png);background-position:-207px -1562px;width:60px;height:60px}.hair_base_1_festive{background-image:url(spritesmith-main-1.png);background-position:-273px -1547px;width:90px;height:90px}.customize-option.hair_base_1_festive{background-image:url(spritesmith-main-1.png);background-position:-298px -1562px;width:60px;height:60px}.hair_base_1_frost{background-image:url(spritesmith-main-1.png);background-position:-364px -1547px;width:90px;height:90px}.customize-option.hair_base_1_frost{background-image:url(spritesmith-main-1.png);background-position:-389px -1562px;width:60px;height:60px}.hair_base_1_ghostwhite{background-image:url(spritesmith-main-1.png);background-position:-455px -1547px;width:90px;height:90px}.customize-option.hair_base_1_ghostwhite{background-image:url(spritesmith-main-1.png);background-position:-480px -1562px;width:60px;height:60px}.hair_base_1_green{background-image:url(spritesmith-main-1.png);background-position:-546px -1547px;width:90px;height:90px}.customize-option.hair_base_1_green{background-image:url(spritesmith-main-1.png);background-position:-571px -1562px;width:60px;height:60px}.hair_base_1_halloween{background-image:url(spritesmith-main-1.png);background-position:-637px -1547px;width:90px;height:90px}.customize-option.hair_base_1_halloween{background-image:url(spritesmith-main-1.png);background-position:-662px -1562px;width:60px;height:60px}.hair_base_1_holly{background-image:url(spritesmith-main-1.png);background-position:-728px -1547px;width:90px;height:90px}.customize-option.hair_base_1_holly{background-image:url(spritesmith-main-1.png);background-position:-753px -1562px;width:60px;height:60px}.hair_base_1_hollygreen{background-image:url(spritesmith-main-1.png);background-position:-819px -1547px;width:90px;height:90px}.customize-option.hair_base_1_hollygreen{background-image:url(spritesmith-main-1.png);background-position:-844px -1562px;width:60px;height:60px}.hair_base_1_midnight{background-image:url(spritesmith-main-1.png);background-position:-910px -1547px;width:90px;height:90px}.customize-option.hair_base_1_midnight{background-image:url(spritesmith-main-1.png);background-position:-935px -1562px;width:60px;height:60px}.hair_base_1_pblue{background-image:url(spritesmith-main-1.png);background-position:-1001px -1547px;width:90px;height:90px}.customize-option.hair_base_1_pblue{background-image:url(spritesmith-main-1.png);background-position:-1026px -1562px;width:60px;height:60px}.hair_base_1_pblue2{background-image:url(spritesmith-main-1.png);background-position:-1092px -1547px;width:90px;height:90px}.customize-option.hair_base_1_pblue2{background-image:url(spritesmith-main-1.png);background-position:-1117px -1562px;width:60px;height:60px}.hair_base_1_peppermint{background-image:url(spritesmith-main-1.png);background-position:-1183px -1547px;width:90px;height:90px}.customize-option.hair_base_1_peppermint{background-image:url(spritesmith-main-1.png);background-position:-1208px -1562px;width:60px;height:60px}.hair_base_1_pgreen{background-image:url(spritesmith-main-1.png);background-position:-1274px -1547px;width:90px;height:90px}.customize-option.hair_base_1_pgreen{background-image:url(spritesmith-main-1.png);background-position:-1299px -1562px;width:60px;height:60px}.hair_base_1_pgreen2{background-image:url(spritesmith-main-1.png);background-position:-1365px -1547px;width:90px;height:90px}.customize-option.hair_base_1_pgreen2{background-image:url(spritesmith-main-1.png);background-position:-1390px -1562px;width:60px;height:60px}.hair_base_1_porange{background-image:url(spritesmith-main-1.png);background-position:-1456px -1547px;width:90px;height:90px}.customize-option.hair_base_1_porange{background-image:url(spritesmith-main-1.png);background-position:-1481px -1562px;width:60px;height:60px}.hair_base_1_porange2{background-image:url(spritesmith-main-1.png);background-position:-1547px -1547px;width:90px;height:90px}.customize-option.hair_base_1_porange2{background-image:url(spritesmith-main-1.png);background-position:-1572px -1562px;width:60px;height:60px}.hair_base_1_ppink{background-image:url(spritesmith-main-1.png);background-position:-1638px 0;width:90px;height:90px}.customize-option.hair_base_1_ppink{background-image:url(spritesmith-main-1.png);background-position:-1663px -15px;width:60px;height:60px}.hair_base_1_ppink2{background-image:url(spritesmith-main-1.png);background-position:-1638px -91px;width:90px;height:90px}.customize-option.hair_base_1_ppink2{background-image:url(spritesmith-main-1.png);background-position:-1663px -106px;width:60px;height:60px}.hair_base_1_ppurple{background-image:url(spritesmith-main-1.png);background-position:-1638px -182px;width:90px;height:90px}.customize-option.hair_base_1_ppurple{background-image:url(spritesmith-main-1.png);background-position:-1663px -197px;width:60px;height:60px}.hair_base_1_ppurple2{background-image:url(spritesmith-main-1.png);background-position:-1638px -273px;width:90px;height:90px}.customize-option.hair_base_1_ppurple2{background-image:url(spritesmith-main-1.png);background-position:-1663px -288px;width:60px;height:60px}.hair_base_1_pumpkin{background-image:url(spritesmith-main-1.png);background-position:-1638px -364px;width:90px;height:90px}.customize-option.hair_base_1_pumpkin{background-image:url(spritesmith-main-1.png);background-position:-1663px -379px;width:60px;height:60px}.hair_base_1_purple{background-image:url(spritesmith-main-2.png);background-position:-91px 0;width:90px;height:90px}.customize-option.hair_base_1_purple{background-image:url(spritesmith-main-2.png);background-position:-116px -15px;width:60px;height:60px}.hair_base_1_pyellow{background-image:url(spritesmith-main-2.png);background-position:-728px -1092px;width:90px;height:90px}.customize-option.hair_base_1_pyellow{background-image:url(spritesmith-main-2.png);background-position:-753px -1107px;width:60px;height:60px}.hair_base_1_pyellow2{background-image:url(spritesmith-main-2.png);background-position:0 -91px;width:90px;height:90px}.customize-option.hair_base_1_pyellow2{background-image:url(spritesmith-main-2.png);background-position:-25px -106px;width:60px;height:60px}.hair_base_1_rainbow{background-image:url(spritesmith-main-2.png);background-position:-91px -91px;width:90px;height:90px}.customize-option.hair_base_1_rainbow{background-image:url(spritesmith-main-2.png);background-position:-116px -106px;width:60px;height:60px}.hair_base_1_red{background-image:url(spritesmith-main-2.png);background-position:-182px 0;width:90px;height:90px}.customize-option.hair_base_1_red{background-image:url(spritesmith-main-2.png);background-position:-207px -15px;width:60px;height:60px}.hair_base_1_snowy{background-image:url(spritesmith-main-2.png);background-position:-182px -91px;width:90px;height:90px}.customize-option.hair_base_1_snowy{background-image:url(spritesmith-main-2.png);background-position:-207px -106px;width:60px;height:60px}.hair_base_1_white{background-image:url(spritesmith-main-2.png);background-position:0 -182px;width:90px;height:90px}.customize-option.hair_base_1_white{background-image:url(spritesmith-main-2.png);background-position:-25px -197px;width:60px;height:60px}.hair_base_1_winternight{background-image:url(spritesmith-main-2.png);background-position:-91px -182px;width:90px;height:90px}.customize-option.hair_base_1_winternight{background-image:url(spritesmith-main-2.png);background-position:-116px -197px;width:60px;height:60px}.hair_base_1_winterstar{background-image:url(spritesmith-main-2.png);background-position:-182px -182px;width:90px;height:90px}.customize-option.hair_base_1_winterstar{background-image:url(spritesmith-main-2.png);background-position:-207px -197px;width:60px;height:60px}.hair_base_1_yellow{background-image:url(spritesmith-main-2.png);background-position:-273px 0;width:90px;height:90px}.customize-option.hair_base_1_yellow{background-image:url(spritesmith-main-2.png);background-position:-298px -15px;width:60px;height:60px}.hair_base_1_zombie{background-image:url(spritesmith-main-2.png);background-position:-273px -91px;width:90px;height:90px}.customize-option.hair_base_1_zombie{background-image:url(spritesmith-main-2.png);background-position:-298px -106px;width:60px;height:60px}.hair_base_2_TRUred{background-image:url(spritesmith-main-2.png);background-position:-273px -182px;width:90px;height:90px}.customize-option.hair_base_2_TRUred{background-image:url(spritesmith-main-2.png);background-position:-298px -197px;width:60px;height:60px}.hair_base_2_aurora{background-image:url(spritesmith-main-2.png);background-position:0 -273px;width:90px;height:90px}.customize-option.hair_base_2_aurora{background-image:url(spritesmith-main-2.png);background-position:-25px -288px;width:60px;height:60px}.hair_base_2_black{background-image:url(spritesmith-main-2.png);background-position:-91px -273px;width:90px;height:90px}.customize-option.hair_base_2_black{background-image:url(spritesmith-main-2.png);background-position:-116px -288px;width:60px;height:60px}.hair_base_2_blond{background-image:url(spritesmith-main-2.png);background-position:-182px -273px;width:90px;height:90px}.customize-option.hair_base_2_blond{background-image:url(spritesmith-main-2.png);background-position:-207px -288px;width:60px;height:60px}.hair_base_2_blue{background-image:url(spritesmith-main-2.png);background-position:-273px -273px;width:90px;height:90px}.customize-option.hair_base_2_blue{background-image:url(spritesmith-main-2.png);background-position:-298px -288px;width:60px;height:60px}.hair_base_2_brown{background-image:url(spritesmith-main-2.png);background-position:-364px 0;width:90px;height:90px}.customize-option.hair_base_2_brown{background-image:url(spritesmith-main-2.png);background-position:-389px -15px;width:60px;height:60px}.hair_base_2_candycane{background-image:url(spritesmith-main-2.png);background-position:-364px -91px;width:90px;height:90px}.customize-option.hair_base_2_candycane{background-image:url(spritesmith-main-2.png);background-position:-389px -106px;width:60px;height:60px}.hair_base_2_candycorn{background-image:url(spritesmith-main-2.png);background-position:-364px -182px;width:90px;height:90px}.customize-option.hair_base_2_candycorn{background-image:url(spritesmith-main-2.png);background-position:-389px -197px;width:60px;height:60px}.hair_base_2_festive{background-image:url(spritesmith-main-2.png);background-position:-364px -273px;width:90px;height:90px}.customize-option.hair_base_2_festive{background-image:url(spritesmith-main-2.png);background-position:-389px -288px;width:60px;height:60px}.hair_base_2_frost{background-image:url(spritesmith-main-2.png);background-position:0 -364px;width:90px;height:90px}.customize-option.hair_base_2_frost{background-image:url(spritesmith-main-2.png);background-position:-25px -379px;width:60px;height:60px}.hair_base_2_ghostwhite{background-image:url(spritesmith-main-2.png);background-position:-91px -364px;width:90px;height:90px}.customize-option.hair_base_2_ghostwhite{background-image:url(spritesmith-main-2.png);background-position:-116px -379px;width:60px;height:60px}.hair_base_2_green{background-image:url(spritesmith-main-2.png);background-position:-182px -364px;width:90px;height:90px}.customize-option.hair_base_2_green{background-image:url(spritesmith-main-2.png);background-position:-207px -379px;width:60px;height:60px}.hair_base_2_halloween{background-image:url(spritesmith-main-2.png);background-position:-273px -364px;width:90px;height:90px}.customize-option.hair_base_2_halloween{background-image:url(spritesmith-main-2.png);background-position:-298px -379px;width:60px;height:60px}.hair_base_2_holly{background-image:url(spritesmith-main-2.png);background-position:-364px -364px;width:90px;height:90px}.customize-option.hair_base_2_holly{background-image:url(spritesmith-main-2.png);background-position:-389px -379px;width:60px;height:60px}.hair_base_2_hollygreen{background-image:url(spritesmith-main-2.png);background-position:-455px 0;width:90px;height:90px}.customize-option.hair_base_2_hollygreen{background-image:url(spritesmith-main-2.png);background-position:-480px -15px;width:60px;height:60px}.hair_base_2_midnight{background-image:url(spritesmith-main-2.png);background-position:-455px -91px;width:90px;height:90px}.customize-option.hair_base_2_midnight{background-image:url(spritesmith-main-2.png);background-position:-480px -106px;width:60px;height:60px}.hair_base_2_pblue{background-image:url(spritesmith-main-2.png);background-position:-455px -182px;width:90px;height:90px}.customize-option.hair_base_2_pblue{background-image:url(spritesmith-main-2.png);background-position:-480px -197px;width:60px;height:60px}.hair_base_2_pblue2{background-image:url(spritesmith-main-2.png);background-position:-455px -273px;width:90px;height:90px}.customize-option.hair_base_2_pblue2{background-image:url(spritesmith-main-2.png);background-position:-480px -288px;width:60px;height:60px}.hair_base_2_peppermint{background-image:url(spritesmith-main-2.png);background-position:-455px -364px;width:90px;height:90px}.customize-option.hair_base_2_peppermint{background-image:url(spritesmith-main-2.png);background-position:-480px -379px;width:60px;height:60px}.hair_base_2_pgreen{background-image:url(spritesmith-main-2.png);background-position:0 -455px;width:90px;height:90px}.customize-option.hair_base_2_pgreen{background-image:url(spritesmith-main-2.png);background-position:-25px -470px;width:60px;height:60px}.hair_base_2_pgreen2{background-image:url(spritesmith-main-2.png);background-position:-91px -455px;width:90px;height:90px}.customize-option.hair_base_2_pgreen2{background-image:url(spritesmith-main-2.png);background-position:-116px -470px;width:60px;height:60px}.hair_base_2_porange{background-image:url(spritesmith-main-2.png);background-position:-182px -455px;width:90px;height:90px}.customize-option.hair_base_2_porange{background-image:url(spritesmith-main-2.png);background-position:-207px -470px;width:60px;height:60px}.hair_base_2_porange2{background-image:url(spritesmith-main-2.png);background-position:-273px -455px;width:90px;height:90px}.customize-option.hair_base_2_porange2{background-image:url(spritesmith-main-2.png);background-position:-298px -470px;width:60px;height:60px}.hair_base_2_ppink{background-image:url(spritesmith-main-2.png);background-position:-364px -455px;width:90px;height:90px}.customize-option.hair_base_2_ppink{background-image:url(spritesmith-main-2.png);background-position:-389px -470px;width:60px;height:60px}.hair_base_2_ppink2{background-image:url(spritesmith-main-2.png);background-position:-455px -455px;width:90px;height:90px}.customize-option.hair_base_2_ppink2{background-image:url(spritesmith-main-2.png);background-position:-480px -470px;width:60px;height:60px}.hair_base_2_ppurple{background-image:url(spritesmith-main-2.png);background-position:-546px 0;width:90px;height:90px}.customize-option.hair_base_2_ppurple{background-image:url(spritesmith-main-2.png);background-position:-571px -15px;width:60px;height:60px}.hair_base_2_ppurple2{background-image:url(spritesmith-main-2.png);background-position:-546px -91px;width:90px;height:90px}.customize-option.hair_base_2_ppurple2{background-image:url(spritesmith-main-2.png);background-position:-571px -106px;width:60px;height:60px}.hair_base_2_pumpkin{background-image:url(spritesmith-main-2.png);background-position:-546px -182px;width:90px;height:90px}.customize-option.hair_base_2_pumpkin{background-image:url(spritesmith-main-2.png);background-position:-571px -197px;width:60px;height:60px}.hair_base_2_purple{background-image:url(spritesmith-main-2.png);background-position:-546px -273px;width:90px;height:90px}.customize-option.hair_base_2_purple{background-image:url(spritesmith-main-2.png);background-position:-571px -288px;width:60px;height:60px}.hair_base_2_pyellow{background-image:url(spritesmith-main-2.png);background-position:-546px -364px;width:90px;height:90px}.customize-option.hair_base_2_pyellow{background-image:url(spritesmith-main-2.png);background-position:-571px -379px;width:60px;height:60px}.hair_base_2_pyellow2{background-image:url(spritesmith-main-2.png);background-position:-546px -455px;width:90px;height:90px}.customize-option.hair_base_2_pyellow2{background-image:url(spritesmith-main-2.png);background-position:-571px -470px;width:60px;height:60px}.hair_base_2_rainbow{background-image:url(spritesmith-main-2.png);background-position:0 -546px;width:90px;height:90px}.customize-option.hair_base_2_rainbow{background-image:url(spritesmith-main-2.png);background-position:-25px -561px;width:60px;height:60px}.hair_base_2_red{background-image:url(spritesmith-main-2.png);background-position:-91px -546px;width:90px;height:90px}.customize-option.hair_base_2_red{background-image:url(spritesmith-main-2.png);background-position:-116px -561px;width:60px;height:60px}.hair_base_2_snowy{background-image:url(spritesmith-main-2.png);background-position:-182px -546px;width:90px;height:90px}.customize-option.hair_base_2_snowy{background-image:url(spritesmith-main-2.png);background-position:-207px -561px;width:60px;height:60px}.hair_base_2_white{background-image:url(spritesmith-main-2.png);background-position:-273px -546px;width:90px;height:90px}.customize-option.hair_base_2_white{background-image:url(spritesmith-main-2.png);background-position:-298px -561px;width:60px;height:60px}.hair_base_2_winternight{background-image:url(spritesmith-main-2.png);background-position:-364px -546px;width:90px;height:90px}.customize-option.hair_base_2_winternight{background-image:url(spritesmith-main-2.png);background-position:-389px -561px;width:60px;height:60px}.hair_base_2_winterstar{background-image:url(spritesmith-main-2.png);background-position:-455px -546px;width:90px;height:90px}.customize-option.hair_base_2_winterstar{background-image:url(spritesmith-main-2.png);background-position:-480px -561px;width:60px;height:60px}.hair_base_2_yellow{background-image:url(spritesmith-main-2.png);background-position:-546px -546px;width:90px;height:90px}.customize-option.hair_base_2_yellow{background-image:url(spritesmith-main-2.png);background-position:-571px -561px;width:60px;height:60px}.hair_base_2_zombie{background-image:url(spritesmith-main-2.png);background-position:-637px 0;width:90px;height:90px}.customize-option.hair_base_2_zombie{background-image:url(spritesmith-main-2.png);background-position:-662px -15px;width:60px;height:60px}.hair_base_3_TRUred{background-image:url(spritesmith-main-2.png);background-position:-637px -91px;width:90px;height:90px}.customize-option.hair_base_3_TRUred{background-image:url(spritesmith-main-2.png);background-position:-662px -106px;width:60px;height:60px}.hair_base_3_aurora{background-image:url(spritesmith-main-2.png);background-position:-637px -182px;width:90px;height:90px}.customize-option.hair_base_3_aurora{background-image:url(spritesmith-main-2.png);background-position:-662px -197px;width:60px;height:60px}.hair_base_3_black{background-image:url(spritesmith-main-2.png);background-position:-637px -273px;width:90px;height:90px}.customize-option.hair_base_3_black{background-image:url(spritesmith-main-2.png);background-position:-662px -288px;width:60px;height:60px}.hair_base_3_blond{background-image:url(spritesmith-main-2.png);background-position:-637px -364px;width:90px;height:90px}.customize-option.hair_base_3_blond{background-image:url(spritesmith-main-2.png);background-position:-662px -379px;width:60px;height:60px}.hair_base_3_blue{background-image:url(spritesmith-main-2.png);background-position:-637px -455px;width:90px;height:90px}.customize-option.hair_base_3_blue{background-image:url(spritesmith-main-2.png);background-position:-662px -470px;width:60px;height:60px}.hair_base_3_brown{background-image:url(spritesmith-main-2.png);background-position:-637px -546px;width:90px;height:90px}.customize-option.hair_base_3_brown{background-image:url(spritesmith-main-2.png);background-position:-662px -561px;width:60px;height:60px}.hair_base_3_candycane{background-image:url(spritesmith-main-2.png);background-position:0 -637px;width:90px;height:90px}.customize-option.hair_base_3_candycane{background-image:url(spritesmith-main-2.png);background-position:-25px -652px;width:60px;height:60px}.hair_base_3_candycorn{background-image:url(spritesmith-main-2.png);background-position:-91px -637px;width:90px;height:90px}.customize-option.hair_base_3_candycorn{background-image:url(spritesmith-main-2.png);background-position:-116px -652px;width:60px;height:60px}.hair_base_3_festive{background-image:url(spritesmith-main-2.png);background-position:-182px -637px;width:90px;height:90px}.customize-option.hair_base_3_festive{background-image:url(spritesmith-main-2.png);background-position:-207px -652px;width:60px;height:60px}.hair_base_3_frost{background-image:url(spritesmith-main-2.png);background-position:-273px -637px;width:90px;height:90px}.customize-option.hair_base_3_frost{background-image:url(spritesmith-main-2.png);background-position:-298px -652px;width:60px;height:60px}.hair_base_3_ghostwhite{background-image:url(spritesmith-main-2.png);background-position:-364px -637px;width:90px;height:90px}.customize-option.hair_base_3_ghostwhite{background-image:url(spritesmith-main-2.png);background-position:-389px -652px;width:60px;height:60px}.hair_base_3_green{background-image:url(spritesmith-main-2.png);background-position:-455px -637px;width:90px;height:90px}.customize-option.hair_base_3_green{background-image:url(spritesmith-main-2.png);background-position:-480px -652px;width:60px;height:60px}.hair_base_3_halloween{background-image:url(spritesmith-main-2.png);background-position:-546px -637px;width:90px;height:90px}.customize-option.hair_base_3_halloween{background-image:url(spritesmith-main-2.png);background-position:-571px -652px;width:60px;height:60px}.hair_base_3_holly{background-image:url(spritesmith-main-2.png);background-position:-637px -637px;width:90px;height:90px}.customize-option.hair_base_3_holly{background-image:url(spritesmith-main-2.png);background-position:-662px -652px;width:60px;height:60px}.hair_base_3_hollygreen{background-image:url(spritesmith-main-2.png);background-position:-728px 0;width:90px;height:90px}.customize-option.hair_base_3_hollygreen{background-image:url(spritesmith-main-2.png);background-position:-753px -15px;width:60px;height:60px}.hair_base_3_midnight{background-image:url(spritesmith-main-2.png);background-position:-728px -91px;width:90px;height:90px}.customize-option.hair_base_3_midnight{background-image:url(spritesmith-main-2.png);background-position:-753px -106px;width:60px;height:60px}.hair_base_3_pblue{background-image:url(spritesmith-main-2.png);background-position:-728px -182px;width:90px;height:90px}.customize-option.hair_base_3_pblue{background-image:url(spritesmith-main-2.png);background-position:-753px -197px;width:60px;height:60px}.hair_base_3_pblue2{background-image:url(spritesmith-main-2.png);background-position:-728px -273px;width:90px;height:90px}.customize-option.hair_base_3_pblue2{background-image:url(spritesmith-main-2.png);background-position:-753px -288px;width:60px;height:60px}.hair_base_3_peppermint{background-image:url(spritesmith-main-2.png);background-position:-728px -364px;width:90px;height:90px}.customize-option.hair_base_3_peppermint{background-image:url(spritesmith-main-2.png);background-position:-753px -379px;width:60px;height:60px}.hair_base_3_pgreen{background-image:url(spritesmith-main-2.png);background-position:-728px -455px;width:90px;height:90px}.customize-option.hair_base_3_pgreen{background-image:url(spritesmith-main-2.png);background-position:-753px -470px;width:60px;height:60px}.hair_base_3_pgreen2{background-image:url(spritesmith-main-2.png);background-position:-728px -546px;width:90px;height:90px}.customize-option.hair_base_3_pgreen2{background-image:url(spritesmith-main-2.png);background-position:-753px -561px;width:60px;height:60px}.hair_base_3_porange{background-image:url(spritesmith-main-2.png);background-position:-728px -637px;width:90px;height:90px}.customize-option.hair_base_3_porange{background-image:url(spritesmith-main-2.png);background-position:-753px -652px;width:60px;height:60px}.hair_base_3_porange2{background-image:url(spritesmith-main-2.png);background-position:0 -728px;width:90px;height:90px}.customize-option.hair_base_3_porange2{background-image:url(spritesmith-main-2.png);background-position:-25px -743px;width:60px;height:60px}.hair_base_3_ppink{background-image:url(spritesmith-main-2.png);background-position:-91px -728px;width:90px;height:90px}.customize-option.hair_base_3_ppink{background-image:url(spritesmith-main-2.png);background-position:-116px -743px;width:60px;height:60px}.hair_base_3_ppink2{background-image:url(spritesmith-main-2.png);background-position:-182px -728px;width:90px;height:90px}.customize-option.hair_base_3_ppink2{background-image:url(spritesmith-main-2.png);background-position:-207px -743px;width:60px;height:60px}.hair_base_3_ppurple{background-image:url(spritesmith-main-2.png);background-position:-273px -728px;width:90px;height:90px}.customize-option.hair_base_3_ppurple{background-image:url(spritesmith-main-2.png);background-position:-298px -743px;width:60px;height:60px}.hair_base_3_ppurple2{background-image:url(spritesmith-main-2.png);background-position:-364px -728px;width:90px;height:90px}.customize-option.hair_base_3_ppurple2{background-image:url(spritesmith-main-2.png);background-position:-389px -743px;width:60px;height:60px}.hair_base_3_pumpkin{background-image:url(spritesmith-main-2.png);background-position:-455px -728px;width:90px;height:90px}.customize-option.hair_base_3_pumpkin{background-image:url(spritesmith-main-2.png);background-position:-480px -743px;width:60px;height:60px}.hair_base_3_purple{background-image:url(spritesmith-main-2.png);background-position:-546px -728px;width:90px;height:90px}.customize-option.hair_base_3_purple{background-image:url(spritesmith-main-2.png);background-position:-571px -743px;width:60px;height:60px}.hair_base_3_pyellow{background-image:url(spritesmith-main-2.png);background-position:-637px -728px;width:90px;height:90px}.customize-option.hair_base_3_pyellow{background-image:url(spritesmith-main-2.png);background-position:-662px -743px;width:60px;height:60px}.hair_base_3_pyellow2{background-image:url(spritesmith-main-2.png);background-position:-728px -728px;width:90px;height:90px}.customize-option.hair_base_3_pyellow2{background-image:url(spritesmith-main-2.png);background-position:-753px -743px;width:60px;height:60px}.hair_base_3_rainbow{background-image:url(spritesmith-main-2.png);background-position:-819px 0;width:90px;height:90px}.customize-option.hair_base_3_rainbow{background-image:url(spritesmith-main-2.png);background-position:-844px -15px;width:60px;height:60px}.hair_base_3_red{background-image:url(spritesmith-main-2.png);background-position:-819px -91px;width:90px;height:90px}.customize-option.hair_base_3_red{background-image:url(spritesmith-main-2.png);background-position:-844px -106px;width:60px;height:60px}.hair_base_3_snowy{background-image:url(spritesmith-main-2.png);background-position:-819px -182px;width:90px;height:90px}.customize-option.hair_base_3_snowy{background-image:url(spritesmith-main-2.png);background-position:-844px -197px;width:60px;height:60px}.hair_base_3_white{background-image:url(spritesmith-main-2.png);background-position:-819px -273px;width:90px;height:90px}.customize-option.hair_base_3_white{background-image:url(spritesmith-main-2.png);background-position:-844px -288px;width:60px;height:60px}.hair_base_3_winternight{background-image:url(spritesmith-main-2.png);background-position:-819px -364px;width:90px;height:90px}.customize-option.hair_base_3_winternight{background-image:url(spritesmith-main-2.png);background-position:-844px -379px;width:60px;height:60px}.hair_base_3_winterstar{background-image:url(spritesmith-main-2.png);background-position:-819px -455px;width:90px;height:90px}.customize-option.hair_base_3_winterstar{background-image:url(spritesmith-main-2.png);background-position:-844px -470px;width:60px;height:60px}.hair_base_3_yellow{background-image:url(spritesmith-main-2.png);background-position:-819px -546px;width:90px;height:90px}.customize-option.hair_base_3_yellow{background-image:url(spritesmith-main-2.png);background-position:-844px -561px;width:60px;height:60px}.hair_base_3_zombie{background-image:url(spritesmith-main-2.png);background-position:-819px -637px;width:90px;height:90px}.customize-option.hair_base_3_zombie{background-image:url(spritesmith-main-2.png);background-position:-844px -652px;width:60px;height:60px}.hair_base_4_TRUred{background-image:url(spritesmith-main-2.png);background-position:-819px -728px;width:90px;height:90px}.customize-option.hair_base_4_TRUred{background-image:url(spritesmith-main-2.png);background-position:-844px -743px;width:60px;height:60px}.hair_base_4_aurora{background-image:url(spritesmith-main-2.png);background-position:0 -819px;width:90px;height:90px}.customize-option.hair_base_4_aurora{background-image:url(spritesmith-main-2.png);background-position:-25px -834px;width:60px;height:60px}.hair_base_4_black{background-image:url(spritesmith-main-2.png);background-position:-91px -819px;width:90px;height:90px}.customize-option.hair_base_4_black{background-image:url(spritesmith-main-2.png);background-position:-116px -834px;width:60px;height:60px}.hair_base_4_blond{background-image:url(spritesmith-main-2.png);background-position:-182px -819px;width:90px;height:90px}.customize-option.hair_base_4_blond{background-image:url(spritesmith-main-2.png);background-position:-207px -834px;width:60px;height:60px}.hair_base_4_blue{background-image:url(spritesmith-main-2.png);background-position:-273px -819px;width:90px;height:90px}.customize-option.hair_base_4_blue{background-image:url(spritesmith-main-2.png);background-position:-298px -834px;width:60px;height:60px}.hair_base_4_brown{background-image:url(spritesmith-main-2.png);background-position:-364px -819px;width:90px;height:90px}.customize-option.hair_base_4_brown{background-image:url(spritesmith-main-2.png);background-position:-389px -834px;width:60px;height:60px}.hair_base_4_candycane{background-image:url(spritesmith-main-2.png);background-position:-455px -819px;width:90px;height:90px}.customize-option.hair_base_4_candycane{background-image:url(spritesmith-main-2.png);background-position:-480px -834px;width:60px;height:60px}.hair_base_4_candycorn{background-image:url(spritesmith-main-2.png);background-position:-546px -819px;width:90px;height:90px}.customize-option.hair_base_4_candycorn{background-image:url(spritesmith-main-2.png);background-position:-571px -834px;width:60px;height:60px}.hair_base_4_festive{background-image:url(spritesmith-main-2.png);background-position:-637px -819px;width:90px;height:90px}.customize-option.hair_base_4_festive{background-image:url(spritesmith-main-2.png);background-position:-662px -834px;width:60px;height:60px}.hair_base_4_frost{background-image:url(spritesmith-main-2.png);background-position:-728px -819px;width:90px;height:90px}.customize-option.hair_base_4_frost{background-image:url(spritesmith-main-2.png);background-position:-753px -834px;width:60px;height:60px}.hair_base_4_ghostwhite{background-image:url(spritesmith-main-2.png);background-position:-819px -819px;width:90px;height:90px}.customize-option.hair_base_4_ghostwhite{background-image:url(spritesmith-main-2.png);background-position:-844px -834px;width:60px;height:60px}.hair_base_4_green{background-image:url(spritesmith-main-2.png);background-position:-910px 0;width:90px;height:90px}.customize-option.hair_base_4_green{background-image:url(spritesmith-main-2.png);background-position:-935px -15px;width:60px;height:60px}.hair_base_4_halloween{background-image:url(spritesmith-main-2.png);background-position:-910px -91px;width:90px;height:90px}.customize-option.hair_base_4_halloween{background-image:url(spritesmith-main-2.png);background-position:-935px -106px;width:60px;height:60px}.hair_base_4_holly{background-image:url(spritesmith-main-2.png);background-position:-910px -182px;width:90px;height:90px}.customize-option.hair_base_4_holly{background-image:url(spritesmith-main-2.png);background-position:-935px -197px;width:60px;height:60px}.hair_base_4_hollygreen{background-image:url(spritesmith-main-2.png);background-position:-910px -273px;width:90px;height:90px}.customize-option.hair_base_4_hollygreen{background-image:url(spritesmith-main-2.png);background-position:-935px -288px;width:60px;height:60px}.hair_base_4_midnight{background-image:url(spritesmith-main-2.png);background-position:-910px -364px;width:90px;height:90px}.customize-option.hair_base_4_midnight{background-image:url(spritesmith-main-2.png);background-position:-935px -379px;width:60px;height:60px}.hair_base_4_pblue{background-image:url(spritesmith-main-2.png);background-position:-910px -455px;width:90px;height:90px}.customize-option.hair_base_4_pblue{background-image:url(spritesmith-main-2.png);background-position:-935px -470px;width:60px;height:60px}.hair_base_4_pblue2{background-image:url(spritesmith-main-2.png);background-position:-910px -546px;width:90px;height:90px}.customize-option.hair_base_4_pblue2{background-image:url(spritesmith-main-2.png);background-position:-935px -561px;width:60px;height:60px}.hair_base_4_peppermint{background-image:url(spritesmith-main-2.png);background-position:-910px -637px;width:90px;height:90px}.customize-option.hair_base_4_peppermint{background-image:url(spritesmith-main-2.png);background-position:-935px -652px;width:60px;height:60px}.hair_base_4_pgreen{background-image:url(spritesmith-main-2.png);background-position:-910px -728px;width:90px;height:90px}.customize-option.hair_base_4_pgreen{background-image:url(spritesmith-main-2.png);background-position:-935px -743px;width:60px;height:60px}.hair_base_4_pgreen2{background-image:url(spritesmith-main-2.png);background-position:-910px -819px;width:90px;height:90px}.customize-option.hair_base_4_pgreen2{background-image:url(spritesmith-main-2.png);background-position:-935px -834px;width:60px;height:60px}.hair_base_4_porange{background-image:url(spritesmith-main-2.png);background-position:0 -910px;width:90px;height:90px}.customize-option.hair_base_4_porange{background-image:url(spritesmith-main-2.png);background-position:-25px -925px;width:60px;height:60px}.hair_base_4_porange2{background-image:url(spritesmith-main-2.png);background-position:-91px -910px;width:90px;height:90px}.customize-option.hair_base_4_porange2{background-image:url(spritesmith-main-2.png);background-position:-116px -925px;width:60px;height:60px}.hair_base_4_ppink{background-image:url(spritesmith-main-2.png);background-position:-182px -910px;width:90px;height:90px}.customize-option.hair_base_4_ppink{background-image:url(spritesmith-main-2.png);background-position:-207px -925px;width:60px;height:60px}.hair_base_4_ppink2{background-image:url(spritesmith-main-2.png);background-position:-273px -910px;width:90px;height:90px}.customize-option.hair_base_4_ppink2{background-image:url(spritesmith-main-2.png);background-position:-298px -925px;width:60px;height:60px}.hair_base_4_ppurple{background-image:url(spritesmith-main-2.png);background-position:-364px -910px;width:90px;height:90px}.customize-option.hair_base_4_ppurple{background-image:url(spritesmith-main-2.png);background-position:-389px -925px;width:60px;height:60px}.hair_base_4_ppurple2{background-image:url(spritesmith-main-2.png);background-position:-455px -910px;width:90px;height:90px}.customize-option.hair_base_4_ppurple2{background-image:url(spritesmith-main-2.png);background-position:-480px -925px;width:60px;height:60px}.hair_base_4_pumpkin{background-image:url(spritesmith-main-2.png);background-position:-546px -910px;width:90px;height:90px}.customize-option.hair_base_4_pumpkin{background-image:url(spritesmith-main-2.png);background-position:-571px -925px;width:60px;height:60px}.hair_base_4_purple{background-image:url(spritesmith-main-2.png);background-position:-637px -910px;width:90px;height:90px}.customize-option.hair_base_4_purple{background-image:url(spritesmith-main-2.png);background-position:-662px -925px;width:60px;height:60px}.hair_base_4_pyellow{background-image:url(spritesmith-main-2.png);background-position:-728px -910px;width:90px;height:90px}.customize-option.hair_base_4_pyellow{background-image:url(spritesmith-main-2.png);background-position:-753px -925px;width:60px;height:60px}.hair_base_4_pyellow2{background-image:url(spritesmith-main-2.png);background-position:-819px -910px;width:90px;height:90px}.customize-option.hair_base_4_pyellow2{background-image:url(spritesmith-main-2.png);background-position:-844px -925px;width:60px;height:60px}.hair_base_4_rainbow{background-image:url(spritesmith-main-2.png);background-position:-910px -910px;width:90px;height:90px}.customize-option.hair_base_4_rainbow{background-image:url(spritesmith-main-2.png);background-position:-935px -925px;width:60px;height:60px}.hair_base_4_red{background-image:url(spritesmith-main-2.png);background-position:-1001px 0;width:90px;height:90px}.customize-option.hair_base_4_red{background-image:url(spritesmith-main-2.png);background-position:-1026px -15px;width:60px;height:60px}.hair_base_4_snowy{background-image:url(spritesmith-main-2.png);background-position:-1001px -91px;width:90px;height:90px}.customize-option.hair_base_4_snowy{background-image:url(spritesmith-main-2.png);background-position:-1026px -106px;width:60px;height:60px}.hair_base_4_white{background-image:url(spritesmith-main-2.png);background-position:-1001px -182px;width:90px;height:90px}.customize-option.hair_base_4_white{background-image:url(spritesmith-main-2.png);background-position:-1026px -197px;width:60px;height:60px}.hair_base_4_winternight{background-image:url(spritesmith-main-2.png);background-position:-1001px -273px;width:90px;height:90px}.customize-option.hair_base_4_winternight{background-image:url(spritesmith-main-2.png);background-position:-1026px -288px;width:60px;height:60px}.hair_base_4_winterstar{background-image:url(spritesmith-main-2.png);background-position:-1001px -364px;width:90px;height:90px}.customize-option.hair_base_4_winterstar{background-image:url(spritesmith-main-2.png);background-position:-1026px -379px;width:60px;height:60px}.hair_base_4_yellow{background-image:url(spritesmith-main-2.png);background-position:-1001px -455px;width:90px;height:90px}.customize-option.hair_base_4_yellow{background-image:url(spritesmith-main-2.png);background-position:-1026px -470px;width:60px;height:60px}.hair_base_4_zombie{background-image:url(spritesmith-main-2.png);background-position:-1001px -546px;width:90px;height:90px}.customize-option.hair_base_4_zombie{background-image:url(spritesmith-main-2.png);background-position:-1026px -561px;width:60px;height:60px}.hair_base_5_TRUred{background-image:url(spritesmith-main-2.png);background-position:-1001px -637px;width:90px;height:90px}.customize-option.hair_base_5_TRUred{background-image:url(spritesmith-main-2.png);background-position:-1026px -652px;width:60px;height:60px}.hair_base_5_aurora{background-image:url(spritesmith-main-2.png);background-position:-1001px -728px;width:90px;height:90px}.customize-option.hair_base_5_aurora{background-image:url(spritesmith-main-2.png);background-position:-1026px -743px;width:60px;height:60px}.hair_base_5_black{background-image:url(spritesmith-main-2.png);background-position:-1001px -819px;width:90px;height:90px}.customize-option.hair_base_5_black{background-image:url(spritesmith-main-2.png);background-position:-1026px -834px;width:60px;height:60px}.hair_base_5_blond{background-image:url(spritesmith-main-2.png);background-position:-1001px -910px;width:90px;height:90px}.customize-option.hair_base_5_blond{background-image:url(spritesmith-main-2.png);background-position:-1026px -925px;width:60px;height:60px}.hair_base_5_blue{background-image:url(spritesmith-main-2.png);background-position:0 -1001px;width:90px;height:90px}.customize-option.hair_base_5_blue{background-image:url(spritesmith-main-2.png);background-position:-25px -1016px;width:60px;height:60px}.hair_base_5_brown{background-image:url(spritesmith-main-2.png);background-position:-91px -1001px;width:90px;height:90px}.customize-option.hair_base_5_brown{background-image:url(spritesmith-main-2.png);background-position:-116px -1016px;width:60px;height:60px}.hair_base_5_candycane{background-image:url(spritesmith-main-2.png);background-position:-182px -1001px;width:90px;height:90px}.customize-option.hair_base_5_candycane{background-image:url(spritesmith-main-2.png);background-position:-207px -1016px;width:60px;height:60px}.hair_base_5_candycorn{background-image:url(spritesmith-main-2.png);background-position:-273px -1001px;width:90px;height:90px}.customize-option.hair_base_5_candycorn{background-image:url(spritesmith-main-2.png);background-position:-298px -1016px;width:60px;height:60px}.hair_base_5_festive{background-image:url(spritesmith-main-2.png);background-position:-364px -1001px;width:90px;height:90px}.customize-option.hair_base_5_festive{background-image:url(spritesmith-main-2.png);background-position:-389px -1016px;width:60px;height:60px}.hair_base_5_frost{background-image:url(spritesmith-main-2.png);background-position:-455px -1001px;width:90px;height:90px}.customize-option.hair_base_5_frost{background-image:url(spritesmith-main-2.png);background-position:-480px -1016px;width:60px;height:60px}.hair_base_5_ghostwhite{background-image:url(spritesmith-main-2.png);background-position:-546px -1001px;width:90px;height:90px}.customize-option.hair_base_5_ghostwhite{background-image:url(spritesmith-main-2.png);background-position:-571px -1016px;width:60px;height:60px}.hair_base_5_green{background-image:url(spritesmith-main-2.png);background-position:-637px -1001px;width:90px;height:90px}.customize-option.hair_base_5_green{background-image:url(spritesmith-main-2.png);background-position:-662px -1016px;width:60px;height:60px}.hair_base_5_halloween{background-image:url(spritesmith-main-2.png);background-position:-728px -1001px;width:90px;height:90px}.customize-option.hair_base_5_halloween{background-image:url(spritesmith-main-2.png);background-position:-753px -1016px;width:60px;height:60px}.hair_base_5_holly{background-image:url(spritesmith-main-2.png);background-position:-819px -1001px;width:90px;height:90px}.customize-option.hair_base_5_holly{background-image:url(spritesmith-main-2.png);background-position:-844px -1016px;width:60px;height:60px}.hair_base_5_hollygreen{background-image:url(spritesmith-main-2.png);background-position:-910px -1001px;width:90px;height:90px}.customize-option.hair_base_5_hollygreen{background-image:url(spritesmith-main-2.png);background-position:-935px -1016px;width:60px;height:60px}.hair_base_5_midnight{background-image:url(spritesmith-main-2.png);background-position:-1001px -1001px;width:90px;height:90px}.customize-option.hair_base_5_midnight{background-image:url(spritesmith-main-2.png);background-position:-1026px -1016px;width:60px;height:60px}.hair_base_5_pblue{background-image:url(spritesmith-main-2.png);background-position:-1092px 0;width:90px;height:90px}.customize-option.hair_base_5_pblue{background-image:url(spritesmith-main-2.png);background-position:-1117px -15px;width:60px;height:60px}.hair_base_5_pblue2{background-image:url(spritesmith-main-2.png);background-position:-1092px -91px;width:90px;height:90px}.customize-option.hair_base_5_pblue2{background-image:url(spritesmith-main-2.png);background-position:-1117px -106px;width:60px;height:60px}.hair_base_5_peppermint{background-image:url(spritesmith-main-2.png);background-position:-1092px -182px;width:90px;height:90px}.customize-option.hair_base_5_peppermint{background-image:url(spritesmith-main-2.png);background-position:-1117px -197px;width:60px;height:60px}.hair_base_5_pgreen{background-image:url(spritesmith-main-2.png);background-position:-1092px -273px;width:90px;height:90px}.customize-option.hair_base_5_pgreen{background-image:url(spritesmith-main-2.png);background-position:-1117px -288px;width:60px;height:60px}.hair_base_5_pgreen2{background-image:url(spritesmith-main-2.png);background-position:-1092px -364px;width:90px;height:90px}.customize-option.hair_base_5_pgreen2{background-image:url(spritesmith-main-2.png);background-position:-1117px -379px;width:60px;height:60px}.hair_base_5_porange{background-image:url(spritesmith-main-2.png);background-position:-1092px -455px;width:90px;height:90px}.customize-option.hair_base_5_porange{background-image:url(spritesmith-main-2.png);background-position:-1117px -470px;width:60px;height:60px}.hair_base_5_porange2{background-image:url(spritesmith-main-2.png);background-position:-1092px -546px;width:90px;height:90px}.customize-option.hair_base_5_porange2{background-image:url(spritesmith-main-2.png);background-position:-1117px -561px;width:60px;height:60px}.hair_base_5_ppink{background-image:url(spritesmith-main-2.png);background-position:-1092px -637px;width:90px;height:90px}.customize-option.hair_base_5_ppink{background-image:url(spritesmith-main-2.png);background-position:-1117px -652px;width:60px;height:60px}.hair_base_5_ppink2{background-image:url(spritesmith-main-2.png);background-position:-1092px -728px;width:90px;height:90px}.customize-option.hair_base_5_ppink2{background-image:url(spritesmith-main-2.png);background-position:-1117px -743px;width:60px;height:60px}.hair_base_5_ppurple{background-image:url(spritesmith-main-2.png);background-position:-1092px -819px;width:90px;height:90px}.customize-option.hair_base_5_ppurple{background-image:url(spritesmith-main-2.png);background-position:-1117px -834px;width:60px;height:60px}.hair_base_5_ppurple2{background-image:url(spritesmith-main-2.png);background-position:-1092px -910px;width:90px;height:90px}.customize-option.hair_base_5_ppurple2{background-image:url(spritesmith-main-2.png);background-position:-1117px -925px;width:60px;height:60px}.hair_base_5_pumpkin{background-image:url(spritesmith-main-2.png);background-position:-1092px -1001px;width:90px;height:90px}.customize-option.hair_base_5_pumpkin{background-image:url(spritesmith-main-2.png);background-position:-1117px -1016px;width:60px;height:60px}.hair_base_5_purple{background-image:url(spritesmith-main-2.png);background-position:0 -1092px;width:90px;height:90px}.customize-option.hair_base_5_purple{background-image:url(spritesmith-main-2.png);background-position:-25px -1107px;width:60px;height:60px}.hair_base_5_pyellow{background-image:url(spritesmith-main-2.png);background-position:-91px -1092px;width:90px;height:90px}.customize-option.hair_base_5_pyellow{background-image:url(spritesmith-main-2.png);background-position:-116px -1107px;width:60px;height:60px}.hair_base_5_pyellow2{background-image:url(spritesmith-main-2.png);background-position:-182px -1092px;width:90px;height:90px}.customize-option.hair_base_5_pyellow2{background-image:url(spritesmith-main-2.png);background-position:-207px -1107px;width:60px;height:60px}.hair_base_5_rainbow{background-image:url(spritesmith-main-2.png);background-position:-273px -1092px;width:90px;height:90px}.customize-option.hair_base_5_rainbow{background-image:url(spritesmith-main-2.png);background-position:-298px -1107px;width:60px;height:60px}.hair_base_5_red{background-image:url(spritesmith-main-2.png);background-position:-364px -1092px;width:90px;height:90px}.customize-option.hair_base_5_red{background-image:url(spritesmith-main-2.png);background-position:-389px -1107px;width:60px;height:60px}.hair_base_5_snowy{background-image:url(spritesmith-main-2.png);background-position:-455px -1092px;width:90px;height:90px}.customize-option.hair_base_5_snowy{background-image:url(spritesmith-main-2.png);background-position:-480px -1107px;width:60px;height:60px}.hair_base_5_white{background-image:url(spritesmith-main-2.png);background-position:-546px -1092px;width:90px;height:90px}.customize-option.hair_base_5_white{background-image:url(spritesmith-main-2.png);background-position:-571px -1107px;width:60px;height:60px}.hair_base_5_winternight{background-image:url(spritesmith-main-2.png);background-position:-637px -1092px;width:90px;height:90px}.customize-option.hair_base_5_winternight{background-image:url(spritesmith-main-2.png);background-position:-662px -1107px;width:60px;height:60px}.hair_base_5_winterstar{background-image:url(spritesmith-main-2.png);background-position:0 0;width:90px;height:90px}.customize-option.hair_base_5_winterstar{background-image:url(spritesmith-main-2.png);background-position:-25px -15px;width:60px;height:60px}.hair_base_5_yellow{background-image:url(spritesmith-main-2.png);background-position:-819px -1092px;width:90px;height:90px}.customize-option.hair_base_5_yellow{background-image:url(spritesmith-main-2.png);background-position:-844px -1107px;width:60px;height:60px}.hair_base_5_zombie{background-image:url(spritesmith-main-2.png);background-position:-910px -1092px;width:90px;height:90px}.customize-option.hair_base_5_zombie{background-image:url(spritesmith-main-2.png);background-position:-935px -1107px;width:60px;height:60px}.hair_base_6_TRUred{background-image:url(spritesmith-main-2.png);background-position:-1001px -1092px;width:90px;height:90px}.customize-option.hair_base_6_TRUred{background-image:url(spritesmith-main-2.png);background-position:-1026px -1107px;width:60px;height:60px}.hair_base_6_aurora{background-image:url(spritesmith-main-2.png);background-position:-1092px -1092px;width:90px;height:90px}.customize-option.hair_base_6_aurora{background-image:url(spritesmith-main-2.png);background-position:-1117px -1107px;width:60px;height:60px}.hair_base_6_black{background-image:url(spritesmith-main-2.png);background-position:-1183px 0;width:90px;height:90px}.customize-option.hair_base_6_black{background-image:url(spritesmith-main-2.png);background-position:-1208px -15px;width:60px;height:60px}.hair_base_6_blond{background-image:url(spritesmith-main-2.png);background-position:-1183px -91px;width:90px;height:90px}.customize-option.hair_base_6_blond{background-image:url(spritesmith-main-2.png);background-position:-1208px -106px;width:60px;height:60px}.hair_base_6_blue{background-image:url(spritesmith-main-2.png);background-position:-1183px -182px;width:90px;height:90px}.customize-option.hair_base_6_blue{background-image:url(spritesmith-main-2.png);background-position:-1208px -197px;width:60px;height:60px}.hair_base_6_brown{background-image:url(spritesmith-main-2.png);background-position:-1183px -273px;width:90px;height:90px}.customize-option.hair_base_6_brown{background-image:url(spritesmith-main-2.png);background-position:-1208px -288px;width:60px;height:60px}.hair_base_6_candycane{background-image:url(spritesmith-main-2.png);background-position:-1183px -364px;width:90px;height:90px}.customize-option.hair_base_6_candycane{background-image:url(spritesmith-main-2.png);background-position:-1208px -379px;width:60px;height:60px}.hair_base_6_candycorn{background-image:url(spritesmith-main-2.png);background-position:-1183px -455px;width:90px;height:90px}.customize-option.hair_base_6_candycorn{background-image:url(spritesmith-main-2.png);background-position:-1208px -470px;width:60px;height:60px}.hair_base_6_festive{background-image:url(spritesmith-main-2.png);background-position:-1183px -546px;width:90px;height:90px}.customize-option.hair_base_6_festive{background-image:url(spritesmith-main-2.png);background-position:-1208px -561px;width:60px;height:60px}.hair_base_6_frost{background-image:url(spritesmith-main-2.png);background-position:-1183px -637px;width:90px;height:90px}.customize-option.hair_base_6_frost{background-image:url(spritesmith-main-2.png);background-position:-1208px -652px;width:60px;height:60px}.hair_base_6_ghostwhite{background-image:url(spritesmith-main-2.png);background-position:-1183px -728px;width:90px;height:90px}.customize-option.hair_base_6_ghostwhite{background-image:url(spritesmith-main-2.png);background-position:-1208px -743px;width:60px;height:60px}.hair_base_6_green{background-image:url(spritesmith-main-2.png);background-position:-1183px -819px;width:90px;height:90px}.customize-option.hair_base_6_green{background-image:url(spritesmith-main-2.png);background-position:-1208px -834px;width:60px;height:60px}.hair_base_6_halloween{background-image:url(spritesmith-main-2.png);background-position:-1183px -910px;width:90px;height:90px}.customize-option.hair_base_6_halloween{background-image:url(spritesmith-main-2.png);background-position:-1208px -925px;width:60px;height:60px}.hair_base_6_holly{background-image:url(spritesmith-main-2.png);background-position:-1183px -1001px;width:90px;height:90px}.customize-option.hair_base_6_holly{background-image:url(spritesmith-main-2.png);background-position:-1208px -1016px;width:60px;height:60px}.hair_base_6_hollygreen{background-image:url(spritesmith-main-2.png);background-position:-1183px -1092px;width:90px;height:90px}.customize-option.hair_base_6_hollygreen{background-image:url(spritesmith-main-2.png);background-position:-1208px -1107px;width:60px;height:60px}.hair_base_6_midnight{background-image:url(spritesmith-main-2.png);background-position:0 -1183px;width:90px;height:90px}.customize-option.hair_base_6_midnight{background-image:url(spritesmith-main-2.png);background-position:-25px -1198px;width:60px;height:60px}.hair_base_6_pblue{background-image:url(spritesmith-main-2.png);background-position:-91px -1183px;width:90px;height:90px}.customize-option.hair_base_6_pblue{background-image:url(spritesmith-main-2.png);background-position:-116px -1198px;width:60px;height:60px}.hair_base_6_pblue2{background-image:url(spritesmith-main-2.png);background-position:-182px -1183px;width:90px;height:90px}.customize-option.hair_base_6_pblue2{background-image:url(spritesmith-main-2.png);background-position:-207px -1198px;width:60px;height:60px}.hair_base_6_peppermint{background-image:url(spritesmith-main-2.png);background-position:-273px -1183px;width:90px;height:90px}.customize-option.hair_base_6_peppermint{background-image:url(spritesmith-main-2.png);background-position:-298px -1198px;width:60px;height:60px}.hair_base_6_pgreen{background-image:url(spritesmith-main-2.png);background-position:-364px -1183px;width:90px;height:90px}.customize-option.hair_base_6_pgreen{background-image:url(spritesmith-main-2.png);background-position:-389px -1198px;width:60px;height:60px}.hair_base_6_pgreen2{background-image:url(spritesmith-main-2.png);background-position:-455px -1183px;width:90px;height:90px}.customize-option.hair_base_6_pgreen2{background-image:url(spritesmith-main-2.png);background-position:-480px -1198px;width:60px;height:60px}.hair_base_6_porange{background-image:url(spritesmith-main-2.png);background-position:-546px -1183px;width:90px;height:90px}.customize-option.hair_base_6_porange{background-image:url(spritesmith-main-2.png);background-position:-571px -1198px;width:60px;height:60px}.hair_base_6_porange2{background-image:url(spritesmith-main-2.png);background-position:-637px -1183px;width:90px;height:90px}.customize-option.hair_base_6_porange2{background-image:url(spritesmith-main-2.png);background-position:-662px -1198px;width:60px;height:60px}.hair_base_6_ppink{background-image:url(spritesmith-main-2.png);background-position:-728px -1183px;width:90px;height:90px}.customize-option.hair_base_6_ppink{background-image:url(spritesmith-main-2.png);background-position:-753px -1198px;width:60px;height:60px}.hair_base_6_ppink2{background-image:url(spritesmith-main-2.png);background-position:-819px -1183px;width:90px;height:90px}.customize-option.hair_base_6_ppink2{background-image:url(spritesmith-main-2.png);background-position:-844px -1198px;width:60px;height:60px}.hair_base_6_ppurple{background-image:url(spritesmith-main-2.png);background-position:-910px -1183px;width:90px;height:90px}.customize-option.hair_base_6_ppurple{background-image:url(spritesmith-main-2.png);background-position:-935px -1198px;width:60px;height:60px}.hair_base_6_ppurple2{background-image:url(spritesmith-main-2.png);background-position:-1001px -1183px;width:90px;height:90px}.customize-option.hair_base_6_ppurple2{background-image:url(spritesmith-main-2.png);background-position:-1026px -1198px;width:60px;height:60px}.hair_base_6_pumpkin{background-image:url(spritesmith-main-2.png);background-position:-1092px -1183px;width:90px;height:90px}.customize-option.hair_base_6_pumpkin{background-image:url(spritesmith-main-2.png);background-position:-1117px -1198px;width:60px;height:60px}.hair_base_6_purple{background-image:url(spritesmith-main-2.png);background-position:-1183px -1183px;width:90px;height:90px}.customize-option.hair_base_6_purple{background-image:url(spritesmith-main-2.png);background-position:-1208px -1198px;width:60px;height:60px}.hair_base_6_pyellow{background-image:url(spritesmith-main-2.png);background-position:-1274px 0;width:90px;height:90px}.customize-option.hair_base_6_pyellow{background-image:url(spritesmith-main-2.png);background-position:-1299px -15px;width:60px;height:60px}.hair_base_6_pyellow2{background-image:url(spritesmith-main-2.png);background-position:-1274px -91px;width:90px;height:90px}.customize-option.hair_base_6_pyellow2{background-image:url(spritesmith-main-2.png);background-position:-1299px -106px;width:60px;height:60px}.hair_base_6_rainbow{background-image:url(spritesmith-main-2.png);background-position:-1274px -182px;width:90px;height:90px}.customize-option.hair_base_6_rainbow{background-image:url(spritesmith-main-2.png);background-position:-1299px -197px;width:60px;height:60px}.hair_base_6_red{background-image:url(spritesmith-main-2.png);background-position:-1274px -273px;width:90px;height:90px}.customize-option.hair_base_6_red{background-image:url(spritesmith-main-2.png);background-position:-1299px -288px;width:60px;height:60px}.hair_base_6_snowy{background-image:url(spritesmith-main-2.png);background-position:-1274px -364px;width:90px;height:90px}.customize-option.hair_base_6_snowy{background-image:url(spritesmith-main-2.png);background-position:-1299px -379px;width:60px;height:60px}.hair_base_6_white{background-image:url(spritesmith-main-2.png);background-position:-1274px -455px;width:90px;height:90px}.customize-option.hair_base_6_white{background-image:url(spritesmith-main-2.png);background-position:-1299px -470px;width:60px;height:60px}.hair_base_6_winternight{background-image:url(spritesmith-main-2.png);background-position:-1274px -546px;width:90px;height:90px}.customize-option.hair_base_6_winternight{background-image:url(spritesmith-main-2.png);background-position:-1299px -561px;width:60px;height:60px}.hair_base_6_winterstar{background-image:url(spritesmith-main-2.png);background-position:-1274px -637px;width:90px;height:90px}.customize-option.hair_base_6_winterstar{background-image:url(spritesmith-main-2.png);background-position:-1299px -652px;width:60px;height:60px}.hair_base_6_yellow{background-image:url(spritesmith-main-2.png);background-position:-1274px -728px;width:90px;height:90px}.customize-option.hair_base_6_yellow{background-image:url(spritesmith-main-2.png);background-position:-1299px -743px;width:60px;height:60px}.hair_base_6_zombie{background-image:url(spritesmith-main-2.png);background-position:-1274px -819px;width:90px;height:90px}.customize-option.hair_base_6_zombie{background-image:url(spritesmith-main-2.png);background-position:-1299px -834px;width:60px;height:60px}.hair_base_7_TRUred{background-image:url(spritesmith-main-2.png);background-position:-1274px -910px;width:90px;height:90px}.customize-option.hair_base_7_TRUred{background-image:url(spritesmith-main-2.png);background-position:-1299px -925px;width:60px;height:60px}.hair_base_7_aurora{background-image:url(spritesmith-main-2.png);background-position:-1274px -1001px;width:90px;height:90px}.customize-option.hair_base_7_aurora{background-image:url(spritesmith-main-2.png);background-position:-1299px -1016px;width:60px;height:60px}.hair_base_7_black{background-image:url(spritesmith-main-2.png);background-position:-1274px -1092px;width:90px;height:90px}.customize-option.hair_base_7_black{background-image:url(spritesmith-main-2.png);background-position:-1299px -1107px;width:60px;height:60px}.hair_base_7_blond{background-image:url(spritesmith-main-2.png);background-position:-1274px -1183px;width:90px;height:90px}.customize-option.hair_base_7_blond{background-image:url(spritesmith-main-2.png);background-position:-1299px -1198px;width:60px;height:60px}.hair_base_7_blue{background-image:url(spritesmith-main-2.png);background-position:0 -1274px;width:90px;height:90px}.customize-option.hair_base_7_blue{background-image:url(spritesmith-main-2.png);background-position:-25px -1289px;width:60px;height:60px}.hair_base_7_brown{background-image:url(spritesmith-main-2.png);background-position:-91px -1274px;width:90px;height:90px}.customize-option.hair_base_7_brown{background-image:url(spritesmith-main-2.png);background-position:-116px -1289px;width:60px;height:60px}.hair_base_7_candycane{background-image:url(spritesmith-main-2.png);background-position:-182px -1274px;width:90px;height:90px}.customize-option.hair_base_7_candycane{background-image:url(spritesmith-main-2.png);background-position:-207px -1289px;width:60px;height:60px}.hair_base_7_candycorn{background-image:url(spritesmith-main-2.png);background-position:-273px -1274px;width:90px;height:90px}.customize-option.hair_base_7_candycorn{background-image:url(spritesmith-main-2.png);background-position:-298px -1289px;width:60px;height:60px}.hair_base_7_festive{background-image:url(spritesmith-main-2.png);background-position:-364px -1274px;width:90px;height:90px}.customize-option.hair_base_7_festive{background-image:url(spritesmith-main-2.png);background-position:-389px -1289px;width:60px;height:60px}.hair_base_7_frost{background-image:url(spritesmith-main-2.png);background-position:-455px -1274px;width:90px;height:90px}.customize-option.hair_base_7_frost{background-image:url(spritesmith-main-2.png);background-position:-480px -1289px;width:60px;height:60px}.hair_base_7_ghostwhite{background-image:url(spritesmith-main-2.png);background-position:-546px -1274px;width:90px;height:90px}.customize-option.hair_base_7_ghostwhite{background-image:url(spritesmith-main-2.png);background-position:-571px -1289px;width:60px;height:60px}.hair_base_7_green{background-image:url(spritesmith-main-2.png);background-position:-637px -1274px;width:90px;height:90px}.customize-option.hair_base_7_green{background-image:url(spritesmith-main-2.png);background-position:-662px -1289px;width:60px;height:60px}.hair_base_7_halloween{background-image:url(spritesmith-main-2.png);background-position:-728px -1274px;width:90px;height:90px}.customize-option.hair_base_7_halloween{background-image:url(spritesmith-main-2.png);background-position:-753px -1289px;width:60px;height:60px}.hair_base_7_holly{background-image:url(spritesmith-main-2.png);background-position:-819px -1274px;width:90px;height:90px}.customize-option.hair_base_7_holly{background-image:url(spritesmith-main-2.png);background-position:-844px -1289px;width:60px;height:60px}.hair_base_7_hollygreen{background-image:url(spritesmith-main-2.png);background-position:-910px -1274px;width:90px;height:90px}.customize-option.hair_base_7_hollygreen{background-image:url(spritesmith-main-2.png);background-position:-935px -1289px;width:60px;height:60px}.hair_base_7_midnight{background-image:url(spritesmith-main-2.png);background-position:-1001px -1274px;width:90px;height:90px}.customize-option.hair_base_7_midnight{background-image:url(spritesmith-main-2.png);background-position:-1026px -1289px;width:60px;height:60px}.hair_base_7_pblue{background-image:url(spritesmith-main-2.png);background-position:-1092px -1274px;width:90px;height:90px}.customize-option.hair_base_7_pblue{background-image:url(spritesmith-main-2.png);background-position:-1117px -1289px;width:60px;height:60px}.hair_base_7_pblue2{background-image:url(spritesmith-main-2.png);background-position:-1183px -1274px;width:90px;height:90px}.customize-option.hair_base_7_pblue2{background-image:url(spritesmith-main-2.png);background-position:-1208px -1289px;width:60px;height:60px}.hair_base_7_peppermint{background-image:url(spritesmith-main-2.png);background-position:-1274px -1274px;width:90px;height:90px}.customize-option.hair_base_7_peppermint{background-image:url(spritesmith-main-2.png);background-position:-1299px -1289px;width:60px;height:60px}.hair_base_7_pgreen{background-image:url(spritesmith-main-2.png);background-position:-1365px 0;width:90px;height:90px}.customize-option.hair_base_7_pgreen{background-image:url(spritesmith-main-2.png);background-position:-1390px -15px;width:60px;height:60px}.hair_base_7_pgreen2{background-image:url(spritesmith-main-2.png);background-position:-1365px -91px;width:90px;height:90px}.customize-option.hair_base_7_pgreen2{background-image:url(spritesmith-main-2.png);background-position:-1390px -106px;width:60px;height:60px}.hair_base_7_porange{background-image:url(spritesmith-main-2.png);background-position:-1365px -182px;width:90px;height:90px}.customize-option.hair_base_7_porange{background-image:url(spritesmith-main-2.png);background-position:-1390px -197px;width:60px;height:60px}.hair_base_7_porange2{background-image:url(spritesmith-main-2.png);background-position:-1365px -273px;width:90px;height:90px}.customize-option.hair_base_7_porange2{background-image:url(spritesmith-main-2.png);background-position:-1390px -288px;width:60px;height:60px}.hair_base_7_ppink{background-image:url(spritesmith-main-2.png);background-position:-1365px -364px;width:90px;height:90px}.customize-option.hair_base_7_ppink{background-image:url(spritesmith-main-2.png);background-position:-1390px -379px;width:60px;height:60px}.hair_base_7_ppink2{background-image:url(spritesmith-main-2.png);background-position:-1365px -455px;width:90px;height:90px}.customize-option.hair_base_7_ppink2{background-image:url(spritesmith-main-2.png);background-position:-1390px -470px;width:60px;height:60px}.hair_base_7_ppurple{background-image:url(spritesmith-main-2.png);background-position:-1365px -546px;width:90px;height:90px}.customize-option.hair_base_7_ppurple{background-image:url(spritesmith-main-2.png);background-position:-1390px -561px;width:60px;height:60px}.hair_base_7_ppurple2{background-image:url(spritesmith-main-2.png);background-position:-1365px -637px;width:90px;height:90px}.customize-option.hair_base_7_ppurple2{background-image:url(spritesmith-main-2.png);background-position:-1390px -652px;width:60px;height:60px}.hair_base_7_pumpkin{background-image:url(spritesmith-main-2.png);background-position:-1365px -728px;width:90px;height:90px}.customize-option.hair_base_7_pumpkin{background-image:url(spritesmith-main-2.png);background-position:-1390px -743px;width:60px;height:60px}.hair_base_7_purple{background-image:url(spritesmith-main-2.png);background-position:-1365px -819px;width:90px;height:90px}.customize-option.hair_base_7_purple{background-image:url(spritesmith-main-2.png);background-position:-1390px -834px;width:60px;height:60px}.hair_base_7_pyellow{background-image:url(spritesmith-main-2.png);background-position:-1365px -910px;width:90px;height:90px}.customize-option.hair_base_7_pyellow{background-image:url(spritesmith-main-2.png);background-position:-1390px -925px;width:60px;height:60px}.hair_base_7_pyellow2{background-image:url(spritesmith-main-2.png);background-position:-1365px -1001px;width:90px;height:90px}.customize-option.hair_base_7_pyellow2{background-image:url(spritesmith-main-2.png);background-position:-1390px -1016px;width:60px;height:60px}.hair_base_7_rainbow{background-image:url(spritesmith-main-2.png);background-position:-1365px -1092px;width:90px;height:90px}.customize-option.hair_base_7_rainbow{background-image:url(spritesmith-main-2.png);background-position:-1390px -1107px;width:60px;height:60px}.hair_base_7_red{background-image:url(spritesmith-main-2.png);background-position:-1365px -1183px;width:90px;height:90px}.customize-option.hair_base_7_red{background-image:url(spritesmith-main-2.png);background-position:-1390px -1198px;width:60px;height:60px}.hair_base_7_snowy{background-image:url(spritesmith-main-2.png);background-position:-1365px -1274px;width:90px;height:90px}.customize-option.hair_base_7_snowy{background-image:url(spritesmith-main-2.png);background-position:-1390px -1289px;width:60px;height:60px}.hair_base_7_white{background-image:url(spritesmith-main-2.png);background-position:0 -1365px;width:90px;height:90px}.customize-option.hair_base_7_white{background-image:url(spritesmith-main-2.png);background-position:-25px -1380px;width:60px;height:60px}.hair_base_7_winternight{background-image:url(spritesmith-main-2.png);background-position:-91px -1365px;width:90px;height:90px}.customize-option.hair_base_7_winternight{background-image:url(spritesmith-main-2.png);background-position:-116px -1380px;width:60px;height:60px}.hair_base_7_winterstar{background-image:url(spritesmith-main-2.png);background-position:-182px -1365px;width:90px;height:90px}.customize-option.hair_base_7_winterstar{background-image:url(spritesmith-main-2.png);background-position:-207px -1380px;width:60px;height:60px}.hair_base_7_yellow{background-image:url(spritesmith-main-2.png);background-position:-273px -1365px;width:90px;height:90px}.customize-option.hair_base_7_yellow{background-image:url(spritesmith-main-2.png);background-position:-298px -1380px;width:60px;height:60px}.hair_base_7_zombie{background-image:url(spritesmith-main-2.png);background-position:-364px -1365px;width:90px;height:90px}.customize-option.hair_base_7_zombie{background-image:url(spritesmith-main-2.png);background-position:-389px -1380px;width:60px;height:60px}.hair_base_8_TRUred{background-image:url(spritesmith-main-2.png);background-position:-455px -1365px;width:90px;height:90px}.customize-option.hair_base_8_TRUred{background-image:url(spritesmith-main-2.png);background-position:-480px -1380px;width:60px;height:60px}.hair_base_8_aurora{background-image:url(spritesmith-main-2.png);background-position:-546px -1365px;width:90px;height:90px}.customize-option.hair_base_8_aurora{background-image:url(spritesmith-main-2.png);background-position:-571px -1380px;width:60px;height:60px}.hair_base_8_black{background-image:url(spritesmith-main-2.png);background-position:-637px -1365px;width:90px;height:90px}.customize-option.hair_base_8_black{background-image:url(spritesmith-main-2.png);background-position:-662px -1380px;width:60px;height:60px}.hair_base_8_blond{background-image:url(spritesmith-main-2.png);background-position:-728px -1365px;width:90px;height:90px}.customize-option.hair_base_8_blond{background-image:url(spritesmith-main-2.png);background-position:-753px -1380px;width:60px;height:60px}.hair_base_8_blue{background-image:url(spritesmith-main-2.png);background-position:-819px -1365px;width:90px;height:90px}.customize-option.hair_base_8_blue{background-image:url(spritesmith-main-2.png);background-position:-844px -1380px;width:60px;height:60px}.hair_base_8_brown{background-image:url(spritesmith-main-2.png);background-position:-910px -1365px;width:90px;height:90px}.customize-option.hair_base_8_brown{background-image:url(spritesmith-main-2.png);background-position:-935px -1380px;width:60px;height:60px}.hair_base_8_candycane{background-image:url(spritesmith-main-2.png);background-position:-1001px -1365px;width:90px;height:90px}.customize-option.hair_base_8_candycane{background-image:url(spritesmith-main-2.png);background-position:-1026px -1380px;width:60px;height:60px}.hair_base_8_candycorn{background-image:url(spritesmith-main-2.png);background-position:-1092px -1365px;width:90px;height:90px}.customize-option.hair_base_8_candycorn{background-image:url(spritesmith-main-2.png);background-position:-1117px -1380px;width:60px;height:60px}.hair_base_8_festive{background-image:url(spritesmith-main-2.png);background-position:-1183px -1365px;width:90px;height:90px}.customize-option.hair_base_8_festive{background-image:url(spritesmith-main-2.png);background-position:-1208px -1380px;width:60px;height:60px}.hair_base_8_frost{background-image:url(spritesmith-main-2.png);background-position:-1274px -1365px;width:90px;height:90px}.customize-option.hair_base_8_frost{background-image:url(spritesmith-main-2.png);background-position:-1299px -1380px;width:60px;height:60px}.hair_base_8_ghostwhite{background-image:url(spritesmith-main-2.png);background-position:-1365px -1365px;width:90px;height:90px}.customize-option.hair_base_8_ghostwhite{background-image:url(spritesmith-main-2.png);background-position:-1390px -1380px;width:60px;height:60px}.hair_base_8_green{background-image:url(spritesmith-main-2.png);background-position:-1456px 0;width:90px;height:90px}.customize-option.hair_base_8_green{background-image:url(spritesmith-main-2.png);background-position:-1481px -15px;width:60px;height:60px}.hair_base_8_halloween{background-image:url(spritesmith-main-2.png);background-position:-1456px -91px;width:90px;height:90px}.customize-option.hair_base_8_halloween{background-image:url(spritesmith-main-2.png);background-position:-1481px -106px;width:60px;height:60px}.hair_base_8_holly{background-image:url(spritesmith-main-2.png);background-position:-1456px -182px;width:90px;height:90px}.customize-option.hair_base_8_holly{background-image:url(spritesmith-main-2.png);background-position:-1481px -197px;width:60px;height:60px}.hair_base_8_hollygreen{background-image:url(spritesmith-main-2.png);background-position:-1456px -273px;width:90px;height:90px}.customize-option.hair_base_8_hollygreen{background-image:url(spritesmith-main-2.png);background-position:-1481px -288px;width:60px;height:60px}.hair_base_8_midnight{background-image:url(spritesmith-main-2.png);background-position:-1456px -364px;width:90px;height:90px}.customize-option.hair_base_8_midnight{background-image:url(spritesmith-main-2.png);background-position:-1481px -379px;width:60px;height:60px}.hair_base_8_pblue{background-image:url(spritesmith-main-2.png);background-position:-1456px -455px;width:90px;height:90px}.customize-option.hair_base_8_pblue{background-image:url(spritesmith-main-2.png);background-position:-1481px -470px;width:60px;height:60px}.hair_base_8_pblue2{background-image:url(spritesmith-main-2.png);background-position:-1456px -546px;width:90px;height:90px}.customize-option.hair_base_8_pblue2{background-image:url(spritesmith-main-2.png);background-position:-1481px -561px;width:60px;height:60px}.hair_base_8_peppermint{background-image:url(spritesmith-main-2.png);background-position:-1456px -637px;width:90px;height:90px}.customize-option.hair_base_8_peppermint{background-image:url(spritesmith-main-2.png);background-position:-1481px -652px;width:60px;height:60px}.hair_base_8_pgreen{background-image:url(spritesmith-main-2.png);background-position:-1456px -728px;width:90px;height:90px}.customize-option.hair_base_8_pgreen{background-image:url(spritesmith-main-2.png);background-position:-1481px -743px;width:60px;height:60px}.hair_base_8_pgreen2{background-image:url(spritesmith-main-2.png);background-position:-1456px -819px;width:90px;height:90px}.customize-option.hair_base_8_pgreen2{background-image:url(spritesmith-main-2.png);background-position:-1481px -834px;width:60px;height:60px}.hair_base_8_porange{background-image:url(spritesmith-main-2.png);background-position:-1456px -910px;width:90px;height:90px}.customize-option.hair_base_8_porange{background-image:url(spritesmith-main-2.png);background-position:-1481px -925px;width:60px;height:60px}.hair_base_8_porange2{background-image:url(spritesmith-main-2.png);background-position:-1456px -1001px;width:90px;height:90px}.customize-option.hair_base_8_porange2{background-image:url(spritesmith-main-2.png);background-position:-1481px -1016px;width:60px;height:60px}.hair_base_8_ppink{background-image:url(spritesmith-main-2.png);background-position:-1456px -1092px;width:90px;height:90px}.customize-option.hair_base_8_ppink{background-image:url(spritesmith-main-2.png);background-position:-1481px -1107px;width:60px;height:60px}.hair_base_8_ppink2{background-image:url(spritesmith-main-2.png);background-position:-1456px -1183px;width:90px;height:90px}.customize-option.hair_base_8_ppink2{background-image:url(spritesmith-main-2.png);background-position:-1481px -1198px;width:60px;height:60px}.hair_base_8_ppurple{background-image:url(spritesmith-main-2.png);background-position:-1456px -1274px;width:90px;height:90px}.customize-option.hair_base_8_ppurple{background-image:url(spritesmith-main-2.png);background-position:-1481px -1289px;width:60px;height:60px}.hair_base_8_ppurple2{background-image:url(spritesmith-main-2.png);background-position:-1456px -1365px;width:90px;height:90px}.customize-option.hair_base_8_ppurple2{background-image:url(spritesmith-main-2.png);background-position:-1481px -1380px;width:60px;height:60px}.hair_base_8_pumpkin{background-image:url(spritesmith-main-2.png);background-position:0 -1456px;width:90px;height:90px}.customize-option.hair_base_8_pumpkin{background-image:url(spritesmith-main-2.png);background-position:-25px -1471px;width:60px;height:60px}.hair_base_8_purple{background-image:url(spritesmith-main-2.png);background-position:-91px -1456px;width:90px;height:90px}.customize-option.hair_base_8_purple{background-image:url(spritesmith-main-2.png);background-position:-116px -1471px;width:60px;height:60px}.hair_base_8_pyellow{background-image:url(spritesmith-main-2.png);background-position:-182px -1456px;width:90px;height:90px}.customize-option.hair_base_8_pyellow{background-image:url(spritesmith-main-2.png);background-position:-207px -1471px;width:60px;height:60px}.hair_base_8_pyellow2{background-image:url(spritesmith-main-2.png);background-position:-273px -1456px;width:90px;height:90px}.customize-option.hair_base_8_pyellow2{background-image:url(spritesmith-main-2.png);background-position:-298px -1471px;width:60px;height:60px}.hair_base_8_rainbow{background-image:url(spritesmith-main-2.png);background-position:-364px -1456px;width:90px;height:90px}.customize-option.hair_base_8_rainbow{background-image:url(spritesmith-main-2.png);background-position:-389px -1471px;width:60px;height:60px}.hair_base_8_red{background-image:url(spritesmith-main-2.png);background-position:-455px -1456px;width:90px;height:90px}.customize-option.hair_base_8_red{background-image:url(spritesmith-main-2.png);background-position:-480px -1471px;width:60px;height:60px}.hair_base_8_snowy{background-image:url(spritesmith-main-2.png);background-position:-546px -1456px;width:90px;height:90px}.customize-option.hair_base_8_snowy{background-image:url(spritesmith-main-2.png);background-position:-571px -1471px;width:60px;height:60px}.hair_base_8_white{background-image:url(spritesmith-main-2.png);background-position:-637px -1456px;width:90px;height:90px}.customize-option.hair_base_8_white{background-image:url(spritesmith-main-2.png);background-position:-662px -1471px;width:60px;height:60px}.hair_base_8_winternight{background-image:url(spritesmith-main-2.png);background-position:-728px -1456px;width:90px;height:90px}.customize-option.hair_base_8_winternight{background-image:url(spritesmith-main-2.png);background-position:-753px -1471px;width:60px;height:60px}.hair_base_8_winterstar{background-image:url(spritesmith-main-2.png);background-position:-819px -1456px;width:90px;height:90px}.customize-option.hair_base_8_winterstar{background-image:url(spritesmith-main-2.png);background-position:-844px -1471px;width:60px;height:60px}.hair_base_8_yellow{background-image:url(spritesmith-main-2.png);background-position:-910px -1456px;width:90px;height:90px}.customize-option.hair_base_8_yellow{background-image:url(spritesmith-main-2.png);background-position:-935px -1471px;width:60px;height:60px}.hair_base_8_zombie{background-image:url(spritesmith-main-2.png);background-position:-1001px -1456px;width:90px;height:90px}.customize-option.hair_base_8_zombie{background-image:url(spritesmith-main-2.png);background-position:-1026px -1471px;width:60px;height:60px}.hair_base_9_TRUred{background-image:url(spritesmith-main-2.png);background-position:-1092px -1456px;width:90px;height:90px}.customize-option.hair_base_9_TRUred{background-image:url(spritesmith-main-2.png);background-position:-1117px -1471px;width:60px;height:60px}.hair_base_9_aurora{background-image:url(spritesmith-main-2.png);background-position:-1183px -1456px;width:90px;height:90px}.customize-option.hair_base_9_aurora{background-image:url(spritesmith-main-2.png);background-position:-1208px -1471px;width:60px;height:60px}.hair_base_9_black{background-image:url(spritesmith-main-2.png);background-position:-1274px -1456px;width:90px;height:90px}.customize-option.hair_base_9_black{background-image:url(spritesmith-main-2.png);background-position:-1299px -1471px;width:60px;height:60px}.hair_base_9_blond{background-image:url(spritesmith-main-2.png);background-position:-1365px -1456px;width:90px;height:90px}.customize-option.hair_base_9_blond{background-image:url(spritesmith-main-2.png);background-position:-1390px -1471px;width:60px;height:60px}.hair_base_9_blue{background-image:url(spritesmith-main-2.png);background-position:-1456px -1456px;width:90px;height:90px}.customize-option.hair_base_9_blue{background-image:url(spritesmith-main-2.png);background-position:-1481px -1471px;width:60px;height:60px}.hair_base_9_brown{background-image:url(spritesmith-main-2.png);background-position:-1547px 0;width:90px;height:90px}.customize-option.hair_base_9_brown{background-image:url(spritesmith-main-2.png);background-position:-1572px -15px;width:60px;height:60px}.hair_base_9_candycane{background-image:url(spritesmith-main-2.png);background-position:-1547px -91px;width:90px;height:90px}.customize-option.hair_base_9_candycane{background-image:url(spritesmith-main-2.png);background-position:-1572px -106px;width:60px;height:60px}.hair_base_9_candycorn{background-image:url(spritesmith-main-2.png);background-position:-1547px -182px;width:90px;height:90px}.customize-option.hair_base_9_candycorn{background-image:url(spritesmith-main-2.png);background-position:-1572px -197px;width:60px;height:60px}.hair_base_9_festive{background-image:url(spritesmith-main-2.png);background-position:-1547px -273px;width:90px;height:90px}.customize-option.hair_base_9_festive{background-image:url(spritesmith-main-2.png);background-position:-1572px -288px;width:60px;height:60px}.hair_base_9_frost{background-image:url(spritesmith-main-2.png);background-position:-1547px -364px;width:90px;height:90px}.customize-option.hair_base_9_frost{background-image:url(spritesmith-main-2.png);background-position:-1572px -379px;width:60px;height:60px}.hair_base_9_ghostwhite{background-image:url(spritesmith-main-2.png);background-position:-1547px -455px;width:90px;height:90px}.customize-option.hair_base_9_ghostwhite{background-image:url(spritesmith-main-2.png);background-position:-1572px -470px;width:60px;height:60px}.hair_base_9_green{background-image:url(spritesmith-main-2.png);background-position:-1547px -546px;width:90px;height:90px}.customize-option.hair_base_9_green{background-image:url(spritesmith-main-2.png);background-position:-1572px -561px;width:60px;height:60px}.hair_base_9_halloween{background-image:url(spritesmith-main-2.png);background-position:-1547px -637px;width:90px;height:90px}.customize-option.hair_base_9_halloween{background-image:url(spritesmith-main-2.png);background-position:-1572px -652px;width:60px;height:60px}.hair_base_9_holly{background-image:url(spritesmith-main-2.png);background-position:-1547px -728px;width:90px;height:90px}.customize-option.hair_base_9_holly{background-image:url(spritesmith-main-2.png);background-position:-1572px -743px;width:60px;height:60px}.hair_base_9_hollygreen{background-image:url(spritesmith-main-2.png);background-position:-1547px -819px;width:90px;height:90px}.customize-option.hair_base_9_hollygreen{background-image:url(spritesmith-main-2.png);background-position:-1572px -834px;width:60px;height:60px}.hair_base_9_midnight{background-image:url(spritesmith-main-2.png);background-position:-1547px -910px;width:90px;height:90px}.customize-option.hair_base_9_midnight{background-image:url(spritesmith-main-2.png);background-position:-1572px -925px;width:60px;height:60px}.hair_base_9_pblue{background-image:url(spritesmith-main-2.png);background-position:-1547px -1001px;width:90px;height:90px}.customize-option.hair_base_9_pblue{background-image:url(spritesmith-main-2.png);background-position:-1572px -1016px;width:60px;height:60px}.hair_base_9_pblue2{background-image:url(spritesmith-main-2.png);background-position:-1547px -1092px;width:90px;height:90px}.customize-option.hair_base_9_pblue2{background-image:url(spritesmith-main-2.png);background-position:-1572px -1107px;width:60px;height:60px}.hair_base_9_peppermint{background-image:url(spritesmith-main-2.png);background-position:-1547px -1183px;width:90px;height:90px}.customize-option.hair_base_9_peppermint{background-image:url(spritesmith-main-2.png);background-position:-1572px -1198px;width:60px;height:60px}.hair_base_9_pgreen{background-image:url(spritesmith-main-2.png);background-position:-1547px -1274px;width:90px;height:90px}.customize-option.hair_base_9_pgreen{background-image:url(spritesmith-main-2.png);background-position:-1572px -1289px;width:60px;height:60px}.hair_base_9_pgreen2{background-image:url(spritesmith-main-2.png);background-position:-1547px -1365px;width:90px;height:90px}.customize-option.hair_base_9_pgreen2{background-image:url(spritesmith-main-2.png);background-position:-1572px -1380px;width:60px;height:60px}.hair_base_9_porange{background-image:url(spritesmith-main-2.png);background-position:-1547px -1456px;width:90px;height:90px}.customize-option.hair_base_9_porange{background-image:url(spritesmith-main-2.png);background-position:-1572px -1471px;width:60px;height:60px}.hair_base_9_porange2{background-image:url(spritesmith-main-2.png);background-position:0 -1547px;width:90px;height:90px}.customize-option.hair_base_9_porange2{background-image:url(spritesmith-main-2.png);background-position:-25px -1562px;width:60px;height:60px}.hair_base_9_ppink{background-image:url(spritesmith-main-2.png);background-position:-91px -1547px;width:90px;height:90px}.customize-option.hair_base_9_ppink{background-image:url(spritesmith-main-2.png);background-position:-116px -1562px;width:60px;height:60px}.hair_base_9_ppink2{background-image:url(spritesmith-main-2.png);background-position:-182px -1547px;width:90px;height:90px}.customize-option.hair_base_9_ppink2{background-image:url(spritesmith-main-2.png);background-position:-207px -1562px;width:60px;height:60px}.hair_base_9_ppurple{background-image:url(spritesmith-main-2.png);background-position:-273px -1547px;width:90px;height:90px}.customize-option.hair_base_9_ppurple{background-image:url(spritesmith-main-2.png);background-position:-298px -1562px;width:60px;height:60px}.hair_base_9_ppurple2{background-image:url(spritesmith-main-2.png);background-position:-364px -1547px;width:90px;height:90px}.customize-option.hair_base_9_ppurple2{background-image:url(spritesmith-main-2.png);background-position:-389px -1562px;width:60px;height:60px}.hair_base_9_pumpkin{background-image:url(spritesmith-main-2.png);background-position:-455px -1547px;width:90px;height:90px}.customize-option.hair_base_9_pumpkin{background-image:url(spritesmith-main-2.png);background-position:-480px -1562px;width:60px;height:60px}.hair_base_9_purple{background-image:url(spritesmith-main-2.png);background-position:-546px -1547px;width:90px;height:90px}.customize-option.hair_base_9_purple{background-image:url(spritesmith-main-2.png);background-position:-571px -1562px;width:60px;height:60px}.hair_base_9_pyellow{background-image:url(spritesmith-main-2.png);background-position:-637px -1547px;width:90px;height:90px}.customize-option.hair_base_9_pyellow{background-image:url(spritesmith-main-2.png);background-position:-662px -1562px;width:60px;height:60px}.hair_base_9_pyellow2{background-image:url(spritesmith-main-2.png);background-position:-728px -1547px;width:90px;height:90px}.customize-option.hair_base_9_pyellow2{background-image:url(spritesmith-main-2.png);background-position:-753px -1562px;width:60px;height:60px}.hair_base_9_rainbow{background-image:url(spritesmith-main-2.png);background-position:-819px -1547px;width:90px;height:90px}.customize-option.hair_base_9_rainbow{background-image:url(spritesmith-main-2.png);background-position:-844px -1562px;width:60px;height:60px}.hair_base_9_red{background-image:url(spritesmith-main-2.png);background-position:-910px -1547px;width:90px;height:90px}.customize-option.hair_base_9_red{background-image:url(spritesmith-main-2.png);background-position:-935px -1562px;width:60px;height:60px}.hair_base_9_snowy{background-image:url(spritesmith-main-2.png);background-position:-1001px -1547px;width:90px;height:90px}.customize-option.hair_base_9_snowy{background-image:url(spritesmith-main-2.png);background-position:-1026px -1562px;width:60px;height:60px}.hair_base_9_white{background-image:url(spritesmith-main-2.png);background-position:-1092px -1547px;width:90px;height:90px}.customize-option.hair_base_9_white{background-image:url(spritesmith-main-2.png);background-position:-1117px -1562px;width:60px;height:60px}.hair_base_9_winternight{background-image:url(spritesmith-main-2.png);background-position:-1183px -1547px;width:90px;height:90px}.customize-option.hair_base_9_winternight{background-image:url(spritesmith-main-2.png);background-position:-1208px -1562px;width:60px;height:60px}.hair_base_9_winterstar{background-image:url(spritesmith-main-2.png);background-position:-1274px -1547px;width:90px;height:90px}.customize-option.hair_base_9_winterstar{background-image:url(spritesmith-main-2.png);background-position:-1299px -1562px;width:60px;height:60px}.hair_base_9_yellow{background-image:url(spritesmith-main-2.png);background-position:-1365px -1547px;width:90px;height:90px}.customize-option.hair_base_9_yellow{background-image:url(spritesmith-main-2.png);background-position:-1390px -1562px;width:60px;height:60px}.hair_base_9_zombie{background-image:url(spritesmith-main-2.png);background-position:-1456px -1547px;width:90px;height:90px}.customize-option.hair_base_9_zombie{background-image:url(spritesmith-main-2.png);background-position:-1481px -1562px;width:60px;height:60px}.hair_beard_1_pblue2{background-image:url(spritesmith-main-2.png);background-position:-1547px -1547px;width:90px;height:90px}.customize-option.hair_beard_1_pblue2{background-image:url(spritesmith-main-2.png);background-position:-1572px -1562px;width:60px;height:60px}.hair_beard_1_pgreen2{background-image:url(spritesmith-main-2.png);background-position:-1638px 0;width:90px;height:90px}.customize-option.hair_beard_1_pgreen2{background-image:url(spritesmith-main-2.png);background-position:-1663px -15px;width:60px;height:60px}.hair_beard_1_porange2{background-image:url(spritesmith-main-2.png);background-position:-1638px -91px;width:90px;height:90px}.customize-option.hair_beard_1_porange2{background-image:url(spritesmith-main-2.png);background-position:-1663px -106px;width:60px;height:60px}.hair_beard_1_ppink2{background-image:url(spritesmith-main-2.png);background-position:-1638px -182px;width:90px;height:90px}.customize-option.hair_beard_1_ppink2{background-image:url(spritesmith-main-2.png);background-position:-1663px -197px;width:60px;height:60px}.hair_beard_1_ppurple2{background-image:url(spritesmith-main-2.png);background-position:-1638px -273px;width:90px;height:90px}.customize-option.hair_beard_1_ppurple2{background-image:url(spritesmith-main-2.png);background-position:-1663px -288px;width:60px;height:60px}.hair_beard_1_pyellow2{background-image:url(spritesmith-main-2.png);background-position:-1638px -364px;width:90px;height:90px}.customize-option.hair_beard_1_pyellow2{background-image:url(spritesmith-main-2.png);background-position:-1663px -379px;width:60px;height:60px}.hair_beard_2_pblue2{background-image:url(spritesmith-main-3.png);background-position:-454px -273px;width:90px;height:90px}.customize-option.hair_beard_2_pblue2{background-image:url(spritesmith-main-3.png);background-position:-479px -288px;width:60px;height:60px}.hair_beard_2_pgreen2{background-image:url(spritesmith-main-3.png);background-position:-1276px -728px;width:90px;height:90px}.customize-option.hair_beard_2_pgreen2{background-image:url(spritesmith-main-3.png);background-position:-1301px -743px;width:60px;height:60px}.hair_beard_2_porange2{background-image:url(spritesmith-main-3.png);background-position:-1276px -1092px;width:90px;height:90px}.customize-option.hair_beard_2_porange2{background-image:url(spritesmith-main-3.png);background-position:-1301px -1107px;width:60px;height:60px}.hair_beard_2_ppink2{background-image:url(spritesmith-main-3.png);background-position:-182px -1274px;width:90px;height:90px}.customize-option.hair_beard_2_ppink2{background-image:url(spritesmith-main-3.png);background-position:-207px -1289px;width:60px;height:60px}.hair_beard_2_ppurple2{background-image:url(spritesmith-main-3.png);background-position:-273px -1274px;width:90px;height:90px}.customize-option.hair_beard_2_ppurple2{background-image:url(spritesmith-main-3.png);background-position:-298px -1289px;width:60px;height:60px}.hair_beard_2_pyellow2{background-image:url(spritesmith-main-3.png);background-position:-455px -1274px;width:90px;height:90px}.customize-option.hair_beard_2_pyellow2{background-image:url(spritesmith-main-3.png);background-position:-480px -1289px;width:60px;height:60px}.hair_beard_3_pblue2{background-image:url(spritesmith-main-3.png);background-position:-546px -1274px;width:90px;height:90px}.customize-option.hair_beard_3_pblue2{background-image:url(spritesmith-main-3.png);background-position:-571px -1289px;width:60px;height:60px}.hair_beard_3_pgreen2{background-image:url(spritesmith-main-3.png);background-position:-910px -1274px;width:90px;height:90px}.customize-option.hair_beard_3_pgreen2{background-image:url(spritesmith-main-3.png);background-position:-935px -1289px;width:60px;height:60px}.hair_beard_3_porange2{background-image:url(spritesmith-main-3.png);background-position:-1001px -1274px;width:90px;height:90px}.customize-option.hair_beard_3_porange2{background-image:url(spritesmith-main-3.png);background-position:-1026px -1289px;width:60px;height:60px}.hair_beard_3_ppink2{background-image:url(spritesmith-main-3.png);background-position:-1183px -1274px;width:90px;height:90px}.customize-option.hair_beard_3_ppink2{background-image:url(spritesmith-main-3.png);background-position:-1208px -1289px;width:60px;height:60px}.hair_beard_3_ppurple2{background-image:url(spritesmith-main-3.png);background-position:-1367px -91px;width:90px;height:90px}.customize-option.hair_beard_3_ppurple2{background-image:url(spritesmith-main-3.png);background-position:-1392px -106px;width:60px;height:60px}.hair_beard_3_pyellow2{background-image:url(spritesmith-main-3.png);background-position:-1367px -182px;width:90px;height:90px}.customize-option.hair_beard_3_pyellow2{background-image:url(spritesmith-main-3.png);background-position:-1392px -197px;width:60px;height:60px}.hair_mustache_1_pblue2{background-image:url(spritesmith-main-3.png);background-position:-1367px -364px;width:90px;height:90px}.customize-option.hair_mustache_1_pblue2{background-image:url(spritesmith-main-3.png);background-position:-1392px -379px;width:60px;height:60px}.hair_mustache_1_pgreen2{background-image:url(spritesmith-main-3.png);background-position:-1367px -455px;width:90px;height:90px}.customize-option.hair_mustache_1_pgreen2{background-image:url(spritesmith-main-3.png);background-position:-1392px -470px;width:60px;height:60px}.hair_mustache_1_porange2{background-image:url(spritesmith-main-3.png);background-position:0 -1456px;width:90px;height:90px}.customize-option.hair_mustache_1_porange2{background-image:url(spritesmith-main-3.png);background-position:-25px -1471px;width:60px;height:60px}.hair_mustache_1_ppink2{background-image:url(spritesmith-main-3.png);background-position:-91px -1456px;width:90px;height:90px}.customize-option.hair_mustache_1_ppink2{background-image:url(spritesmith-main-3.png);background-position:-116px -1471px;width:60px;height:60px}.hair_mustache_1_ppurple2{background-image:url(spritesmith-main-3.png);background-position:-273px -1456px;width:90px;height:90px}.customize-option.hair_mustache_1_ppurple2{background-image:url(spritesmith-main-3.png);background-position:-298px -1471px;width:60px;height:60px}.hair_mustache_1_pyellow2{background-image:url(spritesmith-main-3.png);background-position:-364px -1456px;width:90px;height:90px}.customize-option.hair_mustache_1_pyellow2{background-image:url(spritesmith-main-3.png);background-position:-389px -1471px;width:60px;height:60px}.hair_mustache_2_pblue2{background-image:url(spritesmith-main-3.png);background-position:-728px -1456px;width:90px;height:90px}.customize-option.hair_mustache_2_pblue2{background-image:url(spritesmith-main-3.png);background-position:-753px -1471px;width:60px;height:60px}.hair_mustache_2_pgreen2{background-image:url(spritesmith-main-3.png);background-position:-819px -1456px;width:90px;height:90px}.customize-option.hair_mustache_2_pgreen2{background-image:url(spritesmith-main-3.png);background-position:-844px -1471px;width:60px;height:60px}.hair_mustache_2_porange2{background-image:url(spritesmith-main-3.png);background-position:0 -364px;width:90px;height:90px}.customize-option.hair_mustache_2_porange2{background-image:url(spritesmith-main-3.png);background-position:-25px -379px;width:60px;height:60px}.hair_mustache_2_ppink2{background-image:url(spritesmith-main-3.png);background-position:-91px -364px;width:90px;height:90px}.customize-option.hair_mustache_2_ppink2{background-image:url(spritesmith-main-3.png);background-position:-116px -379px;width:60px;height:60px}.hair_mustache_2_ppurple2{background-image:url(spritesmith-main-3.png);background-position:-182px -364px;width:90px;height:90px}.customize-option.hair_mustache_2_ppurple2{background-image:url(spritesmith-main-3.png);background-position:-207px -379px;width:60px;height:60px}.hair_mustache_2_pyellow2{background-image:url(spritesmith-main-3.png);background-position:-273px -364px;width:90px;height:90px}.customize-option.hair_mustache_2_pyellow2{background-image:url(spritesmith-main-3.png);background-position:-298px -379px;width:60px;height:60px}.broad_shirt_black{background-image:url(spritesmith-main-3.png);background-position:-364px -364px;width:90px;height:90px}.customize-option.broad_shirt_black{background-image:url(spritesmith-main-3.png);background-position:-389px -394px;width:60px;height:60px}.broad_shirt_blue{background-image:url(spritesmith-main-3.png);background-position:-455px -364px;width:90px;height:90px}.customize-option.broad_shirt_blue{background-image:url(spritesmith-main-3.png);background-position:-480px -394px;width:60px;height:60px}.broad_shirt_convict{background-image:url(spritesmith-main-3.png);background-position:0 -455px;width:90px;height:90px}.customize-option.broad_shirt_convict{background-image:url(spritesmith-main-3.png);background-position:-25px -485px;width:60px;height:60px}.broad_shirt_cross{background-image:url(spritesmith-main-3.png);background-position:-91px -455px;width:90px;height:90px}.customize-option.broad_shirt_cross{background-image:url(spritesmith-main-3.png);background-position:-116px -485px;width:60px;height:60px}.broad_shirt_fire{background-image:url(spritesmith-main-3.png);background-position:-182px -455px;width:90px;height:90px}.customize-option.broad_shirt_fire{background-image:url(spritesmith-main-3.png);background-position:-207px -485px;width:60px;height:60px}.broad_shirt_green{background-image:url(spritesmith-main-3.png);background-position:-273px -455px;width:90px;height:90px}.customize-option.broad_shirt_green{background-image:url(spritesmith-main-3.png);background-position:-298px -485px;width:60px;height:60px}.broad_shirt_horizon{background-image:url(spritesmith-main-3.png);background-position:-364px -455px;width:90px;height:90px}.customize-option.broad_shirt_horizon{background-image:url(spritesmith-main-3.png);background-position:-389px -485px;width:60px;height:60px}.broad_shirt_ocean{background-image:url(spritesmith-main-3.png);background-position:-455px -455px;width:90px;height:90px}.customize-option.broad_shirt_ocean{background-image:url(spritesmith-main-3.png);background-position:-480px -485px;width:60px;height:60px}.broad_shirt_pink{background-image:url(spritesmith-main-3.png);background-position:-548px 0;width:90px;height:90px}.customize-option.broad_shirt_pink{background-image:url(spritesmith-main-3.png);background-position:-573px -30px;width:60px;height:60px}.broad_shirt_purple{background-image:url(spritesmith-main-3.png);background-position:-548px -91px;width:90px;height:90px}.customize-option.broad_shirt_purple{background-image:url(spritesmith-main-3.png);background-position:-573px -121px;width:60px;height:60px}.broad_shirt_rainbow{background-image:url(spritesmith-main-3.png);background-position:-548px -182px;width:90px;height:90px}.customize-option.broad_shirt_rainbow{background-image:url(spritesmith-main-3.png);background-position:-573px -212px;width:60px;height:60px}.broad_shirt_redblue{background-image:url(spritesmith-main-3.png);background-position:-548px -273px;width:90px;height:90px}.customize-option.broad_shirt_redblue{background-image:url(spritesmith-main-3.png);background-position:-573px -303px;width:60px;height:60px}.broad_shirt_thunder{background-image:url(spritesmith-main-3.png);background-position:-548px -364px;width:90px;height:90px}.customize-option.broad_shirt_thunder{background-image:url(spritesmith-main-3.png);background-position:-573px -394px;width:60px;height:60px}.broad_shirt_tropical{background-image:url(spritesmith-main-3.png);background-position:-548px -455px;width:90px;height:90px}.customize-option.broad_shirt_tropical{background-image:url(spritesmith-main-3.png);background-position:-573px -485px;width:60px;height:60px}.broad_shirt_white{background-image:url(spritesmith-main-3.png);background-position:0 -546px;width:90px;height:90px}.customize-option.broad_shirt_white{background-image:url(spritesmith-main-3.png);background-position:-25px -576px;width:60px;height:60px}.broad_shirt_yellow{background-image:url(spritesmith-main-3.png);background-position:-91px -546px;width:90px;height:90px}.customize-option.broad_shirt_yellow{background-image:url(spritesmith-main-3.png);background-position:-116px -576px;width:60px;height:60px}.broad_shirt_zombie{background-image:url(spritesmith-main-3.png);background-position:-182px -546px;width:90px;height:90px}.customize-option.broad_shirt_zombie{background-image:url(spritesmith-main-3.png);background-position:-207px -576px;width:60px;height:60px}.slim_shirt_black{background-image:url(spritesmith-main-3.png);background-position:-273px -546px;width:90px;height:90px}.customize-option.slim_shirt_black{background-image:url(spritesmith-main-3.png);background-position:-298px -576px;width:60px;height:60px}.slim_shirt_blue{background-image:url(spritesmith-main-3.png);background-position:-364px -546px;width:90px;height:90px}.customize-option.slim_shirt_blue{background-image:url(spritesmith-main-3.png);background-position:-389px -576px;width:60px;height:60px}.slim_shirt_convict{background-image:url(spritesmith-main-3.png);background-position:-455px -546px;width:90px;height:90px}.customize-option.slim_shirt_convict{background-image:url(spritesmith-main-3.png);background-position:-480px -576px;width:60px;height:60px}.slim_shirt_cross{background-image:url(spritesmith-main-3.png);background-position:-546px -546px;width:90px;height:90px}.customize-option.slim_shirt_cross{background-image:url(spritesmith-main-3.png);background-position:-571px -576px;width:60px;height:60px}.slim_shirt_fire{background-image:url(spritesmith-main-3.png);background-position:-639px 0;width:90px;height:90px}.customize-option.slim_shirt_fire{background-image:url(spritesmith-main-3.png);background-position:-664px -30px;width:60px;height:60px}.slim_shirt_green{background-image:url(spritesmith-main-3.png);background-position:-639px -91px;width:90px;height:90px}.customize-option.slim_shirt_green{background-image:url(spritesmith-main-3.png);background-position:-664px -121px;width:60px;height:60px}.slim_shirt_horizon{background-image:url(spritesmith-main-3.png);background-position:-639px -182px;width:90px;height:90px}.customize-option.slim_shirt_horizon{background-image:url(spritesmith-main-3.png);background-position:-664px -212px;width:60px;height:60px}.slim_shirt_ocean{background-image:url(spritesmith-main-3.png);background-position:-639px -273px;width:90px;height:90px}.customize-option.slim_shirt_ocean{background-image:url(spritesmith-main-3.png);background-position:-664px -303px;width:60px;height:60px}.slim_shirt_pink{background-image:url(spritesmith-main-3.png);background-position:-639px -364px;width:90px;height:90px}.customize-option.slim_shirt_pink{background-image:url(spritesmith-main-3.png);background-position:-664px -394px;width:60px;height:60px}.slim_shirt_purple{background-image:url(spritesmith-main-3.png);background-position:-639px -455px;width:90px;height:90px}.customize-option.slim_shirt_purple{background-image:url(spritesmith-main-3.png);background-position:-664px -485px;width:60px;height:60px}.slim_shirt_rainbow{background-image:url(spritesmith-main-3.png);background-position:-639px -546px;width:90px;height:90px}.customize-option.slim_shirt_rainbow{background-image:url(spritesmith-main-3.png);background-position:-664px -576px;width:60px;height:60px}.slim_shirt_redblue{background-image:url(spritesmith-main-3.png);background-position:0 -637px;width:90px;height:90px}.customize-option.slim_shirt_redblue{background-image:url(spritesmith-main-3.png);background-position:-25px -667px;width:60px;height:60px}.slim_shirt_thunder{background-image:url(spritesmith-main-3.png);background-position:-91px -637px;width:90px;height:90px}.customize-option.slim_shirt_thunder{background-image:url(spritesmith-main-3.png);background-position:-116px -667px;width:60px;height:60px}.slim_shirt_tropical{background-image:url(spritesmith-main-3.png);background-position:-182px -637px;width:90px;height:90px}.customize-option.slim_shirt_tropical{background-image:url(spritesmith-main-3.png);background-position:-207px -667px;width:60px;height:60px}.slim_shirt_white{background-image:url(spritesmith-main-3.png);background-position:-273px -637px;width:90px;height:90px}.customize-option.slim_shirt_white{background-image:url(spritesmith-main-3.png);background-position:-298px -667px;width:60px;height:60px}.slim_shirt_yellow{background-image:url(spritesmith-main-3.png);background-position:-364px -637px;width:90px;height:90px}.customize-option.slim_shirt_yellow{background-image:url(spritesmith-main-3.png);background-position:-389px -667px;width:60px;height:60px}.slim_shirt_zombie{background-image:url(spritesmith-main-3.png);background-position:-455px -637px;width:90px;height:90px}.customize-option.slim_shirt_zombie{background-image:url(spritesmith-main-3.png);background-position:-480px -667px;width:60px;height:60px}.skin_0ff591{background-image:url(spritesmith-main-3.png);background-position:-546px -637px;width:90px;height:90px}.customize-option.skin_0ff591{background-image:url(spritesmith-main-3.png);background-position:-571px -652px;width:60px;height:60px}.skin_0ff591_sleep{background-image:url(spritesmith-main-3.png);background-position:-637px -637px;width:90px;height:90px}.customize-option.skin_0ff591_sleep{background-image:url(spritesmith-main-3.png);background-position:-662px -652px;width:60px;height:60px}.skin_2b43f6{background-image:url(spritesmith-main-3.png);background-position:-730px 0;width:90px;height:90px}.customize-option.skin_2b43f6{background-image:url(spritesmith-main-3.png);background-position:-755px -15px;width:60px;height:60px}.skin_2b43f6_sleep{background-image:url(spritesmith-main-3.png);background-position:-730px -91px;width:90px;height:90px}.customize-option.skin_2b43f6_sleep{background-image:url(spritesmith-main-3.png);background-position:-755px -106px;width:60px;height:60px}.skin_6bd049{background-image:url(spritesmith-main-3.png);background-position:-730px -182px;width:90px;height:90px}.customize-option.skin_6bd049{background-image:url(spritesmith-main-3.png);background-position:-755px -197px;width:60px;height:60px}.skin_6bd049_sleep{background-image:url(spritesmith-main-3.png);background-position:-730px -273px;width:90px;height:90px}.customize-option.skin_6bd049_sleep{background-image:url(spritesmith-main-3.png);background-position:-755px -288px;width:60px;height:60px}.skin_800ed0{background-image:url(spritesmith-main-3.png);background-position:-730px -364px;width:90px;height:90px}.customize-option.skin_800ed0{background-image:url(spritesmith-main-3.png);background-position:-755px -379px;width:60px;height:60px}.skin_800ed0_sleep{background-image:url(spritesmith-main-3.png);background-position:-730px -455px;width:90px;height:90px}.customize-option.skin_800ed0_sleep{background-image:url(spritesmith-main-3.png);background-position:-755px -470px;width:60px;height:60px}.skin_915533{background-image:url(spritesmith-main-3.png);background-position:-730px -546px;width:90px;height:90px}.customize-option.skin_915533{background-image:url(spritesmith-main-3.png);background-position:-755px -561px;width:60px;height:60px}.skin_915533_sleep{background-image:url(spritesmith-main-3.png);background-position:-730px -637px;width:90px;height:90px}.customize-option.skin_915533_sleep{background-image:url(spritesmith-main-3.png);background-position:-755px -652px;width:60px;height:60px}.skin_98461a{background-image:url(spritesmith-main-3.png);background-position:0 -728px;width:90px;height:90px}.customize-option.skin_98461a{background-image:url(spritesmith-main-3.png);background-position:-25px -743px;width:60px;height:60px}.skin_98461a_sleep{background-image:url(spritesmith-main-3.png);background-position:-91px -728px;width:90px;height:90px}.customize-option.skin_98461a_sleep{background-image:url(spritesmith-main-3.png);background-position:-116px -743px;width:60px;height:60px}.skin_bear{background-image:url(spritesmith-main-3.png);background-position:-182px -728px;width:90px;height:90px}.customize-option.skin_bear{background-image:url(spritesmith-main-3.png);background-position:-207px -743px;width:60px;height:60px}.skin_bear_sleep{background-image:url(spritesmith-main-3.png);background-position:-273px -728px;width:90px;height:90px}.customize-option.skin_bear_sleep{background-image:url(spritesmith-main-3.png);background-position:-298px -743px;width:60px;height:60px}.skin_c06534{background-image:url(spritesmith-main-3.png);background-position:-364px -728px;width:90px;height:90px}.customize-option.skin_c06534{background-image:url(spritesmith-main-3.png);background-position:-389px -743px;width:60px;height:60px}.skin_c06534_sleep{background-image:url(spritesmith-main-3.png);background-position:-455px -728px;width:90px;height:90px}.customize-option.skin_c06534_sleep{background-image:url(spritesmith-main-3.png);background-position:-480px -743px;width:60px;height:60px}.skin_c3e1dc{background-image:url(spritesmith-main-3.png);background-position:-546px -728px;width:90px;height:90px}.customize-option.skin_c3e1dc{background-image:url(spritesmith-main-3.png);background-position:-571px -743px;width:60px;height:60px}.skin_c3e1dc_sleep{background-image:url(spritesmith-main-3.png);background-position:-637px -728px;width:90px;height:90px}.customize-option.skin_c3e1dc_sleep{background-image:url(spritesmith-main-3.png);background-position:-662px -743px;width:60px;height:60px}.skin_cactus{background-image:url(spritesmith-main-3.png);background-position:-728px -728px;width:90px;height:90px}.customize-option.skin_cactus{background-image:url(spritesmith-main-3.png);background-position:-753px -743px;width:60px;height:60px}.skin_cactus_sleep{background-image:url(spritesmith-main-3.png);background-position:-821px 0;width:90px;height:90px}.customize-option.skin_cactus_sleep{background-image:url(spritesmith-main-3.png);background-position:-846px -15px;width:60px;height:60px}.skin_candycorn{background-image:url(spritesmith-main-3.png);background-position:-821px -91px;width:90px;height:90px}.customize-option.skin_candycorn{background-image:url(spritesmith-main-3.png);background-position:-846px -106px;width:60px;height:60px}.skin_candycorn_sleep{background-image:url(spritesmith-main-3.png);background-position:-821px -182px;width:90px;height:90px}.customize-option.skin_candycorn_sleep{background-image:url(spritesmith-main-3.png);background-position:-846px -197px;width:60px;height:60px}.skin_clownfish{background-image:url(spritesmith-main-3.png);background-position:-821px -273px;width:90px;height:90px}.customize-option.skin_clownfish{background-image:url(spritesmith-main-3.png);background-position:-846px -288px;width:60px;height:60px}.skin_clownfish_sleep{background-image:url(spritesmith-main-3.png);background-position:-821px -364px;width:90px;height:90px}.customize-option.skin_clownfish_sleep{background-image:url(spritesmith-main-3.png);background-position:-846px -379px;width:60px;height:60px}.skin_d7a9f7{background-image:url(spritesmith-main-3.png);background-position:-821px -455px;width:90px;height:90px}.customize-option.skin_d7a9f7{background-image:url(spritesmith-main-3.png);background-position:-846px -470px;width:60px;height:60px}.skin_d7a9f7_sleep{background-image:url(spritesmith-main-3.png);background-position:-821px -546px;width:90px;height:90px}.customize-option.skin_d7a9f7_sleep{background-image:url(spritesmith-main-3.png);background-position:-846px -561px;width:60px;height:60px}.skin_ddc994{background-image:url(spritesmith-main-3.png);background-position:-821px -637px;width:90px;height:90px}.customize-option.skin_ddc994{background-image:url(spritesmith-main-3.png);background-position:-846px -652px;width:60px;height:60px}.skin_ddc994_sleep{background-image:url(spritesmith-main-3.png);background-position:-821px -728px;width:90px;height:90px}.customize-option.skin_ddc994_sleep{background-image:url(spritesmith-main-3.png);background-position:-846px -743px;width:60px;height:60px}.skin_deepocean{background-image:url(spritesmith-main-3.png);background-position:0 -819px;width:90px;height:90px}.customize-option.skin_deepocean{background-image:url(spritesmith-main-3.png);background-position:-25px -834px;width:60px;height:60px}.skin_deepocean_sleep{background-image:url(spritesmith-main-3.png);background-position:-91px -819px;width:90px;height:90px}.customize-option.skin_deepocean_sleep{background-image:url(spritesmith-main-3.png);background-position:-116px -834px;width:60px;height:60px}.skin_ea8349{background-image:url(spritesmith-main-3.png);background-position:-182px -819px;width:90px;height:90px}.customize-option.skin_ea8349{background-image:url(spritesmith-main-3.png);background-position:-207px -834px;width:60px;height:60px}.skin_ea8349_sleep{background-image:url(spritesmith-main-3.png);background-position:-273px -819px;width:90px;height:90px}.customize-option.skin_ea8349_sleep{background-image:url(spritesmith-main-3.png);background-position:-298px -834px;width:60px;height:60px}.skin_eb052b{background-image:url(spritesmith-main-3.png);background-position:-364px -819px;width:90px;height:90px}.customize-option.skin_eb052b{background-image:url(spritesmith-main-3.png);background-position:-389px -834px;width:60px;height:60px}.skin_eb052b_sleep{background-image:url(spritesmith-main-3.png);background-position:-455px -819px;width:90px;height:90px}.customize-option.skin_eb052b_sleep{background-image:url(spritesmith-main-3.png);background-position:-480px -834px;width:60px;height:60px}.skin_f5a76e{background-image:url(spritesmith-main-3.png);background-position:-546px -819px;width:90px;height:90px}.customize-option.skin_f5a76e{background-image:url(spritesmith-main-3.png);background-position:-571px -834px;width:60px;height:60px}.skin_f5a76e_sleep{background-image:url(spritesmith-main-3.png);background-position:-637px -819px;width:90px;height:90px}.customize-option.skin_f5a76e_sleep{background-image:url(spritesmith-main-3.png);background-position:-662px -834px;width:60px;height:60px}.skin_f5d70f{background-image:url(spritesmith-main-3.png);background-position:-728px -819px;width:90px;height:90px}.customize-option.skin_f5d70f{background-image:url(spritesmith-main-3.png);background-position:-753px -834px;width:60px;height:60px}.skin_f5d70f_sleep{background-image:url(spritesmith-main-3.png);background-position:-819px -819px;width:90px;height:90px}.customize-option.skin_f5d70f_sleep{background-image:url(spritesmith-main-3.png);background-position:-844px -834px;width:60px;height:60px}.skin_f69922{background-image:url(spritesmith-main-3.png);background-position:-912px 0;width:90px;height:90px}.customize-option.skin_f69922{background-image:url(spritesmith-main-3.png);background-position:-937px -15px;width:60px;height:60px}.skin_f69922_sleep{background-image:url(spritesmith-main-3.png);background-position:-912px -91px;width:90px;height:90px}.customize-option.skin_f69922_sleep{background-image:url(spritesmith-main-3.png);background-position:-937px -106px;width:60px;height:60px}.skin_fox{background-image:url(spritesmith-main-3.png);background-position:-912px -182px;width:90px;height:90px}.customize-option.skin_fox{background-image:url(spritesmith-main-3.png);background-position:-937px -197px;width:60px;height:60px}.skin_fox_sleep{background-image:url(spritesmith-main-3.png);background-position:-912px -273px;width:90px;height:90px}.customize-option.skin_fox_sleep{background-image:url(spritesmith-main-3.png);background-position:-937px -288px;width:60px;height:60px}.skin_ghost{background-image:url(spritesmith-main-3.png);background-position:-912px -364px;width:90px;height:90px}.customize-option.skin_ghost{background-image:url(spritesmith-main-3.png);background-position:-937px -379px;width:60px;height:60px}.skin_ghost_sleep{background-image:url(spritesmith-main-3.png);background-position:-912px -455px;width:90px;height:90px}.customize-option.skin_ghost_sleep{background-image:url(spritesmith-main-3.png);background-position:-937px -470px;width:60px;height:60px}.skin_lion{background-image:url(spritesmith-main-3.png);background-position:-912px -546px;width:90px;height:90px}.customize-option.skin_lion{background-image:url(spritesmith-main-3.png);background-position:-937px -561px;width:60px;height:60px}.skin_lion_sleep{background-image:url(spritesmith-main-3.png);background-position:-912px -637px;width:90px;height:90px}.customize-option.skin_lion_sleep{background-image:url(spritesmith-main-3.png);background-position:-937px -652px;width:60px;height:60px}.skin_merblue{background-image:url(spritesmith-main-3.png);background-position:-912px -728px;width:90px;height:90px}.customize-option.skin_merblue{background-image:url(spritesmith-main-3.png);background-position:-937px -743px;width:60px;height:60px}.skin_merblue_sleep{background-image:url(spritesmith-main-3.png);background-position:-912px -819px;width:90px;height:90px}.customize-option.skin_merblue_sleep{background-image:url(spritesmith-main-3.png);background-position:-937px -834px;width:60px;height:60px}.skin_mergold{background-image:url(spritesmith-main-3.png);background-position:0 -910px;width:90px;height:90px}.customize-option.skin_mergold{background-image:url(spritesmith-main-3.png);background-position:-25px -925px;width:60px;height:60px}.skin_mergold_sleep{background-image:url(spritesmith-main-3.png);background-position:-91px -910px;width:90px;height:90px}.customize-option.skin_mergold_sleep{background-image:url(spritesmith-main-3.png);background-position:-116px -925px;width:60px;height:60px}.skin_mergreen{background-image:url(spritesmith-main-3.png);background-position:-182px -910px;width:90px;height:90px}.customize-option.skin_mergreen{background-image:url(spritesmith-main-3.png);background-position:-207px -925px;width:60px;height:60px}.skin_mergreen_sleep{background-image:url(spritesmith-main-3.png);background-position:-273px -910px;width:90px;height:90px}.customize-option.skin_mergreen_sleep{background-image:url(spritesmith-main-3.png);background-position:-298px -925px;width:60px;height:60px}.skin_merruby{background-image:url(spritesmith-main-3.png);background-position:-364px -910px;width:90px;height:90px}.customize-option.skin_merruby{background-image:url(spritesmith-main-3.png);background-position:-389px -925px;width:60px;height:60px}.skin_merruby_sleep{background-image:url(spritesmith-main-3.png);background-position:-455px -910px;width:90px;height:90px}.customize-option.skin_merruby_sleep{background-image:url(spritesmith-main-3.png);background-position:-480px -925px;width:60px;height:60px}.skin_monster{background-image:url(spritesmith-main-3.png);background-position:-546px -910px;width:90px;height:90px}.customize-option.skin_monster{background-image:url(spritesmith-main-3.png);background-position:-571px -925px;width:60px;height:60px}.skin_monster_sleep{background-image:url(spritesmith-main-3.png);background-position:-637px -910px;width:90px;height:90px}.customize-option.skin_monster_sleep{background-image:url(spritesmith-main-3.png);background-position:-662px -925px;width:60px;height:60px}.skin_ogre{background-image:url(spritesmith-main-3.png);background-position:-728px -910px;width:90px;height:90px}.customize-option.skin_ogre{background-image:url(spritesmith-main-3.png);background-position:-753px -925px;width:60px;height:60px}.skin_ogre_sleep{background-image:url(spritesmith-main-3.png);background-position:-819px -910px;width:90px;height:90px}.customize-option.skin_ogre_sleep{background-image:url(spritesmith-main-3.png);background-position:-844px -925px;width:60px;height:60px}.skin_panda{background-image:url(spritesmith-main-3.png);background-position:-910px -910px;width:90px;height:90px}.customize-option.skin_panda{background-image:url(spritesmith-main-3.png);background-position:-935px -925px;width:60px;height:60px}.skin_panda_sleep{background-image:url(spritesmith-main-3.png);background-position:-1003px 0;width:90px;height:90px}.customize-option.skin_panda_sleep{background-image:url(spritesmith-main-3.png);background-position:-1028px -15px;width:60px;height:60px}.skin_pastelBlue{background-image:url(spritesmith-main-3.png);background-position:-1003px -91px;width:90px;height:90px}.customize-option.skin_pastelBlue{background-image:url(spritesmith-main-3.png);background-position:-1028px -106px;width:60px;height:60px}.skin_pastelBlue_sleep{background-image:url(spritesmith-main-3.png);background-position:-1003px -182px;width:90px;height:90px}.customize-option.skin_pastelBlue_sleep{background-image:url(spritesmith-main-3.png);background-position:-1028px -197px;width:60px;height:60px}.skin_pastelGreen{background-image:url(spritesmith-main-3.png);background-position:-1003px -273px;width:90px;height:90px}.customize-option.skin_pastelGreen{background-image:url(spritesmith-main-3.png);background-position:-1028px -288px;width:60px;height:60px}.skin_pastelGreen_sleep{background-image:url(spritesmith-main-3.png);background-position:-1003px -364px;width:90px;height:90px}.customize-option.skin_pastelGreen_sleep{background-image:url(spritesmith-main-3.png);background-position:-1028px -379px;width:60px;height:60px}.skin_pastelOrange{background-image:url(spritesmith-main-3.png);background-position:-1003px -455px;width:90px;height:90px}.customize-option.skin_pastelOrange{background-image:url(spritesmith-main-3.png);background-position:-1028px -470px;width:60px;height:60px}.skin_pastelOrange_sleep{background-image:url(spritesmith-main-3.png);background-position:-1003px -546px;width:90px;height:90px}.customize-option.skin_pastelOrange_sleep{background-image:url(spritesmith-main-3.png);background-position:-1028px -561px;width:60px;height:60px}.skin_pastelPink{background-image:url(spritesmith-main-3.png);background-position:-1003px -637px;width:90px;height:90px}.customize-option.skin_pastelPink{background-image:url(spritesmith-main-3.png);background-position:-1028px -652px;width:60px;height:60px}.skin_pastelPink_sleep{background-image:url(spritesmith-main-3.png);background-position:-1003px -728px;width:90px;height:90px}.customize-option.skin_pastelPink_sleep{background-image:url(spritesmith-main-3.png);background-position:-1028px -743px;width:60px;height:60px}.skin_pastelPurple{background-image:url(spritesmith-main-3.png);background-position:-1003px -819px;width:90px;height:90px}.customize-option.skin_pastelPurple{background-image:url(spritesmith-main-3.png);background-position:-1028px -834px;width:60px;height:60px}.skin_pastelPurple_sleep{background-image:url(spritesmith-main-3.png);background-position:-1003px -910px;width:90px;height:90px}.customize-option.skin_pastelPurple_sleep{background-image:url(spritesmith-main-3.png);background-position:-1028px -925px;width:60px;height:60px}.skin_pastelRainbowChevron{background-image:url(spritesmith-main-3.png);background-position:0 -1001px;width:90px;height:90px}.customize-option.skin_pastelRainbowChevron{background-image:url(spritesmith-main-3.png);background-position:-25px -1016px;width:60px;height:60px}.skin_pastelRainbowChevron_sleep{background-image:url(spritesmith-main-3.png);background-position:-91px -1001px;width:90px;height:90px}.customize-option.skin_pastelRainbowChevron_sleep{background-image:url(spritesmith-main-3.png);background-position:-116px -1016px;width:60px;height:60px}.skin_pastelRainbowDiagonal{background-image:url(spritesmith-main-3.png);background-position:-182px -1001px;width:90px;height:90px}.customize-option.skin_pastelRainbowDiagonal{background-image:url(spritesmith-main-3.png);background-position:-207px -1016px;width:60px;height:60px}.skin_pastelRainbowDiagonal_sleep{background-image:url(spritesmith-main-3.png);background-position:-273px -1001px;width:90px;height:90px}.customize-option.skin_pastelRainbowDiagonal_sleep{background-image:url(spritesmith-main-3.png);background-position:-298px -1016px;width:60px;height:60px}.skin_pastelYellow{background-image:url(spritesmith-main-3.png);background-position:-364px -1001px;width:90px;height:90px}.customize-option.skin_pastelYellow{background-image:url(spritesmith-main-3.png);background-position:-389px -1016px;width:60px;height:60px}.skin_pastelYellow_sleep{background-image:url(spritesmith-main-3.png);background-position:-455px -1001px;width:90px;height:90px}.customize-option.skin_pastelYellow_sleep{background-image:url(spritesmith-main-3.png);background-position:-480px -1016px;width:60px;height:60px}.skin_pig{background-image:url(spritesmith-main-3.png);background-position:-546px -1001px;width:90px;height:90px}.customize-option.skin_pig{background-image:url(spritesmith-main-3.png);background-position:-571px -1016px;width:60px;height:60px}.skin_pig_sleep{background-image:url(spritesmith-main-3.png);background-position:-637px -1001px;width:90px;height:90px}.customize-option.skin_pig_sleep{background-image:url(spritesmith-main-3.png);background-position:-662px -1016px;width:60px;height:60px}.skin_pumpkin{background-image:url(spritesmith-main-3.png);background-position:-728px -1001px;width:90px;height:90px}.customize-option.skin_pumpkin{background-image:url(spritesmith-main-3.png);background-position:-753px -1016px;width:60px;height:60px}.skin_pumpkin2{background-image:url(spritesmith-main-3.png);background-position:-819px -1001px;width:90px;height:90px}.customize-option.skin_pumpkin2{background-image:url(spritesmith-main-3.png);background-position:-844px -1016px;width:60px;height:60px}.skin_pumpkin2_sleep{background-image:url(spritesmith-main-3.png);background-position:-910px -1001px;width:90px;height:90px}.customize-option.skin_pumpkin2_sleep{background-image:url(spritesmith-main-3.png);background-position:-935px -1016px;width:60px;height:60px}.skin_pumpkin_sleep{background-image:url(spritesmith-main-3.png);background-position:-1001px -1001px;width:90px;height:90px}.customize-option.skin_pumpkin_sleep{background-image:url(spritesmith-main-3.png);background-position:-1026px -1016px;width:60px;height:60px}.skin_rainbow{background-image:url(spritesmith-main-3.png);background-position:-1094px 0;width:90px;height:90px}.customize-option.skin_rainbow{background-image:url(spritesmith-main-3.png);background-position:-1119px -15px;width:60px;height:60px}.skin_rainbow_sleep{background-image:url(spritesmith-main-3.png);background-position:-1094px -91px;width:90px;height:90px}.customize-option.skin_rainbow_sleep{background-image:url(spritesmith-main-3.png);background-position:-1119px -106px;width:60px;height:60px}.skin_reptile{background-image:url(spritesmith-main-3.png);background-position:-1094px -182px;width:90px;height:90px}.customize-option.skin_reptile{background-image:url(spritesmith-main-3.png);background-position:-1119px -197px;width:60px;height:60px}.skin_reptile_sleep{background-image:url(spritesmith-main-3.png);background-position:-1094px -273px;width:90px;height:90px}.customize-option.skin_reptile_sleep{background-image:url(spritesmith-main-3.png);background-position:-1119px -288px;width:60px;height:60px}.skin_shadow{background-image:url(spritesmith-main-3.png);background-position:-1094px -364px;width:90px;height:90px}.customize-option.skin_shadow{background-image:url(spritesmith-main-3.png);background-position:-1119px -379px;width:60px;height:60px}.skin_shadow2{background-image:url(spritesmith-main-3.png);background-position:-1094px -455px;width:90px;height:90px}.customize-option.skin_shadow2{background-image:url(spritesmith-main-3.png);background-position:-1119px -470px;width:60px;height:60px}.skin_shadow2_sleep{background-image:url(spritesmith-main-3.png);background-position:-1094px -546px;width:90px;height:90px}.customize-option.skin_shadow2_sleep{background-image:url(spritesmith-main-3.png);background-position:-1119px -561px;width:60px;height:60px}.skin_shadow_sleep{background-image:url(spritesmith-main-3.png);background-position:-1094px -637px;width:90px;height:90px}.customize-option.skin_shadow_sleep{background-image:url(spritesmith-main-3.png);background-position:-1119px -652px;width:60px;height:60px}.skin_shark{background-image:url(spritesmith-main-3.png);background-position:-1094px -728px;width:90px;height:90px}.customize-option.skin_shark{background-image:url(spritesmith-main-3.png);background-position:-1119px -743px;width:60px;height:60px}.skin_shark_sleep{background-image:url(spritesmith-main-3.png);background-position:-1094px -819px;width:90px;height:90px}.customize-option.skin_shark_sleep{background-image:url(spritesmith-main-3.png);background-position:-1119px -834px;width:60px;height:60px}.skin_skeleton{background-image:url(spritesmith-main-3.png);background-position:-1094px -910px;width:90px;height:90px}.customize-option.skin_skeleton{background-image:url(spritesmith-main-3.png);background-position:-1119px -925px;width:60px;height:60px}.skin_skeleton2{background-image:url(spritesmith-main-3.png);background-position:-1094px -1001px;width:90px;height:90px}.customize-option.skin_skeleton2{background-image:url(spritesmith-main-3.png);background-position:-1119px -1016px;width:60px;height:60px}.skin_skeleton2_sleep{background-image:url(spritesmith-main-3.png);background-position:0 -1092px;width:90px;height:90px}.customize-option.skin_skeleton2_sleep{background-image:url(spritesmith-main-3.png);background-position:-25px -1107px;width:60px;height:60px}.skin_skeleton_sleep{background-image:url(spritesmith-main-3.png);background-position:-91px -1092px;width:90px;height:90px}.customize-option.skin_skeleton_sleep{background-image:url(spritesmith-main-3.png);background-position:-116px -1107px;width:60px;height:60px}.skin_tiger{background-image:url(spritesmith-main-3.png);background-position:-182px -1092px;width:90px;height:90px}.customize-option.skin_tiger{background-image:url(spritesmith-main-3.png);background-position:-207px -1107px;width:60px;height:60px}.skin_tiger_sleep{background-image:url(spritesmith-main-3.png);background-position:-273px -1092px;width:90px;height:90px}.customize-option.skin_tiger_sleep{background-image:url(spritesmith-main-3.png);background-position:-298px -1107px;width:60px;height:60px}.skin_transparent{background-image:url(spritesmith-main-3.png);background-position:-364px -1092px;width:90px;height:90px}.customize-option.skin_transparent{background-image:url(spritesmith-main-3.png);background-position:-389px -1107px;width:60px;height:60px}.skin_transparent_sleep{background-image:url(spritesmith-main-3.png);background-position:-455px -1092px;width:90px;height:90px}.customize-option.skin_transparent_sleep{background-image:url(spritesmith-main-3.png);background-position:-480px -1107px;width:60px;height:60px}.skin_tropicalwater{background-image:url(spritesmith-main-3.png);background-position:-546px -1092px;width:90px;height:90px}.customize-option.skin_tropicalwater{background-image:url(spritesmith-main-3.png);background-position:-571px -1107px;width:60px;height:60px}.skin_tropicalwater_sleep{background-image:url(spritesmith-main-3.png);background-position:-637px -1092px;width:90px;height:90px}.customize-option.skin_tropicalwater_sleep{background-image:url(spritesmith-main-3.png);background-position:-662px -1107px;width:60px;height:60px}.skin_wolf{background-image:url(spritesmith-main-3.png);background-position:-728px -1092px;width:90px;height:90px}.customize-option.skin_wolf{background-image:url(spritesmith-main-3.png);background-position:-753px -1107px;width:60px;height:60px}.skin_wolf_sleep{background-image:url(spritesmith-main-3.png);background-position:-819px -1092px;width:90px;height:90px}.customize-option.skin_wolf_sleep{background-image:url(spritesmith-main-3.png);background-position:-844px -1107px;width:60px;height:60px}.skin_zombie{background-image:url(spritesmith-main-3.png);background-position:-910px -1092px;width:90px;height:90px}.customize-option.skin_zombie{background-image:url(spritesmith-main-3.png);background-position:-935px -1107px;width:60px;height:60px}.skin_zombie2{background-image:url(spritesmith-main-3.png);background-position:-1001px -1092px;width:90px;height:90px}.customize-option.skin_zombie2{background-image:url(spritesmith-main-3.png);background-position:-1026px -1107px;width:60px;height:60px}.skin_zombie2_sleep{background-image:url(spritesmith-main-3.png);background-position:-1092px -1092px;width:90px;height:90px}.customize-option.skin_zombie2_sleep{background-image:url(spritesmith-main-3.png);background-position:-1117px -1107px;width:60px;height:60px}.skin_zombie_sleep{background-image:url(spritesmith-main-3.png);background-position:-1185px 0;width:90px;height:90px}.customize-option.skin_zombie_sleep{background-image:url(spritesmith-main-3.png);background-position:-1210px -15px;width:60px;height:60px}.broad_armor_armoire_gladiatorArmor{background-image:url(spritesmith-main-3.png);background-position:-1185px -91px;width:90px;height:90px}.broad_armor_armoire_goldenToga{background-image:url(spritesmith-main-3.png);background-position:-1185px -182px;width:90px;height:90px}.broad_armor_armoire_hornedIronArmor{background-image:url(spritesmith-main-3.png);background-position:-1185px -273px;width:90px;height:90px}.broad_armor_armoire_lunarArmor{background-image:url(spritesmith-main-3.png);background-position:-1185px -364px;width:90px;height:90px}.broad_armor_armoire_plagueDoctorOvercoat{background-image:url(spritesmith-main-3.png);background-position:-1185px -455px;width:90px;height:90px}.broad_armor_armoire_rancherRobes{background-image:url(spritesmith-main-3.png);background-position:-1185px -546px;width:90px;height:90px}.broad_armor_armoire_royalRobes{background-image:url(spritesmith-main-3.png);background-position:-1185px -637px;width:90px;height:90px}.broad_armor_armoire_shepherdRobes{background-image:url(spritesmith-main-3.png);background-position:-1185px -728px;width:90px;height:90px}.eyewear_armoire_plagueDoctorMask{background-image:url(spritesmith-main-3.png);background-position:-1185px -819px;width:90px;height:90px}.head_armoire_blackCat{background-image:url(spritesmith-main-3.png);background-position:-1185px -910px;width:90px;height:90px}.head_armoire_blueFloppyHat{background-image:url(spritesmith-main-3.png);background-position:-1185px -1001px;width:90px;height:90px}.head_armoire_blueHairbow{background-image:url(spritesmith-main-3.png);background-position:-1185px -1092px;width:90px;height:90px}.head_armoire_gladiatorHelm{background-image:url(spritesmith-main-3.png);background-position:0 -1183px;width:90px;height:90px}.head_armoire_goldenLaurels{background-image:url(spritesmith-main-3.png);background-position:-91px -1183px;width:90px;height:90px}.head_armoire_hornedIronHelm{background-image:url(spritesmith-main-3.png);background-position:-182px -1183px;width:90px;height:90px}.head_armoire_lunarCrown{background-image:url(spritesmith-main-3.png);background-position:-273px -1183px;width:90px;height:90px}.head_armoire_orangeCat{background-image:url(spritesmith-main-3.png);background-position:-364px -1183px;width:90px;height:90px}.head_armoire_plagueDoctorHat{background-image:url(spritesmith-main-3.png);background-position:-455px -1183px;width:90px;height:90px}.head_armoire_rancherHat{background-image:url(spritesmith-main-3.png);background-position:-546px -1183px;width:90px;height:90px}.head_armoire_redFloppyHat{background-image:url(spritesmith-main-3.png);background-position:-637px -1183px;width:90px;height:90px}.head_armoire_redHairbow{background-image:url(spritesmith-main-3.png);background-position:-728px -1183px;width:90px;height:90px}.head_armoire_royalCrown{background-image:url(spritesmith-main-3.png);background-position:-819px -1183px;width:90px;height:90px}.head_armoire_shepherdHeaddress{background-image:url(spritesmith-main-3.png);background-position:-910px -1183px;width:90px;height:90px}.head_armoire_violetFloppyHat{background-image:url(spritesmith-main-3.png);background-position:-1001px -1183px;width:90px;height:90px}.head_armoire_yellowHairbow{background-image:url(spritesmith-main-3.png);background-position:-1092px -1183px;width:90px;height:90px}.shield_armoire_gladiatorShield{background-image:url(spritesmith-main-3.png);background-position:-1183px -1183px;width:90px;height:90px}.shield_armoire_midnightShield{background-image:url(spritesmith-main-3.png);background-position:-1276px 0;width:90px;height:90px}.shield_armoire_royalCane{background-image:url(spritesmith-main-3.png);background-position:-1276px -91px;width:90px;height:90px}.shop_armor_armoire_gladiatorArmor{background-image:url(spritesmith-main-3.png);background-position:-1640px -943px;width:40px;height:40px}.shop_armor_armoire_goldenToga{background-image:url(spritesmith-main-3.png);background-position:-1640px -779px;width:40px;height:40px}.shop_armor_armoire_hornedIronArmor{background-image:url(spritesmith-main-3.png);background-position:-1640px -738px;width:40px;height:40px}.shop_armor_armoire_lunarArmor{background-image:url(spritesmith-main-3.png);background-position:-1640px -697px;width:40px;height:40px}.shop_armor_armoire_plagueDoctorOvercoat{background-image:url(spritesmith-main-3.png);background-position:-1640px -656px;width:40px;height:40px}.shop_armor_armoire_rancherRobes{background-image:url(spritesmith-main-3.png);background-position:-1640px -533px;width:40px;height:40px}.shop_armor_armoire_royalRobes{background-image:url(spritesmith-main-3.png);background-position:-1640px -984px;width:40px;height:40px}.shop_armor_armoire_shepherdRobes{background-image:url(spritesmith-main-3.png);background-position:-1640px -492px;width:40px;height:40px}.shop_eyewear_armoire_plagueDoctorMask{background-image:url(spritesmith-main-3.png);background-position:-1640px -451px;width:40px;height:40px}.shop_head_armoire_blackCat{background-image:url(spritesmith-main-3.png);background-position:-1640px -410px;width:40px;height:40px}.shop_head_armoire_blueFloppyHat{background-image:url(spritesmith-main-3.png);background-position:-1640px -369px;width:40px;height:40px}.shop_head_armoire_blueHairbow{background-image:url(spritesmith-main-3.png);background-position:-1640px -328px;width:40px;height:40px}.shop_head_armoire_gladiatorHelm{background-image:url(spritesmith-main-3.png);background-position:-1640px -287px;width:40px;height:40px}.shop_head_armoire_goldenLaurels{background-image:url(spritesmith-main-3.png);background-position:-1640px -246px;width:40px;height:40px}.shop_head_armoire_hornedIronHelm{background-image:url(spritesmith-main-3.png);background-position:-1640px -205px;width:40px;height:40px}.shop_head_armoire_lunarCrown{background-image:url(spritesmith-main-3.png);background-position:-1640px -164px;width:40px;height:40px}.shop_head_armoire_orangeCat{background-image:url(spritesmith-main-3.png);background-position:-1640px -123px;width:40px;height:40px}.shop_head_armoire_plagueDoctorHat{background-image:url(spritesmith-main-3.png);background-position:-1640px -82px;width:40px;height:40px}.shop_head_armoire_rancherHat{background-image:url(spritesmith-main-3.png);background-position:-1640px -41px;width:40px;height:40px}.shop_head_armoire_redFloppyHat{background-image:url(spritesmith-main-3.png);background-position:-1640px 0;width:40px;height:40px}.shop_head_armoire_redHairbow{background-image:url(spritesmith-main-3.png);background-position:-1576px -1588px;width:40px;height:40px}.shop_head_armoire_royalCrown{background-image:url(spritesmith-main-3.png);background-position:-1535px -1588px;width:40px;height:40px}.shop_head_armoire_shepherdHeaddress{background-image:url(spritesmith-main-3.png);background-position:-1494px -1588px;width:40px;height:40px}.shop_head_armoire_violetFloppyHat{background-image:url(spritesmith-main-3.png);background-position:-1453px -1588px;width:40px;height:40px}.shop_head_armoire_yellowHairbow{background-image:url(spritesmith-main-3.png);background-position:-182px -1588px;width:40px;height:40px}.shop_shield_armoire_gladiatorShield{background-image:url(spritesmith-main-3.png);background-position:-1576px -1547px;width:40px;height:40px}.shop_shield_armoire_midnightShield{background-image:url(spritesmith-main-3.png);background-position:-1535px -1547px;width:40px;height:40px}.shop_shield_armoire_royalCane{background-image:url(spritesmith-main-3.png);background-position:-1494px -1547px;width:40px;height:40px}.shop_weapon_armoire_basicCrossbow{background-image:url(spritesmith-main-3.png);background-position:-1453px -1547px;width:40px;height:40px}.shop_weapon_armoire_batWand{background-image:url(spritesmith-main-3.png);background-position:-1412px -1547px;width:40px;height:40px}.shop_weapon_armoire_goldWingStaff{background-image:url(spritesmith-main-3.png);background-position:-1371px -1547px;width:40px;height:40px}.shop_weapon_armoire_ironCrook{background-image:url(spritesmith-main-3.png);background-position:-1330px -1547px;width:40px;height:40px}.shop_weapon_armoire_lunarSceptre{background-image:url(spritesmith-main-3.png);background-position:-1289px -1547px;width:40px;height:40px}.shop_weapon_armoire_mythmakerSword{background-image:url(spritesmith-main-3.png);background-position:-1248px -1547px;width:40px;height:40px}.shop_weapon_armoire_rancherLasso{background-image:url(spritesmith-main-3.png);background-position:-1207px -1547px;width:40px;height:40px}.shop_weapon_armoire_shepherdsCrook{background-image:url(spritesmith-main-3.png);background-position:-1166px -1547px;width:40px;height:40px}.slim_armor_armoire_gladiatorArmor{background-image:url(spritesmith-main-3.png);background-position:-1367px -819px;width:90px;height:90px}.slim_armor_armoire_goldenToga{background-image:url(spritesmith-main-3.png);background-position:-1367px -910px;width:90px;height:90px}.slim_armor_armoire_hornedIronArmor{background-image:url(spritesmith-main-3.png);background-position:-1367px -1001px;width:90px;height:90px}.slim_armor_armoire_lunarArmor{background-image:url(spritesmith-main-3.png);background-position:-1367px -1092px;width:90px;height:90px}.slim_armor_armoire_plagueDoctorOvercoat{background-image:url(spritesmith-main-3.png);background-position:-1367px -1183px;width:90px;height:90px}.slim_armor_armoire_rancherRobes{background-image:url(spritesmith-main-3.png);background-position:-1367px -1274px;width:90px;height:90px}.slim_armor_armoire_royalRobes{background-image:url(spritesmith-main-3.png);background-position:0 -1365px;width:90px;height:90px}.slim_armor_armoire_shepherdRobes{background-image:url(spritesmith-main-3.png);background-position:-91px -1365px;width:90px;height:90px}.weapon_armoire_basicCrossbow{background-image:url(spritesmith-main-3.png);background-position:-182px -1365px;width:90px;height:90px}.weapon_armoire_batWand{background-image:url(spritesmith-main-3.png);background-position:-273px -1365px;width:90px;height:90px}.weapon_armoire_goldWingStaff{background-image:url(spritesmith-main-3.png);background-position:-364px -1365px;width:90px;height:90px}.weapon_armoire_ironCrook{background-image:url(spritesmith-main-3.png);background-position:-455px -1365px;width:90px;height:90px}.weapon_armoire_lunarSceptre{background-image:url(spritesmith-main-3.png);background-position:-546px -1365px;width:90px;height:90px}.weapon_armoire_mythmakerSword{background-image:url(spritesmith-main-3.png);background-position:-637px -1365px;width:90px;height:90px}.weapon_armoire_rancherLasso{background-image:url(spritesmith-main-3.png);background-position:-728px -1365px;width:90px;height:90px}.weapon_armoire_shepherdsCrook{background-image:url(spritesmith-main-3.png);background-position:-819px -1365px;width:90px;height:90px}.broad_armor_healer_1{background-image:url(spritesmith-main-3.png);background-position:-910px -1365px;width:90px;height:90px}.broad_armor_healer_2{background-image:url(spritesmith-main-3.png);background-position:-1001px -1365px;width:90px;height:90px}.broad_armor_healer_3{background-image:url(spritesmith-main-3.png);background-position:-1092px -1365px;width:90px;height:90px}.broad_armor_healer_4{background-image:url(spritesmith-main-3.png);background-position:-1183px -1365px;width:90px;height:90px}.broad_armor_healer_5{background-image:url(spritesmith-main-3.png);background-position:-1274px -1365px;width:90px;height:90px}.broad_armor_rogue_1{background-image:url(spritesmith-main-3.png);background-position:-1365px -1365px;width:90px;height:90px}.broad_armor_rogue_2{background-image:url(spritesmith-main-3.png);background-position:-1458px 0;width:90px;height:90px}.broad_armor_rogue_3{background-image:url(spritesmith-main-3.png);background-position:-1458px -91px;width:90px;height:90px}.broad_armor_rogue_4{background-image:url(spritesmith-main-3.png);background-position:-1458px -182px;width:90px;height:90px}.broad_armor_rogue_5{background-image:url(spritesmith-main-3.png);background-position:-1458px -273px;width:90px;height:90px}.broad_armor_special_2{background-image:url(spritesmith-main-3.png);background-position:-1458px -364px;width:90px;height:90px}.broad_armor_special_finnedOceanicArmor{background-image:url(spritesmith-main-3.png);background-position:-1458px -455px;width:90px;height:90px}.broad_armor_warrior_1{background-image:url(spritesmith-main-3.png);background-position:-1458px -546px;width:90px;height:90px}.broad_armor_warrior_2{background-image:url(spritesmith-main-3.png);background-position:-1458px -637px;width:90px;height:90px}.broad_armor_warrior_3{background-image:url(spritesmith-main-3.png);background-position:-1458px -728px;width:90px;height:90px}.broad_armor_warrior_4{background-image:url(spritesmith-main-3.png);background-position:-1458px -819px;width:90px;height:90px}.broad_armor_warrior_5{background-image:url(spritesmith-main-3.png);background-position:-1458px -910px;width:90px;height:90px}.broad_armor_wizard_1{background-image:url(spritesmith-main-3.png);background-position:-1458px -1001px;width:90px;height:90px}.broad_armor_wizard_2{background-image:url(spritesmith-main-3.png);background-position:-1458px -1092px;width:90px;height:90px}.broad_armor_wizard_3{background-image:url(spritesmith-main-3.png);background-position:-1458px -1183px;width:90px;height:90px}.broad_armor_wizard_4{background-image:url(spritesmith-main-3.png);background-position:-1458px -1274px;width:90px;height:90px}.broad_armor_wizard_5{background-image:url(spritesmith-main-3.png);background-position:-1458px -1365px;width:90px;height:90px}.shop_armor_healer_1{background-image:url(spritesmith-main-3.png);background-position:-1125px -1547px;width:40px;height:40px}.shop_armor_healer_2{background-image:url(spritesmith-main-3.png);background-position:-1084px -1547px;width:40px;height:40px}.shop_armor_healer_3{background-image:url(spritesmith-main-3.png);background-position:-1043px -1547px;width:40px;height:40px}.shop_armor_healer_4{background-image:url(spritesmith-main-3.png);background-position:-1002px -1547px;width:40px;height:40px}.shop_armor_healer_5{background-image:url(spritesmith-main-3.png);background-position:-961px -1547px;width:40px;height:40px}.shop_armor_rogue_1{background-image:url(spritesmith-main-3.png);background-position:-920px -1547px;width:40px;height:40px}.shop_armor_rogue_2{background-image:url(spritesmith-main-3.png);background-position:-879px -1547px;width:40px;height:40px}.shop_armor_rogue_3{background-image:url(spritesmith-main-3.png);background-position:-838px -1547px;width:40px;height:40px}.shop_armor_rogue_4{background-image:url(spritesmith-main-3.png);background-position:-797px -1547px;width:40px;height:40px}.shop_armor_rogue_5{background-image:url(spritesmith-main-3.png);background-position:-756px -1547px;width:40px;height:40px}.shop_armor_special_0{background-image:url(spritesmith-main-3.png);background-position:-715px -1547px;width:40px;height:40px}.shop_armor_special_1{background-image:url(spritesmith-main-3.png);background-position:-674px -1547px;width:40px;height:40px}.shop_armor_special_2{background-image:url(spritesmith-main-3.png);background-position:-551px -1547px;width:40px;height:40px}.shop_armor_special_finnedOceanicArmor{background-image:url(spritesmith-main-3.png);background-position:-510px -1547px;width:40px;height:40px}.shop_armor_warrior_1{background-image:url(spritesmith-main-3.png);background-position:-469px -1547px;width:40px;height:40px}.shop_armor_warrior_2{background-image:url(spritesmith-main-3.png);background-position:-428px -1547px;width:40px;height:40px}.shop_armor_warrior_3{background-image:url(spritesmith-main-3.png);background-position:-387px -1547px;width:40px;height:40px}.shop_armor_warrior_4{background-image:url(spritesmith-main-3.png);background-position:-346px -1547px;width:40px;height:40px}.shop_armor_warrior_5{background-image:url(spritesmith-main-3.png);background-position:-305px -1547px;width:40px;height:40px}.shop_armor_wizard_1{background-image:url(spritesmith-main-3.png);background-position:-264px -1547px;width:40px;height:40px}.shop_armor_wizard_2{background-image:url(spritesmith-main-3.png);background-position:-223px -1547px;width:40px;height:40px}.shop_armor_wizard_3{background-image:url(spritesmith-main-3.png);background-position:-182px -1547px;width:40px;height:40px}.shop_armor_wizard_4{background-image:url(spritesmith-main-3.png);background-position:-633px -1588px;width:40px;height:40px}.shop_armor_wizard_5{background-image:url(spritesmith-main-3.png);background-position:-400px -314px;width:40px;height:40px}.slim_armor_healer_1{background-image:url(spritesmith-main-3.png);background-position:-1549px -637px;width:90px;height:90px}.slim_armor_healer_2{background-image:url(spritesmith-main-3.png);background-position:-1549px -728px;width:90px;height:90px}.slim_armor_healer_3{background-image:url(spritesmith-main-3.png);background-position:-1549px -819px;width:90px;height:90px}.slim_armor_healer_4{background-image:url(spritesmith-main-3.png);background-position:-1549px -910px;width:90px;height:90px}.slim_armor_healer_5{background-image:url(spritesmith-main-3.png);background-position:-1549px -1001px;width:90px;height:90px}.slim_armor_rogue_1{background-image:url(spritesmith-main-3.png);background-position:-1549px -1092px;width:90px;height:90px}.slim_armor_rogue_2{background-image:url(spritesmith-main-3.png);background-position:-1549px -1183px;width:90px;height:90px}.slim_armor_rogue_3{background-image:url(spritesmith-main-3.png);background-position:-1549px -1274px;width:90px;height:90px}.slim_armor_rogue_4{background-image:url(spritesmith-main-3.png);background-position:-1549px -1365px;width:90px;height:90px}.slim_armor_rogue_5{background-image:url(spritesmith-main-3.png);background-position:-1549px -1456px;width:90px;height:90px}.slim_armor_special_2{background-image:url(spritesmith-main-3.png);background-position:0 -1547px;width:90px;height:90px}.slim_armor_special_finnedOceanicArmor{background-image:url(spritesmith-main-3.png);background-position:-91px -1547px;width:90px;height:90px}.slim_armor_warrior_1{background-image:url(spritesmith-main-3.png);background-position:-1549px -546px;width:90px;height:90px}.slim_armor_warrior_2{background-image:url(spritesmith-main-3.png);background-position:-1549px -455px;width:90px;height:90px}.slim_armor_warrior_3{background-image:url(spritesmith-main-3.png);background-position:-1549px -364px;width:90px;height:90px}.slim_armor_warrior_4{background-image:url(spritesmith-main-3.png);background-position:-1549px -273px;width:90px;height:90px}.slim_armor_warrior_5{background-image:url(spritesmith-main-3.png);background-position:-1549px -182px;width:90px;height:90px}.slim_armor_wizard_1{background-image:url(spritesmith-main-3.png);background-position:-1549px -91px;width:90px;height:90px}.slim_armor_wizard_2{background-image:url(spritesmith-main-3.png);background-position:-1549px 0;width:90px;height:90px}.slim_armor_wizard_3{background-image:url(spritesmith-main-3.png);background-position:-1456px -1456px;width:90px;height:90px}.slim_armor_wizard_4{background-image:url(spritesmith-main-3.png);background-position:-1365px -1456px;width:90px;height:90px}.slim_armor_wizard_5{background-image:url(spritesmith-main-3.png);background-position:-1274px -1456px;width:90px;height:90px}.broad_armor_special_birthday{background-image:url(spritesmith-main-3.png);background-position:-1183px -1456px;width:90px;height:90px}.broad_armor_special_birthday2015{background-image:url(spritesmith-main-3.png);background-position:-1092px -1456px;width:90px;height:90px}.shop_armor_special_birthday{background-image:url(spritesmith-main-3.png);background-position:-592px -1547px;width:40px;height:40px}.shop_armor_special_birthday2015{background-image:url(spritesmith-main-3.png);background-position:-633px -1547px;width:40px;height:40px}.slim_armor_special_birthday{background-image:url(spritesmith-main-3.png);background-position:-1001px -1456px;width:90px;height:90px}.slim_armor_special_birthday2015{background-image:url(spritesmith-main-3.png);background-position:-910px -1456px;width:90px;height:90px}.broad_armor_special_fall2015Healer{background-image:url(spritesmith-main-3.png);background-position:-212px -273px;width:93px;height:90px}.broad_armor_special_fall2015Mage{background-image:url(spritesmith-main-3.png);background-position:-106px -273px;width:105px;height:90px}.broad_armor_special_fall2015Rogue{background-image:url(spritesmith-main-3.png);background-position:-637px -1456px;width:90px;height:90px}.broad_armor_special_fall2015Warrior{background-image:url(spritesmith-main-3.png);background-position:-546px -1456px;width:90px;height:90px}.broad_armor_special_fallHealer{background-image:url(spritesmith-main-3.png);background-position:-455px -1456px;width:90px;height:90px}.broad_armor_special_fallMage{background-image:url(spritesmith-main-3.png);background-position:-121px -91px;width:120px;height:90px}.broad_armor_special_fallRogue{background-image:url(spritesmith-main-3.png);background-position:-348px -182px;width:105px;height:90px}.broad_armor_special_fallWarrior{background-image:url(spritesmith-main-3.png);background-position:-182px -1456px;width:90px;height:90px}.head_special_fall2015Healer{background-image:url(spritesmith-main-3.png);background-position:-306px -273px;width:93px;height:90px}.head_special_fall2015Mage{background-image:url(spritesmith-main-3.png);background-position:-348px -91px;width:105px;height:90px}.head_special_fall2015Rogue{background-image:url(spritesmith-main-3.png);background-position:-1367px -728px;width:90px;height:90px}.head_special_fall2015Warrior{background-image:url(spritesmith-main-3.png);background-position:-1367px -637px;width:90px;height:90px}.head_special_fallHealer{background-image:url(spritesmith-main-3.png);background-position:-1367px -546px;width:90px;height:90px}.head_special_fallMage{background-image:url(spritesmith-main-3.png);background-position:0 -91px;width:120px;height:90px}.head_special_fallRogue{background-image:url(spritesmith-main-3.png);background-position:-212px -182px;width:105px;height:90px}.head_special_fallWarrior{background-image:url(spritesmith-main-3.png);background-position:-1367px -273px;width:90px;height:90px}.shield_special_fall2015Healer{background-image:url(spritesmith-main-3.png);background-position:-454px 0;width:93px;height:90px}.shield_special_fall2015Rogue{background-image:url(spritesmith-main-3.png);background-position:0 -273px;width:105px;height:90px}.shield_special_fall2015Warrior{background-image:url(spritesmith-main-3.png);background-position:-1367px 0;width:90px;height:90px}.shield_special_fallHealer{background-image:url(spritesmith-main-3.png);background-position:-1274px -1274px;width:90px;height:90px}.shield_special_fallRogue{background-image:url(spritesmith-main-3.png);background-position:0 -182px;width:105px;height:90px}.shield_special_fallWarrior{background-image:url(spritesmith-main-3.png);background-position:-1092px -1274px;width:90px;height:90px}.shop_armor_special_fall2015Healer{background-image:url(spritesmith-main-3.png);background-position:-223px -1588px;width:40px;height:40px}.shop_armor_special_fall2015Mage{background-image:url(spritesmith-main-3.png);background-position:-264px -1588px;width:40px;height:40px}.shop_armor_special_fall2015Rogue{background-image:url(spritesmith-main-3.png);background-position:-305px -1588px;width:40px;height:40px}.shop_armor_special_fall2015Warrior{background-image:url(spritesmith-main-3.png);background-position:-346px -1588px;width:40px;height:40px}.shop_armor_special_fallHealer{background-image:url(spritesmith-main-3.png);background-position:-387px -1588px;width:40px;height:40px}.shop_armor_special_fallMage{background-image:url(spritesmith-main-3.png);background-position:-428px -1588px;width:40px;height:40px}.shop_armor_special_fallRogue{background-image:url(spritesmith-main-3.png);background-position:-469px -1588px;width:40px;height:40px}.shop_armor_special_fallWarrior{background-image:url(spritesmith-main-3.png);background-position:-510px -1588px;width:40px;height:40px}.shop_head_special_fall2015Healer{background-image:url(spritesmith-main-3.png);background-position:-551px -1588px;width:40px;height:40px}.shop_head_special_fall2015Mage{background-image:url(spritesmith-main-3.png);background-position:-592px -1588px;width:40px;height:40px}.shop_head_special_fall2015Rogue{background-image:url(spritesmith-main-3.png);background-position:-400px -273px;width:40px;height:40px}.shop_head_special_fall2015Warrior{background-image:url(spritesmith-main-3.png);background-position:-674px -1588px;width:40px;height:40px}.shop_head_special_fallHealer{background-image:url(spritesmith-main-3.png);background-position:-715px -1588px;width:40px;height:40px}.shop_head_special_fallMage{background-image:url(spritesmith-main-3.png);background-position:-756px -1588px;width:40px;height:40px}.shop_head_special_fallRogue{background-image:url(spritesmith-main-3.png);background-position:-797px -1588px;width:40px;height:40px}.shop_head_special_fallWarrior{background-image:url(spritesmith-main-3.png);background-position:-838px -1588px;width:40px;height:40px}.shop_shield_special_fall2015Healer{background-image:url(spritesmith-main-3.png);background-position:-879px -1588px;width:40px;height:40px}.shop_shield_special_fall2015Rogue{background-image:url(spritesmith-main-3.png);background-position:-920px -1588px;width:40px;height:40px}.shop_shield_special_fall2015Warrior{background-image:url(spritesmith-main-3.png);background-position:-961px -1588px;width:40px;height:40px}.shop_shield_special_fallHealer{background-image:url(spritesmith-main-3.png);background-position:-1002px -1588px;width:40px;height:40px}.shop_shield_special_fallRogue{background-image:url(spritesmith-main-3.png);background-position:-1043px -1588px;width:40px;height:40px}.shop_shield_special_fallWarrior{background-image:url(spritesmith-main-3.png);background-position:-1084px -1588px;width:40px;height:40px}.shop_weapon_special_fall2015Healer{background-image:url(spritesmith-main-3.png);background-position:-1125px -1588px;width:40px;height:40px}.shop_weapon_special_fall2015Mage{background-image:url(spritesmith-main-3.png);background-position:-1166px -1588px;width:40px;height:40px}.shop_weapon_special_fall2015Rogue{background-image:url(spritesmith-main-3.png);background-position:-1207px -1588px;width:40px;height:40px}.shop_weapon_special_fall2015Warrior{background-image:url(spritesmith-main-3.png);background-position:-1248px -1588px;width:40px;height:40px}.shop_weapon_special_fallHealer{background-image:url(spritesmith-main-3.png);background-position:-1289px -1588px;width:40px;height:40px}.shop_weapon_special_fallMage{background-image:url(spritesmith-main-3.png);background-position:-1330px -1588px;width:40px;height:40px}.shop_weapon_special_fallRogue{background-image:url(spritesmith-main-3.png);background-position:-1371px -1588px;width:40px;height:40px}.shop_weapon_special_fallWarrior{background-image:url(spritesmith-main-3.png);background-position:-1412px -1588px;width:40px;height:40px}.slim_armor_special_fall2015Healer{background-image:url(spritesmith-main-3.png);background-position:-454px -91px;width:93px;height:90px}.slim_armor_special_fall2015Mage{background-image:url(spritesmith-main-3.png);background-position:-242px -91px;width:105px;height:90px}.slim_armor_special_fall2015Rogue{background-image:url(spritesmith-main-3.png);background-position:-819px -1274px;width:90px;height:90px}.slim_armor_special_fall2015Warrior{background-image:url(spritesmith-main-3.png);background-position:-728px -1274px;width:90px;height:90px}.slim_armor_special_fallHealer{background-image:url(spritesmith-main-3.png);background-position:-637px -1274px;width:90px;height:90px}.slim_armor_special_fallMage{background-image:url(spritesmith-main-3.png);background-position:0 0;width:120px;height:90px}.slim_armor_special_fallRogue{background-image:url(spritesmith-main-3.png);background-position:-348px 0;width:105px;height:90px}.slim_armor_special_fallWarrior{background-image:url(spritesmith-main-3.png);background-position:-364px -1274px;width:90px;height:90px}.weapon_special_fall2015Healer{background-image:url(spritesmith-main-3.png);background-position:-454px -182px;width:93px;height:90px}.weapon_special_fall2015Mage{background-image:url(spritesmith-main-3.png);background-position:-106px -182px;width:105px;height:90px}.weapon_special_fall2015Rogue{background-image:url(spritesmith-main-3.png);background-position:-91px -1274px;width:90px;height:90px}.weapon_special_fall2015Warrior{background-image:url(spritesmith-main-3.png);background-position:0 -1274px;width:90px;height:90px}.weapon_special_fallHealer{background-image:url(spritesmith-main-3.png);background-position:-1276px -1183px;width:90px;height:90px}.weapon_special_fallMage{background-image:url(spritesmith-main-3.png);background-position:-121px 0;width:120px;height:90px}.weapon_special_fallRogue{background-image:url(spritesmith-main-3.png);background-position:-242px 0;width:105px;height:90px}.weapon_special_fallWarrior{background-image:url(spritesmith-main-3.png);background-position:-1276px -910px;width:90px;height:90px}.broad_armor_special_gaymerx{background-image:url(spritesmith-main-3.png);background-position:-1276px -819px;width:90px;height:90px}.head_special_gaymerx{background-image:url(spritesmith-main-3.png);background-position:-1276px -637px;width:90px;height:90px}.shop_armor_special_gaymerx{background-image:url(spritesmith-main-3.png);background-position:-1640px -574px;width:40px;height:40px}.shop_head_special_gaymerx{background-image:url(spritesmith-main-3.png);background-position:-1640px -615px;width:40px;height:40px}.slim_armor_special_gaymerx{background-image:url(spritesmith-main-3.png);background-position:-1276px -546px;width:90px;height:90px}.back_mystery_201402{background-image:url(spritesmith-main-3.png);background-position:-1276px -455px;width:90px;height:90px}.broad_armor_mystery_201402{background-image:url(spritesmith-main-3.png);background-position:-1276px -364px;width:90px;height:90px}.head_mystery_201402{background-image:url(spritesmith-main-3.png);background-position:-1276px -273px;width:90px;height:90px}.shop_armor_mystery_201402{background-image:url(spritesmith-main-3.png);background-position:-1640px -820px;width:40px;height:40px}.shop_back_mystery_201402{background-image:url(spritesmith-main-3.png);background-position:-1640px -861px;width:40px;height:40px}.shop_head_mystery_201402{background-image:url(spritesmith-main-3.png);background-position:-1640px -902px;width:40px;height:40px}.slim_armor_mystery_201402{background-image:url(spritesmith-main-3.png);background-position:-1276px -182px;width:90px;height:90px}.broad_armor_mystery_201403{background-image:url(spritesmith-main-3.png);background-position:-1276px -1001px;width:90px;height:90px}.headAccessory_mystery_201403{background-image:url(spritesmith-main-4.png);background-position:-739px -309px;width:90px;height:90px}.shop_armor_mystery_201403{background-image:url(spritesmith-main-4.png);background-position:-1018px -910px;width:40px;height:40px}.shop_headAccessory_mystery_201403{background-image:url(spritesmith-main-4.png);background-position:-1646px -820px;width:40px;height:40px}.slim_armor_mystery_201403{background-image:url(spritesmith-main-4.png);background-position:-461px -788px;width:90px;height:90px}.back_mystery_201404{background-image:url(spritesmith-main-4.png);background-position:-546px -1152px;width:90px;height:90px}.headAccessory_mystery_201404{background-image:url(spritesmith-main-4.png);background-position:-1183px -1243px;width:90px;height:90px}.shop_back_mystery_201404{background-image:url(spritesmith-main-4.png);background-position:-1646px -779px;width:40px;height:40px}.shop_headAccessory_mystery_201404{background-image:url(spritesmith-main-4.png);background-position:-1646px -738px;width:40px;height:40px}.broad_armor_mystery_201405{background-image:url(spritesmith-main-4.png);background-position:-1382px -364px;width:90px;height:90px}.head_mystery_201405{background-image:url(spritesmith-main-4.png);background-position:-1382px -455px;width:90px;height:90px}.shop_armor_mystery_201405{background-image:url(spritesmith-main-4.png);background-position:-82px -1598px;width:40px;height:40px}.shop_head_mystery_201405{background-image:url(spritesmith-main-4.png);background-position:-41px -1598px;width:40px;height:40px}.slim_armor_mystery_201405{background-image:url(spritesmith-main-4.png);background-position:-1382px -819px;width:90px;height:90px}.broad_armor_mystery_201406{background-image:url(spritesmith-main-4.png);background-position:-739px -212px;width:90px;height:96px}.head_mystery_201406{background-image:url(spritesmith-main-4.png);background-position:-830px -188px;width:90px;height:96px}.shop_armor_mystery_201406{background-image:url(spritesmith-main-4.png);background-position:0 -1598px;width:40px;height:40px}.shop_head_mystery_201406{background-image:url(spritesmith-main-4.png);background-position:-1605px -1517px;width:40px;height:40px}.slim_armor_mystery_201406{background-image:url(spritesmith-main-4.png);background-position:-830px -91px;width:90px;height:96px}.broad_armor_mystery_201407{background-image:url(spritesmith-main-4.png);background-position:-552px -788px;width:90px;height:90px}.head_mystery_201407{background-image:url(spritesmith-main-4.png);background-position:-825px -788px;width:90px;height:90px}.shop_armor_mystery_201407{background-image:url(spritesmith-main-4.png);background-position:-1605px -1476px;width:40px;height:40px}.shop_head_mystery_201407{background-image:url(spritesmith-main-4.png);background-position:-1605px -1435px;width:40px;height:40px}.slim_armor_mystery_201407{background-image:url(spritesmith-main-4.png);background-position:0 -879px;width:90px;height:90px}.broad_armor_mystery_201408{background-image:url(spritesmith-main-4.png);background-position:-91px -879px;width:90px;height:90px}.head_mystery_201408{background-image:url(spritesmith-main-4.png);background-position:-1200px -910px;width:90px;height:90px}.shop_armor_mystery_201408{background-image:url(spritesmith-main-4.png);background-position:-1605px -1394px;width:40px;height:40px}.shop_head_mystery_201408{background-image:url(spritesmith-main-4.png);background-position:-1605px -1353px;width:40px;height:40px}.slim_armor_mystery_201408{background-image:url(spritesmith-main-4.png);background-position:-1291px -273px;width:90px;height:90px}.broad_armor_mystery_201409{background-image:url(spritesmith-main-4.png);background-position:-1001px -1243px;width:90px;height:90px}.headAccessory_mystery_201409{background-image:url(spritesmith-main-4.png);background-position:-1092px -1243px;width:90px;height:90px}.shop_armor_mystery_201409{background-image:url(spritesmith-main-4.png);background-position:-1605px -1312px;width:40px;height:40px}.shop_headAccessory_mystery_201409{background-image:url(spritesmith-main-4.png);background-position:-1605px -1271px;width:40px;height:40px}.slim_armor_mystery_201409{background-image:url(spritesmith-main-4.png);background-position:-1382px -182px;width:90px;height:90px}.back_mystery_201410{background-image:url(spritesmith-main-4.png);background-position:-830px -649px;width:93px;height:90px}.broad_armor_mystery_201410{background-image:url(spritesmith-main-4.png);background-position:-830px -558px;width:93px;height:90px}.shop_armor_mystery_201410{background-image:url(spritesmith-main-4.png);background-position:-1605px -1230px;width:40px;height:40px}.shop_back_mystery_201410{background-image:url(spritesmith-main-4.png);background-position:-1605px -1189px;width:40px;height:40px}.slim_armor_mystery_201410{background-image:url(spritesmith-main-4.png);background-position:-830px -376px;width:93px;height:90px}.head_mystery_201411{background-image:url(spritesmith-main-4.png);background-position:-1382px -728px;width:90px;height:90px}.shop_head_mystery_201411{background-image:url(spritesmith-main-4.png);background-position:-1605px -1148px;width:40px;height:40px}.shop_weapon_mystery_201411{background-image:url(spritesmith-main-4.png);background-position:-1605px -1107px;width:40px;height:40px}.weapon_mystery_201411{background-image:url(spritesmith-main-4.png);background-position:-1382px -1183px;width:90px;height:90px}.broad_armor_mystery_201412{background-image:url(spritesmith-main-4.png);background-position:0 -1334px;width:90px;height:90px}.head_mystery_201412{background-image:url(spritesmith-main-4.png);background-position:-91px -1334px;width:90px;height:90px}.shop_armor_mystery_201412{background-image:url(spritesmith-main-4.png);background-position:-1605px -1066px;width:40px;height:40px}.shop_head_mystery_201412{background-image:url(spritesmith-main-4.png);background-position:-1605px -1025px;width:40px;height:40px}.slim_armor_mystery_201412{background-image:url(spritesmith-main-4.png);background-position:-364px -1334px;width:90px;height:90px}.broad_armor_mystery_201501{background-image:url(spritesmith-main-4.png);background-position:-455px -1334px;width:90px;height:90px}.head_mystery_201501{background-image:url(spritesmith-main-4.png);background-position:-546px -1334px;width:90px;height:90px}.shop_armor_mystery_201501{background-image:url(spritesmith-main-4.png);background-position:-1605px -984px;width:40px;height:40px}.shop_head_mystery_201501{background-image:url(spritesmith-main-4.png);background-position:-1605px -943px;width:40px;height:40px}.slim_armor_mystery_201501{background-image:url(spritesmith-main-4.png);background-position:-910px -1334px;width:90px;height:90px}.headAccessory_mystery_201502{background-image:url(spritesmith-main-4.png);background-position:-1001px -1334px;width:90px;height:90px}.shop_headAccessory_mystery_201502{background-image:url(spritesmith-main-4.png);background-position:-1605px -902px;width:40px;height:40px}.shop_weapon_mystery_201502{background-image:url(spritesmith-main-4.png);background-position:-1605px -861px;width:40px;height:40px}.weapon_mystery_201502{background-image:url(spritesmith-main-4.png);background-position:-1274px -1334px;width:90px;height:90px}.broad_armor_mystery_201503{background-image:url(spritesmith-main-4.png);background-position:-1473px -728px;width:90px;height:90px}.eyewear_mystery_201503{background-image:url(spritesmith-main-4.png);background-position:-1473px -1274px;width:90px;height:90px}.shop_armor_mystery_201503{background-image:url(spritesmith-main-4.png);background-position:-1605px -492px;width:40px;height:40px}.shop_eyewear_mystery_201503{background-image:url(spritesmith-main-4.png);background-position:-1605px -451px;width:40px;height:40px}.slim_armor_mystery_201503{background-image:url(spritesmith-main-4.png);background-position:-182px -1425px;width:90px;height:90px}.back_mystery_201504{background-image:url(spritesmith-main-4.png);background-position:-273px -1425px;width:90px;height:90px}.broad_armor_mystery_201504{background-image:url(spritesmith-main-4.png);background-position:-364px -1425px;width:90px;height:90px}.shop_armor_mystery_201504{background-image:url(spritesmith-main-4.png);background-position:-1605px -410px;width:40px;height:40px}.shop_back_mystery_201504{background-image:url(spritesmith-main-4.png);background-position:-1605px -369px;width:40px;height:40px}.slim_armor_mystery_201504{background-image:url(spritesmith-main-4.png);background-position:-819px -1425px;width:90px;height:90px}.head_mystery_201505{background-image:url(spritesmith-main-4.png);background-position:-910px -1425px;width:90px;height:90px}.shop_head_mystery_201505{background-image:url(spritesmith-main-4.png);background-position:-1605px -328px;width:40px;height:40px}.shop_weapon_mystery_201505{background-image:url(spritesmith-main-4.png);background-position:-1605px -287px;width:40px;height:40px}.weapon_mystery_201505{background-image:url(spritesmith-main-4.png);background-position:-739px -400px;width:90px;height:90px}.broad_armor_mystery_201506{background-image:url(spritesmith-main-4.png);background-position:-546px -485px;width:90px;height:105px}.eyewear_mystery_201506{background-image:url(spritesmith-main-4.png);background-position:-648px -106px;width:90px;height:105px}.shop_armor_mystery_201506{background-image:url(spritesmith-main-4.png);background-position:-1605px -246px;width:40px;height:40px}.shop_eyewear_mystery_201506{background-image:url(spritesmith-main-4.png);background-position:-1605px -205px;width:40px;height:40px}.slim_armor_mystery_201506{background-image:url(spritesmith-main-4.png);background-position:-648px -318px;width:90px;height:105px}.back_mystery_201507{background-image:url(spritesmith-main-4.png);background-position:-648px -424px;width:90px;height:105px}.eyewear_mystery_201507{background-image:url(spritesmith-main-4.png);background-position:0 -591px;width:90px;height:105px}.shop_back_mystery_201507{background-image:url(spritesmith-main-4.png);background-position:-779px -1557px;width:40px;height:40px}.shop_eyewear_mystery_201507{background-image:url(spritesmith-main-4.png);background-position:-738px -1557px;width:40px;height:40px}.broad_armor_mystery_201508{background-image:url(spritesmith-main-4.png);background-position:0 -788px;width:93px;height:90px}.head_mystery_201508{background-image:url(spritesmith-main-4.png);background-position:-830px -467px;width:93px;height:90px}.shop_armor_mystery_201508{background-image:url(spritesmith-main-4.png);background-position:-697px -1557px;width:40px;height:40px}.shop_head_mystery_201508{background-image:url(spritesmith-main-4.png);background-position:-656px -1557px;width:40px;height:40px}.slim_armor_mystery_201508{background-image:url(spritesmith-main-4.png);background-position:-830px -285px;width:93px;height:90px}.broad_armor_mystery_201509{background-image:url(spritesmith-main-4.png);background-position:-927px -364px;width:90px;height:90px}.head_mystery_201509{background-image:url(spritesmith-main-4.png);background-position:-927px -455px;width:90px;height:90px}.shop_armor_mystery_201509{background-image:url(spritesmith-main-4.png);background-position:-615px -1557px;width:40px;height:40px}.shop_head_mystery_201509{background-image:url(spritesmith-main-4.png);background-position:-1473px -1365px;width:40px;height:40px}.slim_armor_mystery_201509{background-image:url(spritesmith-main-4.png);background-position:-927px -728px;width:90px;height:90px}.back_mystery_201510{background-image:url(spritesmith-main-4.png);background-position:-536px -394px;width:105px;height:90px}.headAccessory_mystery_201510{background-image:url(spritesmith-main-4.png);background-position:-94px -788px;width:93px;height:90px}.shop_back_mystery_201510{background-image:url(spritesmith-main-4.png);background-position:-533px -1557px;width:40px;height:40px}.shop_headAccessory_mystery_201510{background-image:url(spritesmith-main-4.png);background-position:-492px -1557px;width:40px;height:40px}.broad_armor_mystery_301404{background-image:url(spritesmith-main-4.png);background-position:-364px -879px;width:90px;height:90px}.eyewear_mystery_301404{background-image:url(spritesmith-main-4.png);background-position:-455px -879px;width:90px;height:90px}.head_mystery_301404{background-image:url(spritesmith-main-4.png);background-position:-546px -879px;width:90px;height:90px}.shop_armor_mystery_301404{background-image:url(spritesmith-main-4.png);background-position:-451px -1557px;width:40px;height:40px}.shop_eyewear_mystery_301404{background-image:url(spritesmith-main-4.png);background-position:-410px -1557px;width:40px;height:40px}.shop_head_mystery_301404{background-image:url(spritesmith-main-4.png);background-position:-369px -1557px;width:40px;height:40px}.shop_weapon_mystery_301404{background-image:url(spritesmith-main-4.png);background-position:-328px -1557px;width:40px;height:40px}.slim_armor_mystery_301404{background-image:url(spritesmith-main-4.png);background-position:-1018px 0;width:90px;height:90px}.weapon_mystery_301404{background-image:url(spritesmith-main-4.png);background-position:-1018px -91px;width:90px;height:90px}.eyewear_mystery_301405{background-image:url(spritesmith-main-4.png);background-position:-1018px -182px;width:90px;height:90px}.headAccessory_mystery_301405{background-image:url(spritesmith-main-4.png);background-position:-1018px -273px;width:90px;height:90px}.head_mystery_301405{background-image:url(spritesmith-main-4.png);background-position:-1018px -364px;width:90px;height:90px}.shield_mystery_301405{background-image:url(spritesmith-main-4.png);background-position:-1018px -455px;width:90px;height:90px}.shop_eyewear_mystery_301405{background-image:url(spritesmith-main-4.png);background-position:-287px -1557px;width:40px;height:40px}.shop_headAccessory_mystery_301405{background-image:url(spritesmith-main-4.png);background-position:-246px -1557px;width:40px;height:40px}.shop_head_mystery_301405{background-image:url(spritesmith-main-4.png);background-position:-205px -1557px;width:40px;height:40px}.shop_shield_mystery_301405{background-image:url(spritesmith-main-4.png);background-position:-164px -1557px;width:40px;height:40px}.broad_armor_special_spring2015Healer{background-image:url(spritesmith-main-4.png);background-position:0 -970px;width:90px;height:90px}.broad_armor_special_spring2015Mage{background-image:url(spritesmith-main-4.png);background-position:-91px -970px;width:90px;height:90px}.broad_armor_special_spring2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-182px -970px;width:90px;height:90px}.broad_armor_special_spring2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-273px -970px;width:90px;height:90px}.broad_armor_special_springHealer{background-image:url(spritesmith-main-4.png);background-position:-364px -970px;width:90px;height:90px}.broad_armor_special_springMage{background-image:url(spritesmith-main-4.png);background-position:-455px -970px;width:90px;height:90px}.broad_armor_special_springRogue{background-image:url(spritesmith-main-4.png);background-position:-546px -970px;width:90px;height:90px}.broad_armor_special_springWarrior{background-image:url(spritesmith-main-4.png);background-position:-637px -970px;width:90px;height:90px}.headAccessory_special_spring2015Healer{background-image:url(spritesmith-main-4.png);background-position:-728px -970px;width:90px;height:90px}.headAccessory_special_spring2015Mage{background-image:url(spritesmith-main-4.png);background-position:-819px -970px;width:90px;height:90px}.headAccessory_special_spring2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-910px -970px;width:90px;height:90px}.headAccessory_special_spring2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-1001px -970px;width:90px;height:90px}.headAccessory_special_springHealer{background-image:url(spritesmith-main-4.png);background-position:-1109px 0;width:90px;height:90px}.headAccessory_special_springMage{background-image:url(spritesmith-main-4.png);background-position:-1109px -91px;width:90px;height:90px}.headAccessory_special_springRogue{background-image:url(spritesmith-main-4.png);background-position:-1109px -182px;width:90px;height:90px}.headAccessory_special_springWarrior{background-image:url(spritesmith-main-4.png);background-position:-1109px -273px;width:90px;height:90px}.head_special_spring2015Healer{background-image:url(spritesmith-main-4.png);background-position:-1109px -364px;width:90px;height:90px}.head_special_spring2015Mage{background-image:url(spritesmith-main-4.png);background-position:-1109px -455px;width:90px;height:90px}.head_special_spring2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-1109px -546px;width:90px;height:90px}.head_special_spring2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-1109px -637px;width:90px;height:90px}.head_special_springHealer{background-image:url(spritesmith-main-4.png);background-position:-1109px -728px;width:90px;height:90px}.head_special_springMage{background-image:url(spritesmith-main-4.png);background-position:-1109px -819px;width:90px;height:90px}.head_special_springRogue{background-image:url(spritesmith-main-4.png);background-position:-1109px -910px;width:90px;height:90px}.head_special_springWarrior{background-image:url(spritesmith-main-4.png);background-position:0 -1061px;width:90px;height:90px}.shield_special_spring2015Healer{background-image:url(spritesmith-main-4.png);background-position:-91px -1061px;width:90px;height:90px}.shield_special_spring2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-182px -1061px;width:90px;height:90px}.shield_special_spring2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-273px -1061px;width:90px;height:90px}.shield_special_springHealer{background-image:url(spritesmith-main-4.png);background-position:-364px -1061px;width:90px;height:90px}.shield_special_springRogue{background-image:url(spritesmith-main-4.png);background-position:-455px -1061px;width:90px;height:90px}.shield_special_springWarrior{background-image:url(spritesmith-main-4.png);background-position:-546px -1061px;width:90px;height:90px}.shop_armor_special_spring2015Healer{background-image:url(spritesmith-main-4.png);background-position:-123px -1557px;width:40px;height:40px}.shop_armor_special_spring2015Mage{background-image:url(spritesmith-main-4.png);background-position:-82px -1557px;width:40px;height:40px}.shop_armor_special_spring2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-41px -1557px;width:40px;height:40px}.shop_armor_special_spring2015Warrior{background-image:url(spritesmith-main-4.png);background-position:0 -1557px;width:40px;height:40px}.shop_armor_special_springHealer{background-image:url(spritesmith-main-4.png);background-position:-1564px -1476px;width:40px;height:40px}.shop_armor_special_springMage{background-image:url(spritesmith-main-4.png);background-position:-1564px -1435px;width:40px;height:40px}.shop_armor_special_springRogue{background-image:url(spritesmith-main-4.png);background-position:-1564px -1394px;width:40px;height:40px}.shop_armor_special_springWarrior{background-image:url(spritesmith-main-4.png);background-position:-1564px -1066px;width:40px;height:40px}.shop_headAccessory_special_spring2015Healer{background-image:url(spritesmith-main-4.png);background-position:-1564px -1025px;width:40px;height:40px}.shop_headAccessory_special_spring2015Mage{background-image:url(spritesmith-main-4.png);background-position:-1564px -984px;width:40px;height:40px}.shop_headAccessory_special_spring2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-1564px -943px;width:40px;height:40px}.shop_headAccessory_special_spring2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-1564px -902px;width:40px;height:40px}.shop_headAccessory_special_springHealer{background-image:url(spritesmith-main-4.png);background-position:-1564px -861px;width:40px;height:40px}.shop_headAccessory_special_springMage{background-image:url(spritesmith-main-4.png);background-position:-1564px -820px;width:40px;height:40px}.shop_headAccessory_special_springRogue{background-image:url(spritesmith-main-4.png);background-position:-1564px -779px;width:40px;height:40px}.shop_headAccessory_special_springWarrior{background-image:url(spritesmith-main-4.png);background-position:-1564px -738px;width:40px;height:40px}.shop_head_special_spring2015Healer{background-image:url(spritesmith-main-4.png);background-position:-1564px -697px;width:40px;height:40px}.shop_head_special_spring2015Mage{background-image:url(spritesmith-main-4.png);background-position:-1564px -656px;width:40px;height:40px}.shop_head_special_spring2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-1564px -615px;width:40px;height:40px}.shop_head_special_spring2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-1564px -574px;width:40px;height:40px}.shop_head_special_springHealer{background-image:url(spritesmith-main-4.png);background-position:-1564px -533px;width:40px;height:40px}.shop_head_special_springMage{background-image:url(spritesmith-main-4.png);background-position:-1564px -492px;width:40px;height:40px}.shop_head_special_springRogue{background-image:url(spritesmith-main-4.png);background-position:-1564px -451px;width:40px;height:40px}.shop_head_special_springWarrior{background-image:url(spritesmith-main-4.png);background-position:-1564px -410px;width:40px;height:40px}.shop_shield_special_spring2015Healer{background-image:url(spritesmith-main-4.png);background-position:-1564px -369px;width:40px;height:40px}.shop_shield_special_spring2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-1564px -328px;width:40px;height:40px}.shop_shield_special_spring2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-1564px -287px;width:40px;height:40px}.shop_shield_special_springHealer{background-image:url(spritesmith-main-4.png);background-position:-1564px -246px;width:40px;height:40px}.shop_shield_special_springRogue{background-image:url(spritesmith-main-4.png);background-position:-1564px -205px;width:40px;height:40px}.shop_shield_special_springWarrior{background-image:url(spritesmith-main-4.png);background-position:-1564px -164px;width:40px;height:40px}.shop_weapon_special_spring2015Healer{background-image:url(spritesmith-main-4.png);background-position:-369px -1516px;width:40px;height:40px}.shop_weapon_special_spring2015Mage{background-image:url(spritesmith-main-4.png);background-position:-328px -1516px;width:40px;height:40px}.shop_weapon_special_spring2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-287px -1516px;width:40px;height:40px}.shop_weapon_special_spring2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-246px -1516px;width:40px;height:40px}.shop_weapon_special_springHealer{background-image:url(spritesmith-main-4.png);background-position:-205px -1516px;width:40px;height:40px}.shop_weapon_special_springMage{background-image:url(spritesmith-main-4.png);background-position:-164px -1516px;width:40px;height:40px}.shop_weapon_special_springRogue{background-image:url(spritesmith-main-4.png);background-position:-123px -1516px;width:40px;height:40px}.shop_weapon_special_springWarrior{background-image:url(spritesmith-main-4.png);background-position:-82px -1516px;width:40px;height:40px}.slim_armor_special_spring2015Healer{background-image:url(spritesmith-main-4.png);background-position:-1291px -546px;width:90px;height:90px}.slim_armor_special_spring2015Mage{background-image:url(spritesmith-main-4.png);background-position:-1291px -637px;width:90px;height:90px}.slim_armor_special_spring2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-1291px -728px;width:90px;height:90px}.slim_armor_special_spring2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-1291px -819px;width:90px;height:90px}.slim_armor_special_springHealer{background-image:url(spritesmith-main-4.png);background-position:-1291px -910px;width:90px;height:90px}.slim_armor_special_springMage{background-image:url(spritesmith-main-4.png);background-position:-1291px -1001px;width:90px;height:90px}.slim_armor_special_springRogue{background-image:url(spritesmith-main-4.png);background-position:-1291px -1092px;width:90px;height:90px}.slim_armor_special_springWarrior{background-image:url(spritesmith-main-4.png);background-position:0 -1243px;width:90px;height:90px}.weapon_special_spring2015Healer{background-image:url(spritesmith-main-4.png);background-position:-91px -1243px;width:90px;height:90px}.weapon_special_spring2015Mage{background-image:url(spritesmith-main-4.png);background-position:-182px -1243px;width:90px;height:90px}.weapon_special_spring2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-273px -1243px;width:90px;height:90px}.weapon_special_spring2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-364px -1243px;width:90px;height:90px}.weapon_special_springHealer{background-image:url(spritesmith-main-4.png);background-position:-455px -1243px;width:90px;height:90px}.weapon_special_springMage{background-image:url(spritesmith-main-4.png);background-position:-546px -1243px;width:90px;height:90px}.weapon_special_springRogue{background-image:url(spritesmith-main-4.png);background-position:-637px -1243px;width:90px;height:90px}.weapon_special_springWarrior{background-image:url(spritesmith-main-4.png);background-position:-728px -1243px;width:90px;height:90px}.body_special_summer2015Healer{background-image:url(spritesmith-main-4.png);background-position:-819px -1243px;width:90px;height:90px}.body_special_summer2015Mage{background-image:url(spritesmith-main-4.png);background-position:-910px -1243px;width:90px;height:90px}.body_special_summer2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-103px -106px;width:102px;height:105px}.body_special_summer2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-273px -485px;width:90px;height:105px}.body_special_summerHealer{background-image:url(spritesmith-main-4.png);background-position:-364px -485px;width:90px;height:105px}.body_special_summerMage{background-image:url(spritesmith-main-4.png);background-position:-455px -485px;width:90px;height:105px}.broad_armor_special_summer2015Healer{background-image:url(spritesmith-main-4.png);background-position:-1382px 0;width:90px;height:90px}.broad_armor_special_summer2015Mage{background-image:url(spritesmith-main-4.png);background-position:-1382px -91px;width:90px;height:90px}.broad_armor_special_summer2015Rogue{background-image:url(spritesmith-main-4.png);background-position:0 -106px;width:102px;height:105px}.broad_armor_special_summer2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-648px 0;width:90px;height:105px}.broad_armor_special_summerHealer{background-image:url(spritesmith-main-4.png);background-position:-182px -591px;width:90px;height:105px}.broad_armor_special_summerMage{background-image:url(spritesmith-main-4.png);background-position:-648px -212px;width:90px;height:105px}.broad_armor_special_summerRogue{background-image:url(spritesmith-main-4.png);background-position:-424px -182px;width:111px;height:90px}.broad_armor_special_summerWarrior{background-image:url(spritesmith-main-4.png);background-position:-424px -273px;width:111px;height:90px}.eyewear_special_summerRogue{background-image:url(spritesmith-main-4.png);background-position:0 -394px;width:111px;height:90px}.eyewear_special_summerWarrior{background-image:url(spritesmith-main-4.png);background-position:-112px -394px;width:111px;height:90px}.head_special_summer2015Healer{background-image:url(spritesmith-main-4.png);background-position:-1382px -910px;width:90px;height:90px}.head_special_summer2015Mage{background-image:url(spritesmith-main-4.png);background-position:-1382px -1001px;width:90px;height:90px}.head_special_summer2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-206px 0;width:102px;height:105px}.head_special_summer2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-273px -591px;width:90px;height:105px}.head_special_summerHealer{background-image:url(spritesmith-main-4.png);background-position:-364px -591px;width:90px;height:105px}.head_special_summerMage{background-image:url(spritesmith-main-4.png);background-position:-455px -591px;width:90px;height:105px}.head_special_summerRogue{background-image:url(spritesmith-main-4.png);background-position:-336px -394px;width:111px;height:90px}.head_special_summerWarrior{background-image:url(spritesmith-main-4.png);background-position:-536px 0;width:111px;height:90px}.Healer_Summer{background-image:url(spritesmith-main-4.png);background-position:-637px -591px;width:90px;height:105px}.Mage_Summer{background-image:url(spritesmith-main-4.png);background-position:-739px 0;width:90px;height:105px}.SummerRogue14{background-image:url(spritesmith-main-4.png);background-position:-424px 0;width:111px;height:90px}.SummerWarrior14{background-image:url(spritesmith-main-4.png);background-position:-536px -91px;width:111px;height:90px}.shield_special_summer2015Healer{background-image:url(spritesmith-main-4.png);background-position:-728px -1334px;width:90px;height:90px}.shield_special_summer2015Rogue{background-image:url(spritesmith-main-4.png);background-position:0 0;width:102px;height:105px}.shield_special_summer2015Warrior{background-image:url(spritesmith-main-4.png);background-position:0 -485px;width:90px;height:105px}.shield_special_summerHealer{background-image:url(spritesmith-main-4.png);background-position:-536px -288px;width:90px;height:105px}.shield_special_summerRogue{background-image:url(spritesmith-main-4.png);background-position:0 -303px;width:111px;height:90px}.shield_special_summerWarrior{background-image:url(spritesmith-main-4.png);background-position:-309px -182px;width:111px;height:90px}.shop_armor_special_summer2015Healer{background-image:url(spritesmith-main-4.png);background-position:-41px -1516px;width:40px;height:40px}.shop_armor_special_summer2015Mage{background-image:url(spritesmith-main-4.png);background-position:0 -1516px;width:40px;height:40px}.shop_armor_special_summer2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-1488px -1466px;width:40px;height:40px}.shop_armor_special_summer2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-1447px -1466px;width:40px;height:40px}.shop_armor_special_summerHealer{background-image:url(spritesmith-main-4.png);background-position:-1406px -1466px;width:40px;height:40px}.shop_armor_special_summerMage{background-image:url(spritesmith-main-4.png);background-position:-1365px -1466px;width:40px;height:40px}.shop_armor_special_summerRogue{background-image:url(spritesmith-main-4.png);background-position:-1488px -1425px;width:40px;height:40px}.shop_armor_special_summerWarrior{background-image:url(spritesmith-main-4.png);background-position:-1447px -1425px;width:40px;height:40px}.shop_body_special_summer2015Healer{background-image:url(spritesmith-main-4.png);background-position:-1406px -1425px;width:40px;height:40px}.shop_body_special_summer2015Mage{background-image:url(spritesmith-main-4.png);background-position:-1365px -1425px;width:40px;height:40px}.shop_body_special_summer2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-489px -435px;width:40px;height:40px}.shop_body_special_summer2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-448px -435px;width:40px;height:40px}.shop_body_special_summerHealer{background-image:url(spritesmith-main-4.png);background-position:-489px -394px;width:40px;height:40px}.shop_body_special_summerMage{background-image:url(spritesmith-main-4.png);background-position:-448px -394px;width:40px;height:40px}.shop_eyewear_special_summerRogue{background-image:url(spritesmith-main-4.png);background-position:-377px -344px;width:40px;height:40px}.shop_eyewear_special_summerWarrior{background-image:url(spritesmith-main-4.png);background-position:-336px -344px;width:40px;height:40px}.shop_head_special_summer2015Healer{background-image:url(spritesmith-main-4.png);background-position:-377px -303px;width:40px;height:40px}.shop_head_special_summer2015Mage{background-image:url(spritesmith-main-4.png);background-position:-336px -303px;width:40px;height:40px}.shop_head_special_summer2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-230px -253px;width:40px;height:40px}.shop_head_special_summer2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-230px -212px;width:40px;height:40px}.shop_head_special_summerHealer{background-image:url(spritesmith-main-4.png);background-position:-689px -530px;width:40px;height:40px}.shop_head_special_summerMage{background-image:url(spritesmith-main-4.png);background-position:-648px -530px;width:40px;height:40px}.shop_head_special_summerRogue{background-image:url(spritesmith-main-4.png);background-position:-871px -740px;width:40px;height:40px}.shop_head_special_summerWarrior{background-image:url(spritesmith-main-4.png);background-position:-830px -740px;width:40px;height:40px}.shop_shield_special_summer2015Healer{background-image:url(spritesmith-main-4.png);background-position:-968px -819px;width:40px;height:40px}.shop_shield_special_summer2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-927px -819px;width:40px;height:40px}.shop_shield_special_summer2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-1059px -910px;width:40px;height:40px}.shop_shield_special_summerHealer{background-image:url(spritesmith-main-4.png);background-position:-1646px -861px;width:40px;height:40px}.shop_shield_special_summerRogue{background-image:url(spritesmith-main-4.png);background-position:-1150px -1001px;width:40px;height:40px}.shop_shield_special_summerWarrior{background-image:url(spritesmith-main-4.png);background-position:-1109px -1001px;width:40px;height:40px}.shop_weapon_special_summer2015Healer{background-image:url(spritesmith-main-4.png);background-position:-1241px -1092px;width:40px;height:40px}.shop_weapon_special_summer2015Mage{background-image:url(spritesmith-main-4.png);background-position:-1200px -1092px;width:40px;height:40px}.shop_weapon_special_summer2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-1514px -1365px;width:40px;height:40px}.shop_weapon_special_summer2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-574px -1557px;width:40px;height:40px}.shop_weapon_special_summerHealer{background-image:url(spritesmith-main-4.png);background-position:-1382px -1274px;width:40px;height:40px}.shop_weapon_special_summerMage{background-image:url(spritesmith-main-4.png);background-position:-1423px -1274px;width:40px;height:40px}.shop_weapon_special_summerRogue{background-image:url(spritesmith-main-4.png);background-position:-1291px -1183px;width:40px;height:40px}.shop_weapon_special_summerWarrior{background-image:url(spritesmith-main-4.png);background-position:-1332px -1183px;width:40px;height:40px}.slim_armor_special_summer2015Healer{background-image:url(spritesmith-main-4.png);background-position:-1274px -1425px;width:90px;height:90px}.slim_armor_special_summer2015Mage{background-image:url(spritesmith-main-4.png);background-position:-1183px -1425px;width:90px;height:90px}.slim_armor_special_summer2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-103px 0;width:102px;height:105px}.slim_armor_special_summer2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-546px -591px;width:90px;height:105px}.slim_armor_special_summerHealer{background-image:url(spritesmith-main-4.png);background-position:-739px -106px;width:90px;height:105px}.slim_armor_special_summerMage{background-image:url(spritesmith-main-4.png);background-position:-536px -182px;width:90px;height:105px}.slim_armor_special_summerRogue{background-image:url(spritesmith-main-4.png);background-position:-224px -303px;width:111px;height:90px}.slim_armor_special_summerWarrior{background-image:url(spritesmith-main-4.png);background-position:-424px -91px;width:111px;height:90px}.weapon_special_summer2015Healer{background-image:url(spritesmith-main-4.png);background-position:-546px -1425px;width:90px;height:90px}.weapon_special_summer2015Mage{background-image:url(spritesmith-main-4.png);background-position:-455px -1425px;width:90px;height:90px}.weapon_special_summer2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-206px -106px;width:102px;height:105px}.weapon_special_summer2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-91px -485px;width:90px;height:105px}.weapon_special_summerHealer{background-image:url(spritesmith-main-4.png);background-position:-182px -485px;width:90px;height:105px}.weapon_special_summerMage{background-image:url(spritesmith-main-4.png);background-position:-91px -591px;width:90px;height:105px}.weapon_special_summerRogue{background-image:url(spritesmith-main-4.png);background-position:-224px -394px;width:111px;height:90px}.weapon_special_summerWarrior{background-image:url(spritesmith-main-4.png);background-position:-309px -91px;width:111px;height:90px}.broad_armor_special_candycane{background-image:url(spritesmith-main-4.png);background-position:-1473px -1183px;width:90px;height:90px}.broad_armor_special_ski{background-image:url(spritesmith-main-4.png);background-position:-1473px -1092px;width:90px;height:90px}.broad_armor_special_snowflake{background-image:url(spritesmith-main-4.png);background-position:-1473px -1001px;width:90px;height:90px}.broad_armor_special_winter2015Healer{background-image:url(spritesmith-main-4.png);background-position:-1473px -910px;width:90px;height:90px}.broad_armor_special_winter2015Mage{background-image:url(spritesmith-main-4.png);background-position:-1473px -819px;width:90px;height:90px}.broad_armor_special_winter2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-507px -697px;width:96px;height:90px}.broad_armor_special_winter2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-1473px -637px;width:90px;height:90px}.broad_armor_special_yeti{background-image:url(spritesmith-main-4.png);background-position:-1473px -546px;width:90px;height:90px}.head_special_candycane{background-image:url(spritesmith-main-4.png);background-position:-1473px -455px;width:90px;height:90px}.head_special_nye{background-image:url(spritesmith-main-4.png);background-position:-1473px -364px;width:90px;height:90px}.head_special_nye2014{background-image:url(spritesmith-main-4.png);background-position:-1473px -273px;width:90px;height:90px}.head_special_ski{background-image:url(spritesmith-main-4.png);background-position:-1473px -182px;width:90px;height:90px}.head_special_snowflake{background-image:url(spritesmith-main-4.png);background-position:-1473px -91px;width:90px;height:90px}.head_special_winter2015Healer{background-image:url(spritesmith-main-4.png);background-position:-1473px 0;width:90px;height:90px}.head_special_winter2015Mage{background-image:url(spritesmith-main-4.png);background-position:-1365px -1334px;width:90px;height:90px}.head_special_winter2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-410px -697px;width:96px;height:90px}.head_special_winter2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-1291px -455px;width:90px;height:90px}.head_special_yeti{background-image:url(spritesmith-main-4.png);background-position:-1291px -364px;width:90px;height:90px}.shield_special_ski{background-image:url(spritesmith-main-4.png);background-position:0 -697px;width:104px;height:90px}.shield_special_snowflake{background-image:url(spritesmith-main-4.png);background-position:-1291px -182px;width:90px;height:90px}.shield_special_winter2015Healer{background-image:url(spritesmith-main-4.png);background-position:-1291px -91px;width:90px;height:90px}.shield_special_winter2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-604px -697px;width:96px;height:90px}.shield_special_winter2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-1183px -1152px;width:90px;height:90px}.shield_special_yeti{background-image:url(spritesmith-main-4.png);background-position:-1092px -1152px;width:90px;height:90px}.shop_armor_special_candycane{background-image:url(spritesmith-main-4.png);background-position:-410px -1516px;width:40px;height:40px}.shop_armor_special_ski{background-image:url(spritesmith-main-4.png);background-position:-451px -1516px;width:40px;height:40px}.shop_armor_special_snowflake{background-image:url(spritesmith-main-4.png);background-position:-492px -1516px;width:40px;height:40px}.shop_armor_special_winter2015Healer{background-image:url(spritesmith-main-4.png);background-position:-533px -1516px;width:40px;height:40px}.shop_armor_special_winter2015Mage{background-image:url(spritesmith-main-4.png);background-position:-574px -1516px;width:40px;height:40px}.shop_armor_special_winter2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-615px -1516px;width:40px;height:40px}.shop_armor_special_winter2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-656px -1516px;width:40px;height:40px}.shop_armor_special_yeti{background-image:url(spritesmith-main-4.png);background-position:-697px -1516px;width:40px;height:40px}.shop_head_special_candycane{background-image:url(spritesmith-main-4.png);background-position:-738px -1516px;width:40px;height:40px}.shop_head_special_nye{background-image:url(spritesmith-main-4.png);background-position:-779px -1516px;width:40px;height:40px}.shop_head_special_nye2014{background-image:url(spritesmith-main-4.png);background-position:-820px -1516px;width:40px;height:40px}.shop_head_special_ski{background-image:url(spritesmith-main-4.png);background-position:-861px -1516px;width:40px;height:40px}.shop_head_special_snowflake{background-image:url(spritesmith-main-4.png);background-position:-902px -1516px;width:40px;height:40px}.shop_head_special_winter2015Healer{background-image:url(spritesmith-main-4.png);background-position:-943px -1516px;width:40px;height:40px}.shop_head_special_winter2015Mage{background-image:url(spritesmith-main-4.png);background-position:-984px -1516px;width:40px;height:40px}.shop_head_special_winter2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-1025px -1516px;width:40px;height:40px}.shop_head_special_winter2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-1066px -1516px;width:40px;height:40px}.shop_head_special_yeti{background-image:url(spritesmith-main-4.png);background-position:-1107px -1516px;width:40px;height:40px}.shop_shield_special_ski{background-image:url(spritesmith-main-4.png);background-position:-1148px -1516px;width:40px;height:40px}.shop_shield_special_snowflake{background-image:url(spritesmith-main-4.png);background-position:-1189px -1516px;width:40px;height:40px}.shop_shield_special_winter2015Healer{background-image:url(spritesmith-main-4.png);background-position:-1230px -1516px;width:40px;height:40px}.shop_shield_special_winter2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-1271px -1516px;width:40px;height:40px}.shop_shield_special_winter2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-1312px -1516px;width:40px;height:40px}.shop_shield_special_yeti{background-image:url(spritesmith-main-4.png);background-position:-1353px -1516px;width:40px;height:40px}.shop_weapon_special_candycane{background-image:url(spritesmith-main-4.png);background-position:-1394px -1516px;width:40px;height:40px}.shop_weapon_special_ski{background-image:url(spritesmith-main-4.png);background-position:-1435px -1516px;width:40px;height:40px}.shop_weapon_special_snowflake{background-image:url(spritesmith-main-4.png);background-position:-1476px -1516px;width:40px;height:40px}.shop_weapon_special_winter2015Healer{background-image:url(spritesmith-main-4.png);background-position:-1517px -1516px;width:40px;height:40px}.shop_weapon_special_winter2015Mage{background-image:url(spritesmith-main-4.png);background-position:-1564px 0;width:40px;height:40px}.shop_weapon_special_winter2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-1564px -41px;width:40px;height:40px}.shop_weapon_special_winter2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-1564px -82px;width:40px;height:40px}.shop_weapon_special_yeti{background-image:url(spritesmith-main-4.png);background-position:-1564px -123px;width:40px;height:40px}.slim_armor_special_candycane{background-image:url(spritesmith-main-4.png);background-position:-1001px -1152px;width:90px;height:90px}.slim_armor_special_ski{background-image:url(spritesmith-main-4.png);background-position:-910px -1152px;width:90px;height:90px}.slim_armor_special_snowflake{background-image:url(spritesmith-main-4.png);background-position:-819px -1152px;width:90px;height:90px}.slim_armor_special_winter2015Healer{background-image:url(spritesmith-main-4.png);background-position:-728px -1152px;width:90px;height:90px}.slim_armor_special_winter2015Mage{background-image:url(spritesmith-main-4.png);background-position:-637px -1152px;width:90px;height:90px}.slim_armor_special_winter2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-701px -697px;width:96px;height:90px}.slim_armor_special_winter2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-455px -1152px;width:90px;height:90px}.slim_armor_special_yeti{background-image:url(spritesmith-main-4.png);background-position:-364px -1152px;width:90px;height:90px}.weapon_special_candycane{background-image:url(spritesmith-main-4.png);background-position:-273px -1152px;width:90px;height:90px}.weapon_special_ski{background-image:url(spritesmith-main-4.png);background-position:-182px -1152px;width:90px;height:90px}.weapon_special_snowflake{background-image:url(spritesmith-main-4.png);background-position:-91px -1152px;width:90px;height:90px}.weapon_special_winter2015Healer{background-image:url(spritesmith-main-4.png);background-position:0 -1152px;width:90px;height:90px}.weapon_special_winter2015Mage{background-image:url(spritesmith-main-4.png);background-position:-1200px -1001px;width:90px;height:90px}.weapon_special_winter2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-313px -697px;width:96px;height:90px}.weapon_special_winter2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-1200px -819px;width:90px;height:90px}.weapon_special_yeti{background-image:url(spritesmith-main-4.png);background-position:-1200px -728px;width:90px;height:90px}.back_special_wondercon_black{background-image:url(spritesmith-main-4.png);background-position:-1200px -637px;width:90px;height:90px}.back_special_wondercon_red{background-image:url(spritesmith-main-4.png);background-position:-1200px -546px;width:90px;height:90px}.body_special_wondercon_black{background-image:url(spritesmith-main-4.png);background-position:-1200px -455px;width:90px;height:90px}.body_special_wondercon_gold{background-image:url(spritesmith-main-4.png);background-position:-1200px -364px;width:90px;height:90px}.body_special_wondercon_red{background-image:url(spritesmith-main-4.png);background-position:-1200px -273px;width:90px;height:90px}.eyewear_special_wondercon_black{background-image:url(spritesmith-main-4.png);background-position:-1200px -182px;width:90px;height:90px}.eyewear_special_wondercon_red{background-image:url(spritesmith-main-4.png);background-position:-1200px -91px;width:90px;height:90px}.shop_back_special_wondercon_black{background-image:url(spritesmith-main-4.png);background-position:-1564px -1107px;width:40px;height:40px}.shop_back_special_wondercon_red{background-image:url(spritesmith-main-4.png);background-position:-1564px -1148px;width:40px;height:40px}.shop_body_special_wondercon_black{background-image:url(spritesmith-main-4.png);background-position:-1564px -1189px;width:40px;height:40px}.shop_body_special_wondercon_gold{background-image:url(spritesmith-main-4.png);background-position:-1564px -1230px;width:40px;height:40px}.shop_body_special_wondercon_red{background-image:url(spritesmith-main-4.png);background-position:-1564px -1271px;width:40px;height:40px}.shop_eyewear_special_wondercon_black{background-image:url(spritesmith-main-4.png);background-position:-1564px -1312px;width:40px;height:40px}.shop_eyewear_special_wondercon_red{background-image:url(spritesmith-main-4.png);background-position:-1564px -1353px;width:40px;height:40px}.head_0{background-image:url(spritesmith-main-4.png);background-position:-1200px 0;width:90px;height:90px}.customize-option.head_0{background-image:url(spritesmith-main-4.png);background-position:-1225px -15px;width:60px;height:60px}.head_healer_1{background-image:url(spritesmith-main-4.png);background-position:-1092px -1061px;width:90px;height:90px}.head_healer_2{background-image:url(spritesmith-main-4.png);background-position:-1001px -1061px;width:90px;height:90px}.head_healer_3{background-image:url(spritesmith-main-4.png);background-position:-910px -1061px;width:90px;height:90px}.head_healer_4{background-image:url(spritesmith-main-4.png);background-position:-819px -1061px;width:90px;height:90px}.head_healer_5{background-image:url(spritesmith-main-4.png);background-position:-728px -1061px;width:90px;height:90px}.head_rogue_1{background-image:url(spritesmith-main-4.png);background-position:-637px -1061px;width:90px;height:90px}.head_rogue_2{background-image:url(spritesmith-main-4.png);background-position:-1018px -819px;width:90px;height:90px}.head_rogue_3{background-image:url(spritesmith-main-4.png);background-position:-1018px -728px;width:90px;height:90px}.head_rogue_4{background-image:url(spritesmith-main-4.png);background-position:-1018px -637px;width:90px;height:90px}.head_rogue_5{background-image:url(spritesmith-main-4.png);background-position:-1018px -546px;width:90px;height:90px}.head_special_2{background-image:url(spritesmith-main-4.png);background-position:-910px -879px;width:90px;height:90px}.head_special_fireCoralCirclet{background-image:url(spritesmith-main-4.png);background-position:-819px -879px;width:90px;height:90px}.head_warrior_1{background-image:url(spritesmith-main-4.png);background-position:-728px -879px;width:90px;height:90px}.head_warrior_2{background-image:url(spritesmith-main-4.png);background-position:-637px -879px;width:90px;height:90px}.head_warrior_3{background-image:url(spritesmith-main-4.png);background-position:-273px -879px;width:90px;height:90px}.head_warrior_4{background-image:url(spritesmith-main-4.png);background-position:-182px -879px;width:90px;height:90px}.head_warrior_5{background-image:url(spritesmith-main-4.png);background-position:-927px -637px;width:90px;height:90px}.head_wizard_1{background-image:url(spritesmith-main-4.png);background-position:-927px -546px;width:90px;height:90px}.head_wizard_2{background-image:url(spritesmith-main-4.png);background-position:-927px -182px;width:90px;height:90px}.head_wizard_3{background-image:url(spritesmith-main-4.png);background-position:-927px -91px;width:90px;height:90px}.head_wizard_4{background-image:url(spritesmith-main-4.png);background-position:-734px -788px;width:90px;height:90px}.head_wizard_5{background-image:url(spritesmith-main-4.png);background-position:-643px -788px;width:90px;height:90px}.shop_head_healer_1{background-image:url(spritesmith-main-4.png);background-position:-820px -1557px;width:40px;height:40px}.shop_head_healer_2{background-image:url(spritesmith-main-4.png);background-position:-861px -1557px;width:40px;height:40px}.shop_head_healer_3{background-image:url(spritesmith-main-4.png);background-position:-902px -1557px;width:40px;height:40px}.shop_head_healer_4{background-image:url(spritesmith-main-4.png);background-position:-943px -1557px;width:40px;height:40px}.shop_head_healer_5{background-image:url(spritesmith-main-4.png);background-position:-984px -1557px;width:40px;height:40px}.shop_head_rogue_1{background-image:url(spritesmith-main-4.png);background-position:-1025px -1557px;width:40px;height:40px}.shop_head_rogue_2{background-image:url(spritesmith-main-4.png);background-position:-1066px -1557px;width:40px;height:40px}.shop_head_rogue_3{background-image:url(spritesmith-main-4.png);background-position:-1107px -1557px;width:40px;height:40px}.shop_head_rogue_4{background-image:url(spritesmith-main-4.png);background-position:-1148px -1557px;width:40px;height:40px}.shop_head_rogue_5{background-image:url(spritesmith-main-4.png);background-position:-1189px -1557px;width:40px;height:40px}.shop_head_special_0{background-image:url(spritesmith-main-4.png);background-position:-1230px -1557px;width:40px;height:40px}.shop_head_special_1{background-image:url(spritesmith-main-4.png);background-position:-1271px -1557px;width:40px;height:40px}.shop_head_special_2{background-image:url(spritesmith-main-4.png);background-position:-1312px -1557px;width:40px;height:40px}.shop_head_special_fireCoralCirclet{background-image:url(spritesmith-main-4.png);background-position:-1353px -1557px;width:40px;height:40px}.shop_head_warrior_1{background-image:url(spritesmith-main-4.png);background-position:-1394px -1557px;width:40px;height:40px}.shop_head_warrior_2{background-image:url(spritesmith-main-4.png);background-position:-1435px -1557px;width:40px;height:40px}.shop_head_warrior_3{background-image:url(spritesmith-main-4.png);background-position:-1476px -1557px;width:40px;height:40px}.shop_head_warrior_4{background-image:url(spritesmith-main-4.png);background-position:-1517px -1557px;width:40px;height:40px}.shop_head_warrior_5{background-image:url(spritesmith-main-4.png);background-position:-1558px -1557px;width:40px;height:40px}.shop_head_wizard_1{background-image:url(spritesmith-main-4.png);background-position:-1605px 0;width:40px;height:40px}.shop_head_wizard_2{background-image:url(spritesmith-main-4.png);background-position:-1605px -41px;width:40px;height:40px}.shop_head_wizard_3{background-image:url(spritesmith-main-4.png);background-position:-1605px -82px;width:40px;height:40px}.shop_head_wizard_4{background-image:url(spritesmith-main-4.png);background-position:-1605px -123px;width:40px;height:40px}.shop_head_wizard_5{background-image:url(spritesmith-main-4.png);background-position:-1605px -164px;width:40px;height:40px}.headAccessory_special_bearEars{background-image:url(spritesmith-main-4.png);background-position:-279px -788px;width:90px;height:90px}.customize-option.headAccessory_special_bearEars{background-image:url(spritesmith-main-4.png);background-position:-304px -803px;width:60px;height:60px}.headAccessory_special_cactusEars{background-image:url(spritesmith-main-4.png);background-position:-188px -788px;width:90px;height:90px}.customize-option.headAccessory_special_cactusEars{background-image:url(spritesmith-main-4.png);background-position:-213px -803px;width:60px;height:60px}.headAccessory_special_foxEars{background-image:url(spritesmith-main-4.png);background-position:-1092px -1425px;width:90px;height:90px}.customize-option.headAccessory_special_foxEars{background-image:url(spritesmith-main-4.png);background-position:-1117px -1440px;width:60px;height:60px}.headAccessory_special_lionEars{background-image:url(spritesmith-main-4.png);background-position:-1001px -1425px;width:90px;height:90px}.customize-option.headAccessory_special_lionEars{background-image:url(spritesmith-main-4.png);background-position:-1026px -1440px;width:60px;height:60px}.headAccessory_special_pandaEars{background-image:url(spritesmith-main-4.png);background-position:-728px -1425px;width:90px;height:90px}.customize-option.headAccessory_special_pandaEars{background-image:url(spritesmith-main-4.png);background-position:-753px -1440px;width:60px;height:60px}.headAccessory_special_pigEars{background-image:url(spritesmith-main-4.png);background-position:-637px -1425px;width:90px;height:90px}.customize-option.headAccessory_special_pigEars{background-image:url(spritesmith-main-4.png);background-position:-662px -1440px;width:60px;height:60px}.headAccessory_special_tigerEars{background-image:url(spritesmith-main-4.png);background-position:-91px -1425px;width:90px;height:90px}.customize-option.headAccessory_special_tigerEars{background-image:url(spritesmith-main-4.png);background-position:-116px -1440px;width:60px;height:60px}.headAccessory_special_wolfEars{background-image:url(spritesmith-main-4.png);background-position:0 -1425px;width:90px;height:90px}.customize-option.headAccessory_special_wolfEars{background-image:url(spritesmith-main-4.png);background-position:-25px -1440px;width:60px;height:60px}.shop_headAccessory_special_bearEars{background-image:url(spritesmith-main-4.png);background-position:-1605px -533px;width:40px;height:40px}.shop_headAccessory_special_cactusEars{background-image:url(spritesmith-main-4.png);background-position:-1605px -574px;width:40px;height:40px}.shop_headAccessory_special_foxEars{background-image:url(spritesmith-main-4.png);background-position:-1605px -615px;width:40px;height:40px}.shop_headAccessory_special_lionEars{background-image:url(spritesmith-main-4.png);background-position:-1605px -656px;width:40px;height:40px}.shop_headAccessory_special_pandaEars{background-image:url(spritesmith-main-4.png);background-position:-1605px -697px;width:40px;height:40px}.shop_headAccessory_special_pigEars{background-image:url(spritesmith-main-4.png);background-position:-1605px -738px;width:40px;height:40px}.shop_headAccessory_special_tigerEars{background-image:url(spritesmith-main-4.png);background-position:-1605px -779px;width:40px;height:40px}.shop_headAccessory_special_wolfEars{background-image:url(spritesmith-main-4.png);background-position:-1605px -820px;width:40px;height:40px}.shield_healer_1{background-image:url(spritesmith-main-4.png);background-position:-1183px -1334px;width:90px;height:90px}.shield_healer_2{background-image:url(spritesmith-main-4.png);background-position:-1092px -1334px;width:90px;height:90px}.shield_healer_3{background-image:url(spritesmith-main-4.png);background-position:-819px -1334px;width:90px;height:90px}.shield_healer_4{background-image:url(spritesmith-main-4.png);background-position:-637px -1334px;width:90px;height:90px}.shield_healer_5{background-image:url(spritesmith-main-4.png);background-position:-273px -1334px;width:90px;height:90px}.shield_rogue_0{background-image:url(spritesmith-main-4.png);background-position:-182px -1334px;width:90px;height:90px}.shield_rogue_1{background-image:url(spritesmith-main-4.png);background-position:-105px -697px;width:103px;height:90px}.shield_rogue_2{background-image:url(spritesmith-main-4.png);background-position:-209px -697px;width:103px;height:90px}.shield_rogue_3{background-image:url(spritesmith-main-4.png);background-position:0 -212px;width:114px;height:90px}.shield_rogue_4{background-image:url(spritesmith-main-4.png);background-position:-830px 0;width:96px;height:90px}.shield_rogue_5{background-image:url(spritesmith-main-4.png);background-position:-115px -212px;width:114px;height:90px}.shield_rogue_6{background-image:url(spritesmith-main-4.png);background-position:-309px 0;width:114px;height:90px}.shield_special_1{background-image:url(spritesmith-main-4.png);background-position:-1291px 0;width:90px;height:90px}.shield_special_goldenknight{background-image:url(spritesmith-main-4.png);background-position:-112px -303px;width:111px;height:90px}.shield_special_moonpearlShield{background-image:url(spritesmith-main-4.png);background-position:-927px -273px;width:90px;height:90px}.shield_warrior_1{background-image:url(spritesmith-main-4.png);background-position:-927px 0;width:90px;height:90px}.shield_warrior_2{background-image:url(spritesmith-main-4.png);background-position:-370px -788px;width:90px;height:90px}.shield_warrior_3{background-image:url(spritesmith-main-4.png);background-position:-739px -582px;width:90px;height:90px}.shield_warrior_4{background-image:url(spritesmith-main-4.png);background-position:-1382px -637px;width:90px;height:90px}.shield_warrior_5{background-image:url(spritesmith-main-4.png);background-position:-1382px -546px;width:90px;height:90px}.shop_shield_healer_1{background-image:url(spritesmith-main-4.png);background-position:-123px -1598px;width:40px;height:40px}.shop_shield_healer_2{background-image:url(spritesmith-main-4.png);background-position:-164px -1598px;width:40px;height:40px}.shop_shield_healer_3{background-image:url(spritesmith-main-4.png);background-position:-205px -1598px;width:40px;height:40px}.shop_shield_healer_4{background-image:url(spritesmith-main-4.png);background-position:-246px -1598px;width:40px;height:40px}.shop_shield_healer_5{background-image:url(spritesmith-main-4.png);background-position:-287px -1598px;width:40px;height:40px}.shop_shield_rogue_0{background-image:url(spritesmith-main-4.png);background-position:-328px -1598px;width:40px;height:40px}.shop_shield_rogue_1{background-image:url(spritesmith-main-4.png);background-position:-369px -1598px;width:40px;height:40px}.shop_shield_rogue_2{background-image:url(spritesmith-main-4.png);background-position:-410px -1598px;width:40px;height:40px}.shop_shield_rogue_3{background-image:url(spritesmith-main-4.png);background-position:-451px -1598px;width:40px;height:40px}.shop_shield_rogue_4{background-image:url(spritesmith-main-4.png);background-position:-492px -1598px;width:40px;height:40px}.shop_shield_rogue_5{background-image:url(spritesmith-main-4.png);background-position:-533px -1598px;width:40px;height:40px}.shop_shield_rogue_6{background-image:url(spritesmith-main-4.png);background-position:-574px -1598px;width:40px;height:40px}.shop_shield_special_0{background-image:url(spritesmith-main-4.png);background-position:-615px -1598px;width:40px;height:40px}.shop_shield_special_1{background-image:url(spritesmith-main-4.png);background-position:-656px -1598px;width:40px;height:40px}.shop_shield_special_goldenknight{background-image:url(spritesmith-main-4.png);background-position:-697px -1598px;width:40px;height:40px}.shop_shield_special_moonpearlShield{background-image:url(spritesmith-main-4.png);background-position:-738px -1598px;width:40px;height:40px}.shop_shield_warrior_1{background-image:url(spritesmith-main-4.png);background-position:-779px -1598px;width:40px;height:40px}.shop_shield_warrior_2{background-image:url(spritesmith-main-4.png);background-position:-820px -1598px;width:40px;height:40px}.shop_shield_warrior_3{background-image:url(spritesmith-main-4.png);background-position:-861px -1598px;width:40px;height:40px}.shop_shield_warrior_4{background-image:url(spritesmith-main-4.png);background-position:-902px -1598px;width:40px;height:40px}.shop_shield_warrior_5{background-image:url(spritesmith-main-4.png);background-position:-943px -1598px;width:40px;height:40px}.shop_weapon_healer_0{background-image:url(spritesmith-main-4.png);background-position:-984px -1598px;width:40px;height:40px}.shop_weapon_healer_1{background-image:url(spritesmith-main-4.png);background-position:-1025px -1598px;width:40px;height:40px}.shop_weapon_healer_2{background-image:url(spritesmith-main-4.png);background-position:-1066px -1598px;width:40px;height:40px}.shop_weapon_healer_3{background-image:url(spritesmith-main-4.png);background-position:-1107px -1598px;width:40px;height:40px}.shop_weapon_healer_4{background-image:url(spritesmith-main-4.png);background-position:-1148px -1598px;width:40px;height:40px}.shop_weapon_healer_5{background-image:url(spritesmith-main-4.png);background-position:-1189px -1598px;width:40px;height:40px}.shop_weapon_healer_6{background-image:url(spritesmith-main-4.png);background-position:-1230px -1598px;width:40px;height:40px}.shop_weapon_rogue_0{background-image:url(spritesmith-main-4.png);background-position:-1271px -1598px;width:40px;height:40px}.shop_weapon_rogue_1{background-image:url(spritesmith-main-4.png);background-position:-1312px -1598px;width:40px;height:40px}.shop_weapon_rogue_2{background-image:url(spritesmith-main-4.png);background-position:-1353px -1598px;width:40px;height:40px}.shop_weapon_rogue_3{background-image:url(spritesmith-main-4.png);background-position:-1394px -1598px;width:40px;height:40px}.shop_weapon_rogue_4{background-image:url(spritesmith-main-4.png);background-position:-1435px -1598px;width:40px;height:40px}.shop_weapon_rogue_5{background-image:url(spritesmith-main-4.png);background-position:-1476px -1598px;width:40px;height:40px}.shop_weapon_rogue_6{background-image:url(spritesmith-main-4.png);background-position:-1517px -1598px;width:40px;height:40px}.shop_weapon_special_0{background-image:url(spritesmith-main-4.png);background-position:-1558px -1598px;width:40px;height:40px}.shop_weapon_special_1{background-image:url(spritesmith-main-4.png);background-position:-1599px -1598px;width:40px;height:40px}.shop_weapon_special_2{background-image:url(spritesmith-main-4.png);background-position:-1646px 0;width:40px;height:40px}.shop_weapon_special_3{background-image:url(spritesmith-main-4.png);background-position:-1646px -41px;width:40px;height:40px}.shop_weapon_special_critical{background-image:url(spritesmith-main-4.png);background-position:-1646px -82px;width:40px;height:40px}.shop_weapon_special_tridentOfCrashingTides{background-image:url(spritesmith-main-4.png);background-position:-1646px -123px;width:40px;height:40px}.shop_weapon_warrior_0{background-image:url(spritesmith-main-4.png);background-position:-1646px -164px;width:40px;height:40px}.shop_weapon_warrior_1{background-image:url(spritesmith-main-4.png);background-position:-1646px -205px;width:40px;height:40px}.shop_weapon_warrior_2{background-image:url(spritesmith-main-4.png);background-position:-1646px -246px;width:40px;height:40px}.shop_weapon_warrior_3{background-image:url(spritesmith-main-4.png);background-position:-1646px -287px;width:40px;height:40px}.shop_weapon_warrior_4{background-image:url(spritesmith-main-4.png);background-position:-1646px -328px;width:40px;height:40px}.shop_weapon_warrior_5{background-image:url(spritesmith-main-4.png);background-position:-1646px -369px;width:40px;height:40px}.shop_weapon_warrior_6{background-image:url(spritesmith-main-4.png);background-position:-1646px -410px;width:40px;height:40px}.shop_weapon_wizard_0{background-image:url(spritesmith-main-4.png);background-position:-1646px -451px;width:40px;height:40px}.shop_weapon_wizard_1{background-image:url(spritesmith-main-4.png);background-position:-1646px -492px;width:40px;height:40px}.shop_weapon_wizard_2{background-image:url(spritesmith-main-4.png);background-position:-1646px -533px;width:40px;height:40px}.shop_weapon_wizard_3{background-image:url(spritesmith-main-4.png);background-position:-1646px -574px;width:40px;height:40px}.shop_weapon_wizard_4{background-image:url(spritesmith-main-4.png);background-position:-1646px -615px;width:40px;height:40px}.shop_weapon_wizard_5{background-image:url(spritesmith-main-4.png);background-position:-1646px -656px;width:40px;height:40px}.shop_weapon_wizard_6{background-image:url(spritesmith-main-4.png);background-position:-1646px -697px;width:40px;height:40px}.weapon_healer_0{background-image:url(spritesmith-main-4.png);background-position:-1382px -273px;width:90px;height:90px}.weapon_healer_1{background-image:url(spritesmith-main-4.png);background-position:-1274px -1243px;width:90px;height:90px}.weapon_healer_2{background-image:url(spritesmith-main-4.png);background-position:-739px -491px;width:90px;height:90px}.weapon_healer_3{background-image:url(spritesmith-main-4.png);background-position:-1382px -1092px;width:90px;height:90px}.weapon_healer_4{background-image:url(spritesmith-main-5.png);background-position:-728px -1523px;width:90px;height:90px}.weapon_healer_5{background-image:url(spritesmith-main-5.png);background-position:-1274px -1523px;width:90px;height:90px}.weapon_healer_6{background-image:url(spritesmith-main-5.png);background-position:0 -1523px;width:90px;height:90px}.weapon_rogue_0{background-image:url(spritesmith-main-5.png);background-position:-91px -1523px;width:90px;height:90px}.weapon_rogue_1{background-image:url(spritesmith-main-5.png);background-position:-182px -1523px;width:90px;height:90px}.weapon_rogue_2{background-image:url(spritesmith-main-5.png);background-position:-273px -1523px;width:90px;height:90px}.weapon_rogue_3{background-image:url(spritesmith-main-5.png);background-position:-364px -1523px;width:90px;height:90px}.weapon_rogue_4{background-image:url(spritesmith-main-5.png);background-position:-455px -1523px;width:90px;height:90px}.weapon_rogue_5{background-image:url(spritesmith-main-5.png);background-position:-546px -1523px;width:90px;height:90px}.weapon_rogue_6{background-image:url(spritesmith-main-5.png);background-position:-637px -1523px;width:90px;height:90px}.weapon_special_1{background-image:url(spritesmith-main-5.png);background-position:-485px -1402px;width:102px;height:90px}.weapon_special_2{background-image:url(spritesmith-main-5.png);background-position:-819px -1523px;width:90px;height:90px}.weapon_special_3{background-image:url(spritesmith-main-5.png);background-position:-910px -1523px;width:90px;height:90px}.weapon_special_tridentOfCrashingTides{background-image:url(spritesmith-main-5.png);background-position:-1001px -1523px;width:90px;height:90px}.weapon_warrior_0{background-image:url(spritesmith-main-5.png);background-position:-1092px -1523px;width:90px;height:90px}.weapon_warrior_1{background-image:url(spritesmith-main-5.png);background-position:-1183px -1523px;width:90px;height:90px}.weapon_warrior_2{background-image:url(spritesmith-main-5.png);background-position:-1536px 0;width:90px;height:90px}.weapon_warrior_3{background-image:url(spritesmith-main-5.png);background-position:-1536px -182px;width:90px;height:90px}.weapon_warrior_4{background-image:url(spritesmith-main-5.png);background-position:-1536px -455px;width:90px;height:90px}.weapon_warrior_5{background-image:url(spritesmith-main-5.png);background-position:-1536px -546px;width:90px;height:90px}.weapon_warrior_6{background-image:url(spritesmith-main-5.png);background-position:-1536px -637px;width:90px;height:90px}.weapon_wizard_0{background-image:url(spritesmith-main-5.png);background-position:-1536px -728px;width:90px;height:90px}.weapon_wizard_1{background-image:url(spritesmith-main-5.png);background-position:-1536px -819px;width:90px;height:90px}.weapon_wizard_2{background-image:url(spritesmith-main-5.png);background-position:-1536px -910px;width:90px;height:90px}.weapon_wizard_3{background-image:url(spritesmith-main-5.png);background-position:-1536px -1001px;width:90px;height:90px}.weapon_wizard_4{background-image:url(spritesmith-main-5.png);background-position:-1536px -1092px;width:90px;height:90px}.weapon_wizard_5{background-image:url(spritesmith-main-5.png);background-position:-1536px -1183px;width:90px;height:90px}.weapon_wizard_6{background-image:url(spritesmith-main-5.png);background-position:-1536px -1274px;width:90px;height:90px}.GrimReaper{background-image:url(spritesmith-main-5.png);background-position:-1536px -1456px;width:57px;height:66px}.Pet_Currency_Gem{background-image:url(spritesmith-main-5.png);background-position:-1476px -1402px;width:45px;height:39px}.Pet_Currency_Gem1x{background-image:url(spritesmith-main-5.png);background-position:-1767px -1692px;width:15px;height:13px}.Pet_Currency_Gem2x{background-image:url(spritesmith-main-5.png);background-position:-1627px -1584px;width:30px;height:26px}.PixelPaw-Gold{background-image:url(spritesmith-main-5.png);background-position:-1627px -544px;width:51px;height:51px}.PixelPaw{background-image:url(spritesmith-main-5.png);background-position:-1627px -492px;width:51px;height:51px}.PixelPaw002{background-image:url(spritesmith-main-5.png);background-position:-1627px -440px;width:51px;height:51px}.avatar_floral_healer{background-image:url(spritesmith-main-5.png);background-position:-385px -1402px;width:99px;height:99px}.avatar_floral_rogue{background-image:url(spritesmith-main-5.png);background-position:-285px -1402px;width:99px;height:99px}.avatar_floral_warrior{background-image:url(spritesmith-main-5.png);background-position:-185px -1402px;width:99px;height:99px}.avatar_floral_wizard{background-image:url(spritesmith-main-5.png);background-position:-85px -1402px;width:99px;height:99px}.empty_bottles{background-image:url(spritesmith-main-5.png);background-position:-1365px -1523px;width:64px;height:54px}.inventory_present{background-image:url(spritesmith-main-5.png);background-position:-490px -1666px;width:48px;height:51px}.inventory_present_01{background-image:url(spritesmith-main-5.png);background-position:-392px -1666px;width:48px;height:51px}.inventory_present_02{background-image:url(spritesmith-main-5.png);background-position:-343px -1666px;width:48px;height:51px}.inventory_present_03{background-image:url(spritesmith-main-5.png);background-position:-294px -1666px;width:48px;height:51px}.inventory_present_04{background-image:url(spritesmith-main-5.png);background-position:-1627px -596px;width:48px;height:51px}.inventory_present_05{background-image:url(spritesmith-main-5.png);background-position:-196px -1666px;width:48px;height:51px}.inventory_present_06{background-image:url(spritesmith-main-5.png);background-position:-147px -1666px;width:48px;height:51px}.inventory_present_07{background-image:url(spritesmith-main-5.png);background-position:-98px -1666px;width:48px;height:51px}.inventory_present_08{background-image:url(spritesmith-main-5.png);background-position:-49px -1666px;width:48px;height:51px}.inventory_present_09{background-image:url(spritesmith-main-5.png);background-position:0 -1666px;width:48px;height:51px}.inventory_present_10{background-image:url(spritesmith-main-5.png);background-position:-1685px -1612px;width:48px;height:51px}.inventory_present_11{background-image:url(spritesmith-main-5.png);background-position:-1685px -1560px;width:48px;height:51px}.inventory_present_12{background-image:url(spritesmith-main-5.png);background-position:-1685px -1508px;width:48px;height:51px}.inventory_quest_scroll{background-image:url(spritesmith-main-5.png);background-position:-1685px -1456px;width:48px;height:51px}.inventory_quest_scroll_locked{background-image:url(spritesmith-main-5.png);background-position:-1685px -1404px;width:48px;height:51px}.inventory_special_fortify{background-image:url(spritesmith-main-5.png);background-position:-1627px -110px;width:57px;height:54px}.inventory_special_greeting{background-image:url(spritesmith-main-5.png);background-position:-1430px -1523px;width:57px;height:54px}.inventory_special_nye{background-image:url(spritesmith-main-5.png);background-position:-1488px -1523px;width:57px;height:54px}.inventory_special_opaquePotion{background-image:url(spritesmith-main-5.png);background-position:-1011px -1442px;width:40px;height:40px}.inventory_special_seafoam{background-image:url(spritesmith-main-5.png);background-position:-1627px -385px;width:57px;height:54px}.inventory_special_shinySeed{background-image:url(spritesmith-main-5.png);background-position:-1627px -330px;width:57px;height:54px}.inventory_special_snowball{background-image:url(spritesmith-main-5.png);background-position:-1627px -275px;width:57px;height:54px}.inventory_special_spookDust{background-image:url(spritesmith-main-5.png);background-position:-1627px -220px;width:57px;height:54px}.inventory_special_thankyou{background-image:url(spritesmith-main-5.png);background-position:-1627px -165px;width:57px;height:54px}.inventory_special_trinket{background-image:url(spritesmith-main-5.png);background-position:-1685px -832px;width:48px;height:51px}.inventory_special_valentine{background-image:url(spritesmith-main-5.png);background-position:-1627px -55px;width:57px;height:54px}.knockout{background-image:url(spritesmith-main-5.png);background-position:-588px -1442px;width:120px;height:47px}.pet_key{background-image:url(spritesmith-main-5.png);background-position:-1627px 0;width:57px;height:54px}.rebirth_orb{background-image:url(spritesmith-main-5.png);background-position:-1546px -1523px;width:57px;height:54px}.seafoam_star{background-image:url(spritesmith-main-5.png);background-position:-1536px -91px;width:90px;height:90px}.shop_armoire{background-image:url(spritesmith-main-5.png);background-position:-970px -1442px;width:40px;height:40px}.snowman{background-image:url(spritesmith-main-5.png);background-position:-1536px -273px;width:90px;height:90px}.spookman{background-image:url(spritesmith-main-5.png);background-position:-1536px -364px;width:90px;height:90px}.zzz{background-image:url(spritesmith-main-5.png);background-position:-929px -1442px;width:40px;height:40px}.zzz_light{background-image:url(spritesmith-main-5.png);background-position:-1134px -1442px;width:40px;height:40px}.npc_alex{background-image:url(spritesmith-main-5.png);background-position:-151px -1251px;width:162px;height:138px}.npc_bailey{background-image:url(spritesmith-main-5.png);background-position:-1461px -1251px;width:60px;height:72px}.npc_daniel{background-image:url(spritesmith-main-5.png);background-position:-477px -1251px;width:135px;height:123px}.npc_justin{background-image:url(spritesmith-main-5.png);background-position:0 -1402px;width:84px;height:120px}.npc_justin_head{background-image:url(spritesmith-main-5.png);background-position:-1298px -1442px;width:36px;height:39px}.npc_matt{background-image:url(spritesmith-main-5.png);background-position:-1322px -954px;width:195px;height:138px}.npc_timetravelers{background-image:url(spritesmith-main-5.png);background-position:-1322px -815px;width:195px;height:138px}.npc_timetravelers_active{background-image:url(spritesmith-main-5.png);background-position:-1322px -676px;width:195px;height:138px}.npc_tyler{background-image:url(spritesmith-main-5.png);background-position:-1536px -1365px;width:90px;height:90px}.seasonalshop_closed{background-image:url(spritesmith-main-5.png);background-position:-314px -1251px;width:162px;height:138px}.inventory_quest_scroll_atom1{background-image:url(spritesmith-main-5.png);background-position:-1685px -208px;width:48px;height:51px}.inventory_quest_scroll_atom1_locked{background-image:url(spritesmith-main-5.png);background-position:-1685px -156px;width:48px;height:51px}.inventory_quest_scroll_atom2{background-image:url(spritesmith-main-5.png);background-position:-1685px -104px;width:48px;height:51px}.inventory_quest_scroll_atom2_locked{background-image:url(spritesmith-main-5.png);background-position:-1685px -52px;width:48px;height:51px}.inventory_quest_scroll_atom3{background-image:url(spritesmith-main-5.png);background-position:-637px -1614px;width:48px;height:51px}.inventory_quest_scroll_atom3_locked{background-image:url(spritesmith-main-5.png);background-position:-588px -1614px;width:48px;height:51px}.inventory_quest_scroll_basilist{background-image:url(spritesmith-main-5.png);background-position:-539px -1614px;width:48px;height:51px}.inventory_quest_scroll_bunny{background-image:url(spritesmith-main-5.png);background-position:-490px -1614px;width:48px;height:51px}.inventory_quest_scroll_cheetah{background-image:url(spritesmith-main-5.png);background-position:-441px -1614px;width:48px;height:51px}.inventory_quest_scroll_dilatoryDistress1{background-image:url(spritesmith-main-5.png);background-position:-392px -1614px;width:48px;height:51px}.inventory_quest_scroll_dilatoryDistress2{background-image:url(spritesmith-main-5.png);background-position:-343px -1614px;width:48px;height:51px}.inventory_quest_scroll_dilatoryDistress2_locked{background-image:url(spritesmith-main-5.png);background-position:-294px -1614px;width:48px;height:51px}.inventory_quest_scroll_dilatoryDistress3{background-image:url(spritesmith-main-5.png);background-position:-245px -1614px;width:48px;height:51px}.inventory_quest_scroll_dilatoryDistress3_locked{background-image:url(spritesmith-main-5.png);background-position:-147px -1614px;width:48px;height:51px}.inventory_quest_scroll_dilatory_derby{background-image:url(spritesmith-main-5.png);background-position:-1685px -312px;width:48px;height:51px}.inventory_quest_scroll_egg{background-image:url(spritesmith-main-5.png);background-position:-245px -1666px;width:48px;height:51px}.inventory_quest_scroll_evilsanta{background-image:url(spritesmith-main-5.png);background-position:-1685px -364px;width:48px;height:51px}.inventory_quest_scroll_evilsanta2{background-image:url(spritesmith-main-5.png);background-position:-1685px -416px;width:48px;height:51px}.inventory_quest_scroll_frog{background-image:url(spritesmith-main-5.png);background-position:-1685px -468px;width:48px;height:51px}.inventory_quest_scroll_ghost_stag{background-image:url(spritesmith-main-5.png);background-position:-1685px -520px;width:48px;height:51px}.inventory_quest_scroll_goldenknight1{background-image:url(spritesmith-main-5.png);background-position:-1685px -624px;width:48px;height:51px}.inventory_quest_scroll_goldenknight1_locked{background-image:url(spritesmith-main-5.png);background-position:-1685px -676px;width:48px;height:51px}.inventory_quest_scroll_goldenknight2{background-image:url(spritesmith-main-5.png);background-position:-1685px -728px;width:48px;height:51px}.inventory_quest_scroll_goldenknight2_locked{background-image:url(spritesmith-main-5.png);background-position:-1685px -780px;width:48px;height:51px}.inventory_quest_scroll_goldenknight3{background-image:url(spritesmith-main-5.png);background-position:-1685px -884px;width:48px;height:51px}.inventory_quest_scroll_goldenknight3_locked{background-image:url(spritesmith-main-5.png);background-position:-1685px -936px;width:48px;height:51px}.inventory_quest_scroll_gryphon{background-image:url(spritesmith-main-5.png);background-position:-1685px -988px;width:48px;height:51px}.inventory_quest_scroll_harpy{background-image:url(spritesmith-main-5.png);background-position:-1685px -1092px;width:48px;height:51px}.inventory_quest_scroll_hedgehog{background-image:url(spritesmith-main-5.png);background-position:-1685px -1144px;width:48px;height:51px}.inventory_quest_scroll_horse{background-image:url(spritesmith-main-5.png);background-position:-1685px -1248px;width:48px;height:51px}.inventory_quest_scroll_kraken{background-image:url(spritesmith-main-5.png);background-position:-1685px -1300px;width:48px;height:51px}.inventory_quest_scroll_moonstone1{background-image:url(spritesmith-main-5.png);background-position:-1685px -1352px;width:48px;height:51px}.inventory_quest_scroll_moonstone1_locked{background-image:url(spritesmith-main-5.png);background-position:-539px -1666px;width:48px;height:51px}.inventory_quest_scroll_moonstone2{background-image:url(spritesmith-main-5.png);background-position:-1627px -648px;width:48px;height:51px}.inventory_quest_scroll_moonstone2_locked{background-image:url(spritesmith-main-5.png);background-position:-1627px -700px;width:48px;height:51px}.inventory_quest_scroll_moonstone3{background-image:url(spritesmith-main-5.png);background-position:-1627px -752px;width:48px;height:51px}.inventory_quest_scroll_moonstone3_locked{background-image:url(spritesmith-main-5.png);background-position:-1627px -804px;width:48px;height:51px}.inventory_quest_scroll_octopus{background-image:url(spritesmith-main-5.png);background-position:-1627px -856px;width:48px;height:51px}.inventory_quest_scroll_owl{background-image:url(spritesmith-main-5.png);background-position:-1627px -908px;width:48px;height:51px}.inventory_quest_scroll_penguin{background-image:url(spritesmith-main-5.png);background-position:-1627px -960px;width:48px;height:51px}.inventory_quest_scroll_rat{background-image:url(spritesmith-main-5.png);background-position:-1627px -1012px;width:48px;height:51px}.inventory_quest_scroll_rock{background-image:url(spritesmith-main-5.png);background-position:-1627px -1064px;width:48px;height:51px}.inventory_quest_scroll_rooster{background-image:url(spritesmith-main-5.png);background-position:-1627px -1116px;width:48px;height:51px}.inventory_quest_scroll_sheep{background-image:url(spritesmith-main-5.png);background-position:-1627px -1168px;width:48px;height:51px}.inventory_quest_scroll_slime{background-image:url(spritesmith-main-5.png);background-position:-1627px -1220px;width:48px;height:51px}.inventory_quest_scroll_snake{background-image:url(spritesmith-main-5.png);background-position:-1627px -1272px;width:48px;height:51px}.inventory_quest_scroll_spider{background-image:url(spritesmith-main-5.png);background-position:-1627px -1324px;width:48px;height:51px}.inventory_quest_scroll_trex{background-image:url(spritesmith-main-5.png);background-position:-1627px -1376px;width:48px;height:51px}.inventory_quest_scroll_trex_undead{background-image:url(spritesmith-main-5.png);background-position:-1627px -1428px;width:48px;height:51px}.inventory_quest_scroll_vice1{background-image:url(spritesmith-main-5.png);background-position:-1627px -1480px;width:48px;height:51px}.inventory_quest_scroll_vice1_locked{background-image:url(spritesmith-main-5.png);background-position:-1627px -1532px;width:48px;height:51px}.inventory_quest_scroll_vice2{background-image:url(spritesmith-main-5.png);background-position:0 -1614px;width:48px;height:51px}.inventory_quest_scroll_vice2_locked{background-image:url(spritesmith-main-5.png);background-position:-49px -1614px;width:48px;height:51px}.inventory_quest_scroll_vice3{background-image:url(spritesmith-main-5.png);background-position:-98px -1614px;width:48px;height:51px}.inventory_quest_scroll_vice3_locked{background-image:url(spritesmith-main-5.png);background-position:-1734px -1456px;width:48px;height:51px}.inventory_quest_scroll_whale{background-image:url(spritesmith-main-5.png);background-position:-196px -1614px;width:48px;height:51px}.quest_TEMPLATE_FOR_MISSING_IMAGE{background-image:url(spritesmith-main-5.png);background-position:-1254px -1402px;width:221px;height:39px}.quest_atom1{background-image:url(spritesmith-main-5.png);background-position:-434px -1070px;width:250px;height:150px}.quest_atom2{background-image:url(spritesmith-main-5.png);background-position:-1322px -537px;width:207px;height:138px}.quest_atom3{background-image:url(spritesmith-main-5.png);background-position:0 -1070px;width:216px;height:180px}.quest_basilist{background-image:url(spritesmith-main-5.png);background-position:-1322px -1093px;width:189px;height:141px}.quest_bunny{background-image:url(spritesmith-main-5.png);background-position:-1100px -618px;width:210px;height:186px}.quest_cheetah{background-image:url(spritesmith-main-5.png);background-position:-440px -452px;width:219px;height:219px}.quest_dilatory{background-image:url(spritesmith-main-5.png);background-position:-220px -452px;width:219px;height:219px}.quest_dilatoryDistress1{background-image:url(spritesmith-main-5.png);background-position:-1100px -845px;width:221px;height:39px}.quest_dilatoryDistress1_blueFins{background-image:url(spritesmith-main-5.png);background-position:-686px -1614px;width:51px;height:48px}.quest_dilatoryDistress1_fireCoral{background-image:url(spritesmith-main-5.png);background-position:-1685px 0;width:48px;height:51px}.quest_dilatoryDistress2{background-image:url(spritesmith-main-5.png);background-position:0 -1251px;width:150px;height:150px}.quest_dilatoryDistress3{background-image:url(spritesmith-main-5.png);background-position:-440px 0;width:219px;height:219px}.quest_dilatory_derby{background-image:url(spritesmith-main-5.png);background-position:-660px 0;width:219px;height:219px}.quest_egg{background-image:url(spritesmith-main-5.png);background-position:-810px -1402px;width:221px;height:39px}.quest_egg_plainEgg{background-image:url(spritesmith-main-5.png);background-position:-1685px -260px;width:48px;height:51px}.quest_evilsanta{background-image:url(spritesmith-main-5.png);background-position:-1187px -1070px;width:118px;height:131px}.quest_evilsanta2{background-image:url(spritesmith-main-5.png);background-position:0 -232px;width:219px;height:219px}.quest_frog{background-image:url(spritesmith-main-5.png);background-position:-1100px 0;width:221px;height:213px}.quest_ghost_stag{background-image:url(spritesmith-main-5.png);background-position:-220px -232px;width:219px;height:219px}.quest_goldenknight1{background-image:url(spritesmith-main-5.png);background-position:-1032px -1402px;width:221px;height:39px}.quest_goldenknight1_testimony{background-image:url(spritesmith-main-5.png);background-position:-1685px -572px;width:48px;height:51px}.quest_goldenknight2{background-image:url(spritesmith-main-5.png);background-position:-685px -1070px;width:250px;height:150px}.quest_goldenknight3{background-image:url(spritesmith-main-5.png);background-position:0 0;width:219px;height:231px}.quest_gryphon{background-image:url(spritesmith-main-5.png);background-position:-1091px -892px;width:216px;height:177px}.quest_harpy{background-image:url(spritesmith-main-5.png);background-position:-660px -220px;width:219px;height:219px}.quest_hedgehog{background-image:url(spritesmith-main-5.png);background-position:-1100px -431px;width:219px;height:186px}.quest_horse{background-image:url(spritesmith-main-5.png);background-position:0 -452px;width:219px;height:219px}.quest_kraken{background-image:url(spritesmith-main-5.png);background-position:-440px -892px;width:216px;height:177px}.quest_moonstone1{background-image:url(spritesmith-main-5.png);background-position:-588px -1402px;width:221px;height:39px}.quest_moonstone1_moonstone{background-image:url(spritesmith-main-5.png);background-position:-1335px -1442px;width:30px;height:30px}.quest_moonstone2{background-image:url(spritesmith-main-5.png);background-position:-220px 0;width:219px;height:219px}.quest_moonstone3{background-image:url(spritesmith-main-5.png);background-position:0 -672px;width:219px;height:219px}.quest_octopus{background-image:url(spritesmith-main-5.png);background-position:0 -892px;width:222px;height:177px}.quest_owl{background-image:url(spritesmith-main-5.png);background-position:-220px -672px;width:219px;height:219px}.quest_penguin{background-image:url(spritesmith-main-5.png);background-position:-1322px -353px;width:190px;height:183px}.quest_rat{background-image:url(spritesmith-main-5.png);background-position:-880px -672px;width:219px;height:219px}.quest_rock{background-image:url(spritesmith-main-5.png);background-position:-1100px -214px;width:216px;height:216px}.quest_rooster{background-image:url(spritesmith-main-5.png);background-position:-1322px 0;width:213px;height:174px}.quest_sheep{background-image:url(spritesmith-main-5.png);background-position:-660px -672px;width:219px;height:219px}.quest_slime{background-image:url(spritesmith-main-5.png);background-position:-440px -672px;width:219px;height:219px}.quest_snake{background-image:url(spritesmith-main-5.png);background-position:-874px -892px;width:216px;height:177px}.quest_spider{background-image:url(spritesmith-main-5.png);background-position:-936px -1070px;width:250px;height:150px}.quest_stressbeast{background-image:url(spritesmith-main-5.png);background-position:-880px -440px;width:219px;height:219px}.quest_stressbeast_bailey{background-image:url(spritesmith-main-5.png);background-position:-880px -220px;width:219px;height:219px}.quest_stressbeast_guide{background-image:url(spritesmith-main-5.png);background-position:-880px 0;width:219px;height:219px}.quest_stressbeast_stables{background-image:url(spritesmith-main-5.png);background-position:-660px -452px;width:219px;height:219px}.quest_trex{background-image:url(spritesmith-main-5.png);background-position:-1322px -175px;width:204px;height:177px}.quest_trex_undead{background-image:url(spritesmith-main-5.png);background-position:-223px -892px;width:216px;height:177px}.quest_vice1{background-image:url(spritesmith-main-5.png);background-position:-657px -892px;width:216px;height:177px}.quest_vice2{background-image:url(spritesmith-main-5.png);background-position:-1100px -805px;width:221px;height:39px}.quest_vice2_lightCrystal{background-image:url(spritesmith-main-5.png);background-position:-1175px -1442px;width:40px;height:40px}.quest_vice3{background-image:url(spritesmith-main-5.png);background-position:-217px -1070px;width:216px;height:177px}.quest_whale{background-image:url(spritesmith-main-5.png);background-position:-440px -232px;width:219px;height:219px}.shop_copper{background-image:url(spritesmith-main-5.png);background-position:-467px -1221px;width:32px;height:22px}.shop_eyes{background-image:url(spritesmith-main-5.png);background-position:-1216px -1442px;width:40px;height:40px}.shop_gold{background-image:url(spritesmith-main-5.png);background-position:-1734px -1692px;width:32px;height:22px}.shop_opaquePotion{background-image:url(spritesmith-main-5.png);background-position:-1257px -1442px;width:40px;height:40px}.shop_potion{background-image:url(spritesmith-main-5.png);background-position:-1093px -1442px;width:40px;height:40px}.shop_reroll{background-image:url(spritesmith-main-5.png);background-position:-1052px -1442px;width:40px;height:40px}.shop_seafoam{background-image:url(spritesmith-main-5.png);background-position:-1594px -1456px;width:32px;height:32px}.shop_shinySeed{background-image:url(spritesmith-main-5.png);background-position:-1461px -1324px;width:32px;height:32px}.shop_silver{background-image:url(spritesmith-main-5.png);background-position:-434px -1221px;width:32px;height:22px}.shop_snowball{background-image:url(spritesmith-main-5.png);background-position:-1594px -1489px;width:32px;height:32px}.shop_spookDust{background-image:url(spritesmith-main-5.png);background-position:-1494px -1324px;width:32px;height:32px}.Pet_Egg_BearCub{background-image:url(spritesmith-main-5.png);background-position:-1127px -1666px;width:48px;height:51px}.Pet_Egg_Bunny{background-image:url(spritesmith-main-5.png);background-position:-1176px -1666px;width:48px;height:51px}.Pet_Egg_Cactus{background-image:url(spritesmith-main-5.png);background-position:-1225px -1666px;width:48px;height:51px}.Pet_Egg_Cheetah{background-image:url(spritesmith-main-5.png);background-position:-1274px -1666px;width:48px;height:51px}.Pet_Egg_Cuttlefish{background-image:url(spritesmith-main-5.png);background-position:-1323px -1666px;width:48px;height:51px}.Pet_Egg_Deer{background-image:url(spritesmith-main-5.png);background-position:-1372px -1666px;width:48px;height:51px}.Pet_Egg_Dragon{background-image:url(spritesmith-main-5.png);background-position:-1421px -1666px;width:48px;height:51px}.Pet_Egg_Egg{background-image:url(spritesmith-main-5.png);background-position:-1470px -1666px;width:48px;height:51px}.Pet_Egg_FlyingPig{background-image:url(spritesmith-main-5.png);background-position:-1519px -1666px;width:48px;height:51px}.Pet_Egg_Fox{background-image:url(spritesmith-main-5.png);background-position:-1568px -1666px;width:48px;height:51px}.Pet_Egg_Frog{background-image:url(spritesmith-main-5.png);background-position:-1617px -1666px;width:48px;height:51px}.Pet_Egg_Gryphon{background-image:url(spritesmith-main-5.png);background-position:-1666px -1666px;width:48px;height:51px}.Pet_Egg_Hedgehog{background-image:url(spritesmith-main-5.png);background-position:-1734px 0;width:48px;height:51px}.Pet_Egg_Horse{background-image:url(spritesmith-main-5.png);background-position:-1734px -52px;width:48px;height:51px}.Pet_Egg_LionCub{background-image:url(spritesmith-main-5.png);background-position:-1734px -104px;width:48px;height:51px}.Pet_Egg_Octopus{background-image:url(spritesmith-main-5.png);background-position:-1734px -156px;width:48px;height:51px}.Pet_Egg_Owl{background-image:url(spritesmith-main-5.png);background-position:-1734px -208px;width:48px;height:51px}.Pet_Egg_PandaCub{background-image:url(spritesmith-main-5.png);background-position:-1734px -260px;width:48px;height:51px}.Pet_Egg_Parrot{background-image:url(spritesmith-main-5.png);background-position:-1734px -312px;width:48px;height:51px}.Pet_Egg_Penguin{background-image:url(spritesmith-main-5.png);background-position:-1734px -364px;width:48px;height:51px}.Pet_Egg_PolarBear{background-image:url(spritesmith-main-5.png);background-position:-1734px -416px;width:48px;height:51px}.Pet_Egg_Rat{background-image:url(spritesmith-main-5.png);background-position:-1734px -468px;width:48px;height:51px}.Pet_Egg_Rock{background-image:url(spritesmith-main-5.png);background-position:-1734px -520px;width:48px;height:51px}.Pet_Egg_Rooster{background-image:url(spritesmith-main-5.png);background-position:-1734px -572px;width:48px;height:51px}.Pet_Egg_Seahorse{background-image:url(spritesmith-main-5.png);background-position:-1734px -624px;width:48px;height:51px}.Pet_Egg_Sheep{background-image:url(spritesmith-main-5.png);background-position:-1734px -676px;width:48px;height:51px}.Pet_Egg_Slime{background-image:url(spritesmith-main-5.png);background-position:-1734px -728px;width:48px;height:51px}.Pet_Egg_Snake{background-image:url(spritesmith-main-5.png);background-position:-1734px -780px;width:48px;height:51px}.Pet_Egg_Spider{background-image:url(spritesmith-main-5.png);background-position:-1734px -832px;width:48px;height:51px}.Pet_Egg_TRex{background-image:url(spritesmith-main-5.png);background-position:-1734px -884px;width:48px;height:51px}.Pet_Egg_TigerCub{background-image:url(spritesmith-main-5.png);background-position:-1734px -936px;width:48px;height:51px}.Pet_Egg_Whale{background-image:url(spritesmith-main-5.png);background-position:-1734px -988px;width:48px;height:51px}.Pet_Egg_Wolf{background-image:url(spritesmith-main-5.png);background-position:-1734px -1040px;width:48px;height:51px}.Pet_Food_Cake_Base{background-image:url(spritesmith-main-5.png);background-position:-841px -1442px;width:43px;height:43px}.Pet_Food_Cake_CottonCandyBlue{background-image:url(spritesmith-main-5.png);background-position:-738px -1614px;width:42px;height:44px}.Pet_Food_Cake_CottonCandyPink{background-image:url(spritesmith-main-5.png);background-position:-1734px -1646px;width:43px;height:45px}.Pet_Food_Cake_Desert{background-image:url(spritesmith-main-5.png);background-position:-753px -1442px;width:43px;height:44px}.Pet_Food_Cake_Golden{background-image:url(spritesmith-main-5.png);background-position:-885px -1442px;width:43px;height:42px}.Pet_Food_Cake_Red{background-image:url(spritesmith-main-5.png);background-position:-797px -1442px;width:43px;height:44px}.Pet_Food_Cake_Shade{background-image:url(spritesmith-main-5.png);background-position:-709px -1442px;width:43px;height:44px}.Pet_Food_Cake_Skeleton{background-image:url(spritesmith-main-5.png);background-position:-1734px -1553px;width:42px;height:47px}.Pet_Food_Cake_White{background-image:url(spritesmith-main-5.png);background-position:-1734px -1601px;width:44px;height:44px}.Pet_Food_Cake_Zombie{background-image:url(spritesmith-main-5.png);background-position:-1734px -1508px;width:45px;height:44px}.Pet_Food_Candy_Base{background-image:url(spritesmith-main-5.png);background-position:-1734px -1404px;width:48px;height:51px}.Pet_Food_Candy_CottonCandyBlue{background-image:url(spritesmith-main-5.png);background-position:-1734px -1352px;width:48px;height:51px}.Pet_Food_Candy_CottonCandyPink{background-image:url(spritesmith-main-5.png);background-position:-1734px -1300px;width:48px;height:51px}.Pet_Food_Candy_Desert{background-image:url(spritesmith-main-5.png);background-position:-1734px -1248px;width:48px;height:51px}.Pet_Food_Candy_Golden{background-image:url(spritesmith-main-5.png);background-position:-1734px -1196px;width:48px;height:51px}.Pet_Food_Candy_Red{background-image:url(spritesmith-main-5.png);background-position:-1734px -1144px;width:48px;height:51px}.Pet_Food_Candy_Shade{background-image:url(spritesmith-main-5.png);background-position:-1734px -1092px;width:48px;height:51px}.Pet_Food_Candy_Skeleton{background-image:url(spritesmith-main-5.png);background-position:-1078px -1666px;width:48px;height:51px}.Pet_Food_Candy_White{background-image:url(spritesmith-main-5.png);background-position:-1029px -1666px;width:48px;height:51px}.Pet_Food_Candy_Zombie{background-image:url(spritesmith-main-5.png);background-position:-980px -1666px;width:48px;height:51px}.Pet_Food_Chocolate{background-image:url(spritesmith-main-5.png);background-position:-931px -1666px;width:48px;height:51px}.Pet_Food_CottonCandyBlue{background-image:url(spritesmith-main-5.png);background-position:-882px -1666px;width:48px;height:51px}.Pet_Food_CottonCandyPink{background-image:url(spritesmith-main-5.png);background-position:-833px -1666px;width:48px;height:51px}.Pet_Food_Fish{background-image:url(spritesmith-main-5.png);background-position:-784px -1666px;width:48px;height:51px}.Pet_Food_Honey{background-image:url(spritesmith-main-5.png);background-position:-735px -1666px;width:48px;height:51px}.Pet_Food_Meat{background-image:url(spritesmith-main-5.png);background-position:-686px -1666px;width:48px;height:51px}.Pet_Food_Milk{background-image:url(spritesmith-main-5.png);background-position:-637px -1666px;width:48px;height:51px}.Pet_Food_Potatoe{background-image:url(spritesmith-main-5.png);background-position:-588px -1666px;width:48px;height:51px}.Pet_Food_RottenMeat{background-image:url(spritesmith-main-5.png);background-position:-441px -1666px;width:48px;height:51px}.Pet_Food_Saddle{background-image:url(spritesmith-main-5.png);background-position:-1685px -1196px;width:48px;height:51px}.Pet_Food_Strawberry{background-image:url(spritesmith-main-5.png);background-position:-1685px -1040px;width:48px;height:51px}.Mount_Body_BearCub-Base{background-image:url(spritesmith-main-5.png);background-position:-613px -1251px;width:105px;height:105px}.Mount_Body_BearCub-CottonCandyBlue{background-image:url(spritesmith-main-5.png);background-position:-1355px -1251px;width:105px;height:105px}.Mount_Body_BearCub-CottonCandyPink{background-image:url(spritesmith-main-5.png);background-position:-1249px -1251px;width:105px;height:105px}.Mount_Body_BearCub-Desert{background-image:url(spritesmith-main-5.png);background-position:-1143px -1251px;width:105px;height:105px}.Mount_Body_BearCub-Golden{background-image:url(spritesmith-main-5.png);background-position:-1037px -1251px;width:105px;height:105px}.Mount_Body_BearCub-Polar{background-image:url(spritesmith-main-5.png);background-position:-931px -1251px;width:105px;height:105px}.Mount_Body_BearCub-Red{background-image:url(spritesmith-main-5.png);background-position:-825px -1251px;width:105px;height:105px}.Mount_Body_BearCub-Shade{background-image:url(spritesmith-main-5.png);background-position:-719px -1251px;width:105px;height:105px}.Mount_Body_BearCub-Skeleton{background-image:url(spritesmith-main-6.png);background-position:-106px -575px;width:105px;height:105px}.Mount_Body_BearCub-Spooky{background-image:url(spritesmith-main-6.png);background-position:-318px -1105px;width:105px;height:105px}.Mount_Body_BearCub-White{background-image:url(spritesmith-main-6.png);background-position:-212px -575px;width:105px;height:105px}.Mount_Body_BearCub-Zombie{background-image:url(spritesmith-main-6.png);background-position:-318px -575px;width:105px;height:105px}.Mount_Body_Bunny-Base{background-image:url(spritesmith-main-6.png);background-position:-424px -575px;width:105px;height:105px}.Mount_Body_Bunny-CottonCandyBlue{background-image:url(spritesmith-main-6.png);background-position:-530px -575px;width:105px;height:105px}.Mount_Body_Bunny-CottonCandyPink{background-image:url(spritesmith-main-6.png);background-position:-636px -575px;width:105px;height:105px}.Mount_Body_Bunny-Desert{background-image:url(spritesmith-main-6.png);background-position:-742px 0;width:105px;height:105px}.Mount_Body_Bunny-Golden{background-image:url(spritesmith-main-6.png);background-position:-742px -106px;width:105px;height:105px}.Mount_Body_Bunny-Red{background-image:url(spritesmith-main-6.png);background-position:-742px -212px;width:105px;height:105px}.Mount_Body_Bunny-Shade{background-image:url(spritesmith-main-6.png);background-position:-742px -318px;width:105px;height:105px}.Mount_Body_Bunny-Skeleton{background-image:url(spritesmith-main-6.png);background-position:0 -999px;width:105px;height:105px}.Mount_Body_Bunny-White{background-image:url(spritesmith-main-6.png);background-position:-106px -999px;width:105px;height:105px}.Mount_Body_Bunny-Zombie{background-image:url(spritesmith-main-6.png);background-position:-212px -999px;width:105px;height:105px}.Mount_Body_Cactus-Base{background-image:url(spritesmith-main-6.png);background-position:-318px -999px;width:105px;height:105px}.Mount_Body_Cactus-CottonCandyBlue{background-image:url(spritesmith-main-6.png);background-position:-424px -999px;width:105px;height:105px}.Mount_Body_Cactus-CottonCandyPink{background-image:url(spritesmith-main-6.png);background-position:-530px -999px;width:105px;height:105px}.Mount_Body_Cactus-Desert{background-image:url(spritesmith-main-6.png);background-position:-636px -999px;width:105px;height:105px}.Mount_Body_Cactus-Golden{background-image:url(spritesmith-main-6.png);background-position:-742px -999px;width:105px;height:105px}.Mount_Body_Cactus-Red{background-image:url(spritesmith-main-6.png);background-position:-848px -999px;width:105px;height:105px}.Mount_Body_Cactus-Shade{background-image:url(spritesmith-main-6.png);background-position:-954px -999px;width:105px;height:105px}.Mount_Body_Cactus-Skeleton{background-image:url(spritesmith-main-6.png);background-position:-636px -1211px;width:105px;height:105px}.Mount_Body_Cactus-Spooky{background-image:url(spritesmith-main-6.png);background-position:-1060px -1211px;width:105px;height:105px}.Mount_Body_Cactus-White{background-image:url(spritesmith-main-6.png);background-position:-1166px -1211px;width:105px;height:105px}.Mount_Body_Cactus-Zombie{background-image:url(spritesmith-main-6.png);background-position:-530px -221px;width:105px;height:105px}.Mount_Body_Cheetah-Base{background-image:url(spritesmith-main-6.png);background-position:-530px -327px;width:105px;height:105px}.Mount_Body_Cheetah-CottonCandyBlue{background-image:url(spritesmith-main-6.png);background-position:-221px -469px;width:105px;height:105px}.Mount_Body_Cheetah-CottonCandyPink{background-image:url(spritesmith-main-6.png);background-position:-327px -469px;width:105px;height:105px}.Mount_Body_Cheetah-Desert{background-image:url(spritesmith-main-6.png);background-position:-433px -469px;width:105px;height:105px}.Mount_Body_Cheetah-Golden{background-image:url(spritesmith-main-6.png);background-position:-636px 0;width:105px;height:105px}.Mount_Body_Cheetah-Red{background-image:url(spritesmith-main-6.png);background-position:-636px -106px;width:105px;height:105px}.Mount_Body_Cheetah-Shade{background-image:url(spritesmith-main-6.png);background-position:-636px -212px;width:105px;height:105px}.Mount_Body_Cheetah-Skeleton{background-image:url(spritesmith-main-6.png);background-position:-636px -318px;width:105px;height:105px}.Mount_Body_Cheetah-White{background-image:url(spritesmith-main-6.png);background-position:-636px -424px;width:105px;height:105px}.Mount_Body_Cheetah-Zombie{background-image:url(spritesmith-main-6.png);background-position:0 -575px;width:105px;height:105px}.Mount_Body_Cuttlefish-Base{background-image:url(spritesmith-main-6.png);background-position:-530px 0;width:105px;height:114px}.Mount_Body_Cuttlefish-CottonCandyBlue{background-image:url(spritesmith-main-6.png);background-position:-318px -239px;width:105px;height:114px}.Mount_Body_Cuttlefish-CottonCandyPink{background-image:url(spritesmith-main-6.png);background-position:-212px 0;width:105px;height:114px}.Mount_Body_Cuttlefish-Desert{background-image:url(spritesmith-main-6.png);background-position:0 -124px;width:105px;height:114px}.Mount_Body_Cuttlefish-Golden{background-image:url(spritesmith-main-6.png);background-position:-106px -124px;width:105px;height:114px}.Mount_Body_Cuttlefish-Red{background-image:url(spritesmith-main-6.png);background-position:-212px -124px;width:105px;height:114px}.Mount_Body_Cuttlefish-Shade{background-image:url(spritesmith-main-6.png);background-position:-318px 0;width:105px;height:114px}.Mount_Body_Cuttlefish-Skeleton{background-image:url(spritesmith-main-6.png);background-position:-318px -115px;width:105px;height:114px}.Mount_Body_Cuttlefish-White{background-image:url(spritesmith-main-6.png);background-position:0 -239px;width:105px;height:114px}.Mount_Body_Cuttlefish-Zombie{background-image:url(spritesmith-main-6.png);background-position:-106px -239px;width:105px;height:114px}.Mount_Body_Deer-Base{background-image:url(spritesmith-main-6.png);background-position:-742px -424px;width:105px;height:105px}.Mount_Body_Deer-CottonCandyBlue{background-image:url(spritesmith-main-6.png);background-position:-742px -530px;width:105px;height:105px}.Mount_Body_Deer-CottonCandyPink{background-image:url(spritesmith-main-6.png);background-position:0 -681px;width:105px;height:105px}.Mount_Body_Deer-Desert{background-image:url(spritesmith-main-6.png);background-position:-106px -681px;width:105px;height:105px}.Mount_Body_Deer-Golden{background-image:url(spritesmith-main-6.png);background-position:-212px -681px;width:105px;height:105px}.Mount_Body_Deer-Red{background-image:url(spritesmith-main-6.png);background-position:-318px -681px;width:105px;height:105px}.Mount_Body_Deer-Shade{background-image:url(spritesmith-main-6.png);background-position:-424px -681px;width:105px;height:105px}.Mount_Body_Deer-Skeleton{background-image:url(spritesmith-main-6.png);background-position:-530px -681px;width:105px;height:105px}.Mount_Body_Deer-White{background-image:url(spritesmith-main-6.png);background-position:-636px -681px;width:105px;height:105px}.Mount_Body_Deer-Zombie{background-image:url(spritesmith-main-6.png);background-position:-742px -681px;width:105px;height:105px}.Mount_Body_Dragon-Base{background-image:url(spritesmith-main-6.png);background-position:-848px 0;width:105px;height:105px}.Mount_Body_Dragon-CottonCandyBlue{background-image:url(spritesmith-main-6.png);background-position:-848px -106px;width:105px;height:105px}.Mount_Body_Dragon-CottonCandyPink{background-image:url(spritesmith-main-6.png);background-position:-848px -212px;width:105px;height:105px}.Mount_Body_Dragon-Desert{background-image:url(spritesmith-main-6.png);background-position:-848px -318px;width:105px;height:105px}.Mount_Body_Dragon-Golden{background-image:url(spritesmith-main-6.png);background-position:-848px -424px;width:105px;height:105px}.Mount_Body_Dragon-Red{background-image:url(spritesmith-main-6.png);background-position:-848px -530px;width:105px;height:105px}.Mount_Body_Dragon-Shade{background-image:url(spritesmith-main-6.png);background-position:-848px -636px;width:105px;height:105px}.Mount_Body_Dragon-Skeleton{background-image:url(spritesmith-main-6.png);background-position:0 -787px;width:105px;height:105px}.Mount_Body_Dragon-Spooky{background-image:url(spritesmith-main-6.png);background-position:-106px -787px;width:105px;height:105px}.Mount_Body_Dragon-White{background-image:url(spritesmith-main-6.png);background-position:-212px -787px;width:105px;height:105px}.Mount_Body_Dragon-Zombie{background-image:url(spritesmith-main-6.png);background-position:-318px -787px;width:105px;height:105px}.Mount_Body_Egg-Base{background-image:url(spritesmith-main-6.png);background-position:-424px -787px;width:105px;height:105px}.Mount_Body_Egg-CottonCandyBlue{background-image:url(spritesmith-main-6.png);background-position:-530px -787px;width:105px;height:105px}.Mount_Body_Egg-CottonCandyPink{background-image:url(spritesmith-main-6.png);background-position:-636px -787px;width:105px;height:105px}.Mount_Body_Egg-Desert{background-image:url(spritesmith-main-6.png);background-position:-742px -787px;width:105px;height:105px}.Mount_Body_Egg-Golden{background-image:url(spritesmith-main-6.png);background-position:-848px -787px;width:105px;height:105px}.Mount_Body_Egg-Red{background-image:url(spritesmith-main-6.png);background-position:-954px 0;width:105px;height:105px}.Mount_Body_Egg-Shade{background-image:url(spritesmith-main-6.png);background-position:-954px -106px;width:105px;height:105px}.Mount_Body_Egg-Skeleton{background-image:url(spritesmith-main-6.png);background-position:-954px -212px;width:105px;height:105px}.Mount_Body_Egg-White{background-image:url(spritesmith-main-6.png);background-position:-954px -318px;width:105px;height:105px}.Mount_Body_Egg-Zombie{background-image:url(spritesmith-main-6.png);background-position:-954px -424px;width:105px;height:105px}.Mount_Body_FlyingPig-Base{background-image:url(spritesmith-main-6.png);background-position:-954px -530px;width:105px;height:105px}.Mount_Body_FlyingPig-CottonCandyBlue{background-image:url(spritesmith-main-6.png);background-position:-954px -636px;width:105px;height:105px}.Mount_Body_FlyingPig-CottonCandyPink{background-image:url(spritesmith-main-6.png);background-position:-954px -742px;width:105px;height:105px}.Mount_Body_FlyingPig-Desert{background-image:url(spritesmith-main-6.png);background-position:0 -893px;width:105px;height:105px}.Mount_Body_FlyingPig-Golden{background-image:url(spritesmith-main-6.png);background-position:-106px -893px;width:105px;height:105px}.Mount_Body_FlyingPig-Red{background-image:url(spritesmith-main-6.png);background-position:-212px -893px;width:105px;height:105px}.Mount_Body_FlyingPig-Shade{background-image:url(spritesmith-main-6.png);background-position:-318px -893px;width:105px;height:105px}.Mount_Body_FlyingPig-Skeleton{background-image:url(spritesmith-main-6.png);background-position:-424px -893px;width:105px;height:105px}.Mount_Body_FlyingPig-Spooky{background-image:url(spritesmith-main-6.png);background-position:-530px -893px;width:105px;height:105px}.Mount_Body_FlyingPig-White{background-image:url(spritesmith-main-6.png);background-position:-636px -893px;width:105px;height:105px}.Mount_Body_FlyingPig-Zombie{background-image:url(spritesmith-main-6.png);background-position:-742px -893px;width:105px;height:105px}.Mount_Body_Fox-Base{background-image:url(spritesmith-main-6.png);background-position:-848px -893px;width:105px;height:105px}.Mount_Body_Fox-CottonCandyBlue{background-image:url(spritesmith-main-6.png);background-position:-954px -893px;width:105px;height:105px}.Mount_Body_Fox-CottonCandyPink{background-image:url(spritesmith-main-6.png);background-position:-1060px 0;width:105px;height:105px}.Mount_Body_Fox-Desert{background-image:url(spritesmith-main-6.png);background-position:-1060px -106px;width:105px;height:105px}.Mount_Body_Fox-Golden{background-image:url(spritesmith-main-6.png);background-position:-1060px -212px;width:105px;height:105px}.Mount_Body_Fox-Red{background-image:url(spritesmith-main-6.png);background-position:-1060px -318px;width:105px;height:105px}.Mount_Body_Fox-Shade{background-image:url(spritesmith-main-6.png);background-position:-1060px -424px;width:105px;height:105px}.Mount_Body_Fox-Skeleton{background-image:url(spritesmith-main-6.png);background-position:-1060px -530px;width:105px;height:105px}.Mount_Body_Fox-Spooky{background-image:url(spritesmith-main-6.png);background-position:-1060px -636px;width:105px;height:105px}.Mount_Body_Fox-White{background-image:url(spritesmith-main-6.png);background-position:-1060px -742px;width:105px;height:105px}.Mount_Body_Fox-Zombie{background-image:url(spritesmith-main-6.png);background-position:-1060px -848px;width:105px;height:105px}.Mount_Body_Frog-Base{background-image:url(spritesmith-main-6.png);background-position:-212px -239px;width:105px;height:114px}.Mount_Body_Frog-CottonCandyBlue{background-image:url(spritesmith-main-6.png);background-position:-106px 0;width:105px;height:114px}.Mount_Body_Frog-CottonCandyPink{background-image:url(spritesmith-main-6.png);background-position:-424px 0;width:105px;height:114px}.Mount_Body_Frog-Desert{background-image:url(spritesmith-main-6.png);background-position:-424px -115px;width:105px;height:114px}.Mount_Body_Frog-Golden{background-image:url(spritesmith-main-6.png);background-position:-424px -230px;width:105px;height:114px}.Mount_Body_Frog-Red{background-image:url(spritesmith-main-6.png);background-position:0 -354px;width:105px;height:114px}.Mount_Body_Frog-Shade{background-image:url(spritesmith-main-6.png);background-position:-106px -354px;width:105px;height:114px}.Mount_Body_Frog-Skeleton{background-image:url(spritesmith-main-6.png);background-position:-212px -354px;width:105px;height:114px}.Mount_Body_Frog-White{background-image:url(spritesmith-main-6.png);background-position:-318px -354px;width:105px;height:114px}.Mount_Body_Frog-Zombie{background-image:url(spritesmith-main-6.png);background-position:-424px -354px;width:105px;height:114px}.Mount_Body_Gryphon-Base{background-image:url(spritesmith-main-6.png);background-position:-1060px -999px;width:105px;height:105px}.Mount_Body_Gryphon-CottonCandyBlue{background-image:url(spritesmith-main-6.png);background-position:-1166px 0;width:105px;height:105px}.Mount_Body_Gryphon-CottonCandyPink{background-image:url(spritesmith-main-6.png);background-position:-1166px -106px;width:105px;height:105px}.Mount_Body_Gryphon-Desert{background-image:url(spritesmith-main-6.png);background-position:-1166px -212px;width:105px;height:105px}.Mount_Body_Gryphon-Golden{background-image:url(spritesmith-main-6.png);background-position:-1166px -318px;width:105px;height:105px}.Mount_Body_Gryphon-Red{background-image:url(spritesmith-main-6.png);background-position:-1166px -424px;width:105px;height:105px}.Mount_Body_Gryphon-RoyalPurple{background-image:url(spritesmith-main-6.png);background-position:-1166px -530px;width:105px;height:105px}.Mount_Body_Gryphon-Shade{background-image:url(spritesmith-main-6.png);background-position:-1166px -636px;width:105px;height:105px}.Mount_Body_Gryphon-Skeleton{background-image:url(spritesmith-main-6.png);background-position:-1166px -742px;width:105px;height:105px}.Mount_Body_Gryphon-White{background-image:url(spritesmith-main-6.png);background-position:-1166px -848px;width:105px;height:105px}.Mount_Body_Gryphon-Zombie{background-image:url(spritesmith-main-6.png);background-position:-1166px -954px;width:105px;height:105px}.Mount_Body_Hedgehog-Base{background-image:url(spritesmith-main-6.png);background-position:0 -1105px;width:105px;height:105px}.Mount_Body_Hedgehog-CottonCandyBlue{background-image:url(spritesmith-main-6.png);background-position:-106px -1105px;width:105px;height:105px}.Mount_Body_Hedgehog-CottonCandyPink{background-image:url(spritesmith-main-6.png);background-position:-212px -1105px;width:105px;height:105px}.Mount_Body_Hedgehog-Desert{background-image:url(spritesmith-main-6.png);background-position:-530px -115px;width:105px;height:105px}.Mount_Body_Hedgehog-Golden{background-image:url(spritesmith-main-6.png);background-position:-424px -1105px;width:105px;height:105px}.Mount_Body_Hedgehog-Red{background-image:url(spritesmith-main-6.png);background-position:-530px -1105px;width:105px;height:105px}.Mount_Body_Hedgehog-Shade{background-image:url(spritesmith-main-6.png);background-position:-636px -1105px;width:105px;height:105px}.Mount_Body_Hedgehog-Skeleton{background-image:url(spritesmith-main-6.png);background-position:-742px -1105px;width:105px;height:105px}.Mount_Body_Hedgehog-White{background-image:url(spritesmith-main-6.png);background-position:-848px -1105px;width:105px;height:105px}.Mount_Body_Hedgehog-Zombie{background-image:url(spritesmith-main-6.png);background-position:-954px -1105px;width:105px;height:105px}.Mount_Body_Horse-Base{background-image:url(spritesmith-main-6.png);background-position:-1060px -1105px;width:105px;height:105px}.Mount_Body_Horse-CottonCandyBlue{background-image:url(spritesmith-main-6.png);background-position:-1166px -1105px;width:105px;height:105px}.Mount_Body_Horse-CottonCandyPink{background-image:url(spritesmith-main-6.png);background-position:-1272px 0;width:105px;height:105px}.Mount_Body_Horse-Desert{background-image:url(spritesmith-main-6.png);background-position:-1272px -106px;width:105px;height:105px}.Mount_Body_Horse-Golden{background-image:url(spritesmith-main-6.png);background-position:-1272px -212px;width:105px;height:105px}.Mount_Body_Horse-Red{background-image:url(spritesmith-main-6.png);background-position:-1272px -318px;width:105px;height:105px}.Mount_Body_Horse-Shade{background-image:url(spritesmith-main-6.png);background-position:-1272px -424px;width:105px;height:105px}.Mount_Body_Horse-Skeleton{background-image:url(spritesmith-main-6.png);background-position:-1272px -530px;width:105px;height:105px}.Mount_Body_Horse-White{background-image:url(spritesmith-main-6.png);background-position:-1272px -636px;width:105px;height:105px}.Mount_Body_Horse-Zombie{background-image:url(spritesmith-main-6.png);background-position:-1272px -742px;width:105px;height:105px}.Mount_Body_JackOLantern-Base{background-image:url(spritesmith-main-6.png);background-position:-1696px -530px;width:90px;height:105px}.Mount_Body_LionCub-Base{background-image:url(spritesmith-main-6.png);background-position:-1272px -954px;width:105px;height:105px}.Mount_Body_LionCub-CottonCandyBlue{background-image:url(spritesmith-main-6.png);background-position:-1272px -1060px;width:105px;height:105px}.Mount_Body_LionCub-CottonCandyPink{background-image:url(spritesmith-main-6.png);background-position:0 -1211px;width:105px;height:105px}.Mount_Body_LionCub-Desert{background-image:url(spritesmith-main-6.png);background-position:-106px -1211px;width:105px;height:105px}.Mount_Body_LionCub-Ethereal{background-image:url(spritesmith-main-6.png);background-position:-212px -1211px;width:105px;height:105px}.Mount_Body_LionCub-Golden{background-image:url(spritesmith-main-6.png);background-position:-318px -1211px;width:105px;height:105px}.Mount_Body_LionCub-Red{background-image:url(spritesmith-main-6.png);background-position:-424px -1211px;width:105px;height:105px}.Mount_Body_LionCub-Shade{background-image:url(spritesmith-main-6.png);background-position:-530px -1211px;width:105px;height:105px}.Mount_Body_LionCub-Skeleton{background-image:url(spritesmith-main-6.png);background-position:0 -469px;width:111px;height:105px}.Mount_Body_LionCub-Spooky{background-image:url(spritesmith-main-6.png);background-position:-742px -1211px;width:105px;height:105px}.Mount_Body_LionCub-White{background-image:url(spritesmith-main-6.png);background-position:-848px -1211px;width:105px;height:105px}.Mount_Body_LionCub-Zombie{background-image:url(spritesmith-main-6.png);background-position:-954px -1211px;width:105px;height:105px}.Mount_Body_Mammoth-Base{background-image:url(spritesmith-main-6.png);background-position:0 0;width:105px;height:123px}.Mount_Body_MantisShrimp-Base{background-image:url(spritesmith-main-6.png);background-position:-112px -469px;width:108px;height:105px}.Mount_Body_Octopus-Base{background-image:url(spritesmith-main-6.png);background-position:-1272px -1211px;width:105px;height:105px}.Mount_Body_Octopus-CottonCandyBlue{background-image:url(spritesmith-main-6.png);background-position:-1378px 0;width:105px;height:105px}.Mount_Body_Octopus-CottonCandyPink{background-image:url(spritesmith-main-6.png);background-position:-1378px -106px;width:105px;height:105px}.Mount_Body_Octopus-Desert{background-image:url(spritesmith-main-6.png);background-position:-1378px -212px;width:105px;height:105px}.Mount_Body_Octopus-Golden{background-image:url(spritesmith-main-6.png);background-position:-1378px -318px;width:105px;height:105px}.Mount_Body_Octopus-Red{background-image:url(spritesmith-main-6.png);background-position:-1378px -424px;width:105px;height:105px}.Mount_Body_Octopus-Shade{background-image:url(spritesmith-main-6.png);background-position:-1378px -530px;width:105px;height:105px}.Mount_Body_Octopus-Skeleton{background-image:url(spritesmith-main-6.png);background-position:-1378px -636px;width:105px;height:105px}.Mount_Body_Octopus-White{background-image:url(spritesmith-main-6.png);background-position:-1378px -742px;width:105px;height:105px}.Mount_Body_Octopus-Zombie{background-image:url(spritesmith-main-6.png);background-position:-1378px -848px;width:105px;height:105px}.Mount_Body_Orca-Base{background-image:url(spritesmith-main-6.png);background-position:-1378px -954px;width:105px;height:105px}.Mount_Body_Owl-Base{background-image:url(spritesmith-main-6.png);background-position:-1378px -1060px;width:105px;height:105px}.Mount_Body_Owl-CottonCandyBlue{background-image:url(spritesmith-main-6.png);background-position:-1378px -1166px;width:105px;height:105px}.Mount_Body_Owl-CottonCandyPink{background-image:url(spritesmith-main-6.png);background-position:0 -1317px;width:105px;height:105px}.Mount_Body_Owl-Desert{background-image:url(spritesmith-main-6.png);background-position:-106px -1317px;width:105px;height:105px}.Mount_Body_Owl-Golden{background-image:url(spritesmith-main-6.png);background-position:-212px -1317px;width:105px;height:105px}.Mount_Body_Owl-Red{background-image:url(spritesmith-main-6.png);background-position:-318px -1317px;width:105px;height:105px}.Mount_Body_Owl-Shade{background-image:url(spritesmith-main-6.png);background-position:-424px -1317px;width:105px;height:105px}.Mount_Body_Owl-Skeleton{background-image:url(spritesmith-main-6.png);background-position:-530px -1317px;width:105px;height:105px}.Mount_Body_Owl-White{background-image:url(spritesmith-main-6.png);background-position:-636px -1317px;width:105px;height:105px}.Mount_Body_Owl-Zombie{background-image:url(spritesmith-main-6.png);background-position:-742px -1317px;width:105px;height:105px}.Mount_Body_PandaCub-Base{background-image:url(spritesmith-main-6.png);background-position:-848px -1317px;width:105px;height:105px}.Mount_Body_PandaCub-CottonCandyBlue{background-image:url(spritesmith-main-6.png);background-position:-954px -1317px;width:105px;height:105px}.Mount_Body_PandaCub-CottonCandyPink{background-image:url(spritesmith-main-6.png);background-position:-1060px -1317px;width:105px;height:105px}.Mount_Body_PandaCub-Desert{background-image:url(spritesmith-main-6.png);background-position:-1166px -1317px;width:105px;height:105px}.Mount_Body_PandaCub-Golden{background-image:url(spritesmith-main-6.png);background-position:-1272px -1317px;width:105px;height:105px}.Mount_Body_PandaCub-Red{background-image:url(spritesmith-main-6.png);background-position:-1378px -1317px;width:105px;height:105px}.Mount_Body_PandaCub-Shade{background-image:url(spritesmith-main-6.png);background-position:-1484px 0;width:105px;height:105px}.Mount_Body_PandaCub-Skeleton{background-image:url(spritesmith-main-6.png);background-position:-1484px -106px;width:105px;height:105px}.Mount_Body_PandaCub-Spooky{background-image:url(spritesmith-main-6.png);background-position:-1484px -212px;width:105px;height:105px}.Mount_Body_PandaCub-White{background-image:url(spritesmith-main-6.png);background-position:-1484px -318px;width:105px;height:105px}.Mount_Body_PandaCub-Zombie{background-image:url(spritesmith-main-6.png);background-position:-1484px -424px;width:105px;height:105px}.Mount_Body_Parrot-Base{background-image:url(spritesmith-main-6.png);background-position:-1484px -530px;width:105px;height:105px}.Mount_Body_Parrot-CottonCandyBlue{background-image:url(spritesmith-main-6.png);background-position:-1484px -636px;width:105px;height:105px}.Mount_Body_Parrot-CottonCandyPink{background-image:url(spritesmith-main-6.png);background-position:-1484px -742px;width:105px;height:105px}.Mount_Body_Parrot-Desert{background-image:url(spritesmith-main-6.png);background-position:-1484px -848px;width:105px;height:105px}.Mount_Body_Parrot-Golden{background-image:url(spritesmith-main-6.png);background-position:-1484px -954px;width:105px;height:105px}.Mount_Body_Parrot-Red{background-image:url(spritesmith-main-6.png);background-position:-1484px -1060px;width:105px;height:105px}.Mount_Body_Parrot-Shade{background-image:url(spritesmith-main-6.png);background-position:-1484px -1166px;width:105px;height:105px}.Mount_Body_Parrot-Skeleton{background-image:url(spritesmith-main-6.png);background-position:-1484px -1272px;width:105px;height:105px}.Mount_Body_Parrot-White{background-image:url(spritesmith-main-6.png);background-position:0 -1423px;width:105px;height:105px}.Mount_Body_Parrot-Zombie{background-image:url(spritesmith-main-6.png);background-position:-106px -1423px;width:105px;height:105px}.Mount_Body_Penguin-Base{background-image:url(spritesmith-main-6.png);background-position:-212px -1423px;width:105px;height:105px}.Mount_Body_Penguin-CottonCandyBlue{background-image:url(spritesmith-main-6.png);background-position:-318px -1423px;width:105px;height:105px}.Mount_Body_Penguin-CottonCandyPink{background-image:url(spritesmith-main-6.png);background-position:-424px -1423px;width:105px;height:105px}.Mount_Body_Penguin-Desert{background-image:url(spritesmith-main-6.png);background-position:-530px -1423px;width:105px;height:105px}.Mount_Body_Penguin-Golden{background-image:url(spritesmith-main-6.png);background-position:-636px -1423px;width:105px;height:105px}.Mount_Body_Penguin-Red{background-image:url(spritesmith-main-6.png);background-position:-742px -1423px;width:105px;height:105px}.Mount_Body_Penguin-Shade{background-image:url(spritesmith-main-6.png);background-position:-848px -1423px;width:105px;height:105px}.Mount_Body_Penguin-Skeleton{background-image:url(spritesmith-main-6.png);background-position:-954px -1423px;width:105px;height:105px}.Mount_Body_Penguin-White{background-image:url(spritesmith-main-6.png);background-position:-1060px -1423px;width:105px;height:105px}.Mount_Body_Penguin-Zombie{background-image:url(spritesmith-main-6.png);background-position:-1166px -1423px;width:105px;height:105px}.Mount_Body_Phoenix-Base{background-image:url(spritesmith-main-6.png);background-position:-1272px -1423px;width:105px;height:105px}.Mount_Body_Rat-Base{background-image:url(spritesmith-main-6.png);background-position:-1378px -1423px;width:105px;height:105px}.Mount_Body_Rat-CottonCandyBlue{background-image:url(spritesmith-main-6.png);background-position:-1484px -1423px;width:105px;height:105px}.Mount_Body_Rat-CottonCandyPink{background-image:url(spritesmith-main-6.png);background-position:-1590px 0;width:105px;height:105px}.Mount_Body_Rat-Desert{background-image:url(spritesmith-main-6.png);background-position:-1590px -106px;width:105px;height:105px}.Mount_Body_Rat-Golden{background-image:url(spritesmith-main-6.png);background-position:-1590px -212px;width:105px;height:105px}.Mount_Body_Rat-Red{background-image:url(spritesmith-main-6.png);background-position:-1590px -318px;width:105px;height:105px}.Mount_Body_Rat-Shade{background-image:url(spritesmith-main-6.png);background-position:-1590px -424px;width:105px;height:105px}.Mount_Body_Rat-Skeleton{background-image:url(spritesmith-main-6.png);background-position:-1590px -530px;width:105px;height:105px}.Mount_Body_Rat-White{background-image:url(spritesmith-main-6.png);background-position:-1590px -636px;width:105px;height:105px}.Mount_Body_Rat-Zombie{background-image:url(spritesmith-main-6.png);background-position:-1590px -742px;width:105px;height:105px}.Mount_Body_Rock-Base{background-image:url(spritesmith-main-6.png);background-position:-1590px -848px;width:105px;height:105px}.Mount_Body_Rock-CottonCandyBlue{background-image:url(spritesmith-main-6.png);background-position:-1590px -954px;width:105px;height:105px}.Mount_Body_Rock-CottonCandyPink{background-image:url(spritesmith-main-6.png);background-position:-1590px -1060px;width:105px;height:105px}.Mount_Body_Rock-Desert{background-image:url(spritesmith-main-6.png);background-position:-1590px -1166px;width:105px;height:105px}.Mount_Body_Rock-Golden{background-image:url(spritesmith-main-6.png);background-position:-1590px -1272px;width:105px;height:105px}.Mount_Body_Rock-Red{background-image:url(spritesmith-main-6.png);background-position:-1590px -1378px;width:105px;height:105px}.Mount_Body_Rock-Shade{background-image:url(spritesmith-main-6.png);background-position:0 -1529px;width:105px;height:105px}.Mount_Body_Rock-Skeleton{background-image:url(spritesmith-main-6.png);background-position:-106px -1529px;width:105px;height:105px}.Mount_Body_Rock-White{background-image:url(spritesmith-main-6.png);background-position:-212px -1529px;width:105px;height:105px}.Mount_Body_Rock-Zombie{background-image:url(spritesmith-main-6.png);background-position:-318px -1529px;width:105px;height:105px}.Mount_Body_Rooster-Base{background-image:url(spritesmith-main-6.png);background-position:-424px -1529px;width:105px;height:105px}.Mount_Body_Rooster-CottonCandyBlue{background-image:url(spritesmith-main-6.png);background-position:-530px -1529px;width:105px;height:105px}.Mount_Body_Rooster-CottonCandyPink{background-image:url(spritesmith-main-6.png);background-position:-636px -1529px;width:105px;height:105px}.Mount_Body_Rooster-Desert{background-image:url(spritesmith-main-6.png);background-position:-742px -1529px;width:105px;height:105px}.Mount_Body_Rooster-Golden{background-image:url(spritesmith-main-6.png);background-position:-848px -1529px;width:105px;height:105px}.Mount_Body_Rooster-Red{background-image:url(spritesmith-main-6.png);background-position:-954px -1529px;width:105px;height:105px}.Mount_Body_Rooster-Shade{background-image:url(spritesmith-main-6.png);background-position:-1060px -1529px;width:105px;height:105px}.Mount_Body_Rooster-Skeleton{background-image:url(spritesmith-main-6.png);background-position:-1166px -1529px;width:105px;height:105px}.Mount_Body_Rooster-White{background-image:url(spritesmith-main-6.png);background-position:-1272px -1529px;width:105px;height:105px}.Mount_Body_Rooster-Zombie{background-image:url(spritesmith-main-6.png);background-position:-1378px -1529px;width:105px;height:105px}.Mount_Body_Seahorse-Base{background-image:url(spritesmith-main-6.png);background-position:-1484px -1529px;width:105px;height:105px}.Mount_Body_Seahorse-CottonCandyBlue{background-image:url(spritesmith-main-6.png);background-position:-1590px -1529px;width:105px;height:105px}.Mount_Body_Seahorse-CottonCandyPink{background-image:url(spritesmith-main-6.png);background-position:-1696px 0;width:105px;height:105px}.Mount_Body_Seahorse-Desert{background-image:url(spritesmith-main-6.png);background-position:-1696px -106px;width:105px;height:105px}.Mount_Body_Seahorse-Golden{background-image:url(spritesmith-main-6.png);background-position:-1696px -212px;width:105px;height:105px}.Mount_Body_Seahorse-Red{background-image:url(spritesmith-main-6.png);background-position:-1696px -318px;width:105px;height:105px}.Mount_Body_Seahorse-Shade{background-image:url(spritesmith-main-6.png);background-position:-1272px -848px;width:105px;height:105px}.Mount_Body_Seahorse-Skeleton{background-image:url(spritesmith-main-6.png);background-position:-1696px -424px;width:105px;height:105px}.Mount_Body_Seahorse-White{background-image:url(spritesmith-main-7.png);background-position:-636px -680px;width:105px;height:105px}.Mount_Body_Seahorse-Zombie{background-image:url(spritesmith-main-7.png);background-position:-848px -1113px;width:105px;height:105px}.Mount_Body_Sheep-Base{background-image:url(spritesmith-main-7.png);background-position:-742px -680px;width:105px;height:105px}.Mount_Body_Sheep-CottonCandyBlue{background-image:url(spritesmith-main-7.png);background-position:-892px 0;width:105px;height:105px}.Mount_Body_Sheep-CottonCandyPink{background-image:url(spritesmith-main-7.png);background-position:-892px -106px;width:105px;height:105px}.Mount_Body_Sheep-Desert{background-image:url(spritesmith-main-7.png);background-position:-892px -212px;width:105px;height:105px}.Mount_Body_Sheep-Golden{background-image:url(spritesmith-main-7.png);background-position:-892px -318px;width:105px;height:105px}.Mount_Body_Sheep-Red{background-image:url(spritesmith-main-7.png);background-position:-892px -424px;width:105px;height:105px}.Mount_Body_Sheep-Shade{background-image:url(spritesmith-main-7.png);background-position:-892px -530px;width:105px;height:105px}.Mount_Body_Sheep-Skeleton{background-image:url(spritesmith-main-7.png);background-position:-892px -636px;width:105px;height:105px}.Mount_Body_Sheep-White{background-image:url(spritesmith-main-7.png);background-position:0 -795px;width:105px;height:105px}.Mount_Body_Sheep-Zombie{background-image:url(spritesmith-main-7.png);background-position:-636px -901px;width:105px;height:105px}.Mount_Body_Slime-Base{background-image:url(spritesmith-main-7.png);background-position:-742px -901px;width:105px;height:105px}.Mount_Body_Slime-CottonCandyBlue{background-image:url(spritesmith-main-7.png);background-position:-848px -901px;width:105px;height:105px}.Mount_Body_Slime-CottonCandyPink{background-image:url(spritesmith-main-7.png);background-position:-954px -901px;width:105px;height:105px}.Mount_Body_Slime-Desert{background-image:url(spritesmith-main-7.png);background-position:-1104px 0;width:105px;height:105px}.Mount_Body_Slime-Golden{background-image:url(spritesmith-main-7.png);background-position:-1104px -106px;width:105px;height:105px}.Mount_Body_Slime-Red{background-image:url(spritesmith-main-7.png);background-position:-1104px -212px;width:105px;height:105px}.Mount_Body_Slime-Shade{background-image:url(spritesmith-main-7.png);background-position:-1104px -318px;width:105px;height:105px}.Mount_Body_Slime-Skeleton{background-image:url(spritesmith-main-7.png);background-position:-1104px -424px;width:105px;height:105px}.Mount_Body_Slime-White{background-image:url(spritesmith-main-7.png);background-position:-1104px -530px;width:105px;height:105px}.Mount_Body_Slime-Zombie{background-image:url(spritesmith-main-7.png);background-position:-1104px -636px;width:105px;height:105px}.Mount_Body_Snake-Base{background-image:url(spritesmith-main-7.png);background-position:-1316px -848px;width:105px;height:105px}.Mount_Body_Snake-CottonCandyBlue{background-image:url(spritesmith-main-7.png);background-position:-1316px -954px;width:105px;height:105px}.Mount_Body_Snake-CottonCandyPink{background-image:url(spritesmith-main-7.png);background-position:-1316px -1060px;width:105px;height:105px}.Mount_Body_Snake-Desert{background-image:url(spritesmith-main-7.png);background-position:0 -1219px;width:105px;height:105px}.Mount_Body_Snake-Golden{background-image:url(spritesmith-main-7.png);background-position:-106px -1219px;width:105px;height:105px}.Mount_Body_Snake-Red{background-image:url(spritesmith-main-7.png);background-position:-212px -1219px;width:105px;height:105px}.Mount_Body_Snake-Shade{background-image:url(spritesmith-main-7.png);background-position:-318px -1219px;width:105px;height:105px}.Mount_Body_Snake-Skeleton{background-image:url(spritesmith-main-7.png);background-position:-424px -1219px;width:105px;height:105px}.Mount_Body_Snake-White{background-image:url(spritesmith-main-7.png);background-position:-530px -1219px;width:105px;height:105px}.Mount_Body_Snake-Zombie{background-image:url(spritesmith-main-7.png);background-position:-636px -1219px;width:105px;height:105px}.Mount_Body_Spider-Base{background-image:url(spritesmith-main-7.png);background-position:-848px -1431px;width:105px;height:105px}.Mount_Body_Spider-CottonCandyBlue{background-image:url(spritesmith-main-7.png);background-position:-954px -1431px;width:105px;height:105px}.Mount_Body_Spider-CottonCandyPink{background-image:url(spritesmith-main-7.png);background-position:-1060px -1431px;width:105px;height:105px}.Mount_Body_Spider-Desert{background-image:url(spritesmith-main-7.png);background-position:-1166px -1431px;width:105px;height:105px}.Mount_Body_Spider-Golden{background-image:url(spritesmith-main-7.png);background-position:-1272px -1431px;width:105px;height:105px}.Mount_Body_Spider-Red{background-image:url(spritesmith-main-7.png);background-position:-1378px -1431px;width:105px;height:105px}.Mount_Body_Spider-Shade{background-image:url(spritesmith-main-7.png);background-position:-1484px -1431px;width:105px;height:105px}.Mount_Body_Spider-Skeleton{background-image:url(spritesmith-main-7.png);background-position:-1634px 0;width:105px;height:105px}.Mount_Body_Spider-White{background-image:url(spritesmith-main-7.png);background-position:-1634px -106px;width:105px;height:105px}.Mount_Body_Spider-Zombie{background-image:url(spritesmith-main-7.png);background-position:-1634px -212px;width:105px;height:105px}.Mount_Body_TRex-Base{background-image:url(spritesmith-main-7.png);background-position:0 -544px;width:135px;height:135px}.Mount_Body_TRex-CottonCandyBlue{background-image:url(spritesmith-main-7.png);background-position:-408px -136px;width:135px;height:135px}.Mount_Body_TRex-CottonCandyPink{background-image:url(spritesmith-main-7.png);background-position:0 -136px;width:135px;height:135px}.Mount_Body_TRex-Desert{background-image:url(spritesmith-main-7.png);background-position:-136px -136px;width:135px;height:135px}.Mount_Body_TRex-Golden{background-image:url(spritesmith-main-7.png);background-position:-272px 0;width:135px;height:135px}.Mount_Body_TRex-Red{background-image:url(spritesmith-main-7.png);background-position:-272px -136px;width:135px;height:135px}.Mount_Body_TRex-Shade{background-image:url(spritesmith-main-7.png);background-position:0 -272px;width:135px;height:135px}.Mount_Body_TRex-Skeleton{background-image:url(spritesmith-main-7.png);background-position:-136px -272px;width:135px;height:135px}.Mount_Body_TRex-White{background-image:url(spritesmith-main-7.png);background-position:-272px -272px;width:135px;height:135px}.Mount_Body_TRex-Zombie{background-image:url(spritesmith-main-7.png);background-position:-408px 0;width:135px;height:135px}.Mount_Body_TigerCub-Base{background-image:url(spritesmith-main-7.png);background-position:-106px -795px;width:105px;height:105px}.Mount_Body_TigerCub-CottonCandyBlue{background-image:url(spritesmith-main-7.png);background-position:-212px -795px;width:105px;height:105px}.Mount_Body_TigerCub-CottonCandyPink{background-image:url(spritesmith-main-7.png);background-position:-318px -795px;width:105px;height:105px}.Mount_Body_TigerCub-Desert{background-image:url(spritesmith-main-7.png);background-position:-424px -795px;width:105px;height:105px}.Mount_Body_TigerCub-Golden{background-image:url(spritesmith-main-7.png);background-position:-530px -795px;width:105px;height:105px}.Mount_Body_TigerCub-Red{background-image:url(spritesmith-main-7.png);background-position:-636px -795px;width:105px;height:105px}.Mount_Body_TigerCub-Shade{background-image:url(spritesmith-main-7.png);background-position:-742px -795px;width:105px;height:105px}.Mount_Body_TigerCub-Skeleton{background-image:url(spritesmith-main-7.png);background-position:-848px -795px;width:105px;height:105px}.Mount_Body_TigerCub-Spooky{background-image:url(spritesmith-main-7.png);background-position:-998px 0;width:105px;height:105px}.Mount_Body_TigerCub-White{background-image:url(spritesmith-main-7.png);background-position:-998px -106px;width:105px;height:105px}.Mount_Body_TigerCub-Zombie{background-image:url(spritesmith-main-7.png);background-position:-998px -212px;width:105px;height:105px}.Mount_Body_Turkey-Base{background-image:url(spritesmith-main-7.png);background-position:-998px -318px;width:105px;height:105px}.Mount_Body_Whale-Base{background-image:url(spritesmith-main-7.png);background-position:-998px -424px;width:105px;height:105px}.Mount_Body_Whale-CottonCandyBlue{background-image:url(spritesmith-main-7.png);background-position:-998px -530px;width:105px;height:105px}.Mount_Body_Whale-CottonCandyPink{background-image:url(spritesmith-main-7.png);background-position:-998px -636px;width:105px;height:105px}.Mount_Body_Whale-Desert{background-image:url(spritesmith-main-7.png);background-position:-998px -742px;width:105px;height:105px}.Mount_Body_Whale-Golden{background-image:url(spritesmith-main-7.png);background-position:0 -901px;width:105px;height:105px}.Mount_Body_Whale-Red{background-image:url(spritesmith-main-7.png);background-position:-106px -901px;width:105px;height:105px}.Mount_Body_Whale-Shade{background-image:url(spritesmith-main-7.png);background-position:-212px -901px;width:105px;height:105px}.Mount_Body_Whale-Skeleton{background-image:url(spritesmith-main-7.png);background-position:-318px -901px;width:105px;height:105px}.Mount_Body_Whale-White{background-image:url(spritesmith-main-7.png);background-position:-424px -901px;width:105px;height:105px}.Mount_Body_Whale-Zombie{background-image:url(spritesmith-main-7.png);background-position:-530px -901px;width:105px;height:105px}.Mount_Body_Wolf-Base{background-image:url(spritesmith-main-7.png);background-position:0 0;width:135px;height:135px}.Mount_Body_Wolf-CottonCandyBlue{background-image:url(spritesmith-main-7.png);background-position:-408px -272px;width:135px;height:135px}.Mount_Body_Wolf-CottonCandyPink{background-image:url(spritesmith-main-7.png);background-position:0 -408px;width:135px;height:135px}.Mount_Body_Wolf-Desert{background-image:url(spritesmith-main-7.png);background-position:-136px -408px;width:135px;height:135px}.Mount_Body_Wolf-Golden{background-image:url(spritesmith-main-7.png);background-position:-272px -408px;width:135px;height:135px}.Mount_Body_Wolf-Red{background-image:url(spritesmith-main-7.png);background-position:-408px -408px;width:135px;height:135px}.Mount_Body_Wolf-Shade{background-image:url(spritesmith-main-7.png);background-position:-544px 0;width:135px;height:135px}.Mount_Body_Wolf-Skeleton{background-image:url(spritesmith-main-7.png);background-position:-544px -136px;width:135px;height:135px}.Mount_Body_Wolf-Spooky{background-image:url(spritesmith-main-7.png);background-position:-544px -272px;width:135px;height:135px}.Mount_Body_Wolf-White{background-image:url(spritesmith-main-7.png);background-position:-544px -408px;width:135px;height:135px}.Mount_Body_Wolf-Zombie{background-image:url(spritesmith-main-7.png);background-position:-136px 0;width:135px;height:135px}.Mount_Head_BearCub-Base{background-image:url(spritesmith-main-7.png);background-position:-1104px -742px;width:105px;height:105px}.Mount_Head_BearCub-CottonCandyBlue{background-image:url(spritesmith-main-7.png);background-position:-1104px -848px;width:105px;height:105px}.Mount_Head_BearCub-CottonCandyPink{background-image:url(spritesmith-main-7.png);background-position:0 -1007px;width:105px;height:105px}.Mount_Head_BearCub-Desert{background-image:url(spritesmith-main-7.png);background-position:-106px -1007px;width:105px;height:105px}.Mount_Head_BearCub-Golden{background-image:url(spritesmith-main-7.png);background-position:-212px -1007px;width:105px;height:105px}.Mount_Head_BearCub-Polar{background-image:url(spritesmith-main-7.png);background-position:-318px -1007px;width:105px;height:105px}.Mount_Head_BearCub-Red{background-image:url(spritesmith-main-7.png);background-position:-424px -1007px;width:105px;height:105px}.Mount_Head_BearCub-Shade{background-image:url(spritesmith-main-7.png);background-position:-530px -1007px;width:105px;height:105px}.Mount_Head_BearCub-Skeleton{background-image:url(spritesmith-main-7.png);background-position:-636px -1007px;width:105px;height:105px}.Mount_Head_BearCub-Spooky{background-image:url(spritesmith-main-7.png);background-position:-742px -1007px;width:105px;height:105px}.Mount_Head_BearCub-White{background-image:url(spritesmith-main-7.png);background-position:-848px -1007px;width:105px;height:105px}.Mount_Head_BearCub-Zombie{background-image:url(spritesmith-main-7.png);background-position:-954px -1007px;width:105px;height:105px}.Mount_Head_Bunny-Base{background-image:url(spritesmith-main-7.png);background-position:-1060px -1007px;width:105px;height:105px}.Mount_Head_Bunny-CottonCandyBlue{background-image:url(spritesmith-main-7.png);background-position:-1210px 0;width:105px;height:105px}.Mount_Head_Bunny-CottonCandyPink{background-image:url(spritesmith-main-7.png);background-position:-1210px -106px;width:105px;height:105px}.Mount_Head_Bunny-Desert{background-image:url(spritesmith-main-7.png);background-position:-1210px -212px;width:105px;height:105px}.Mount_Head_Bunny-Golden{background-image:url(spritesmith-main-7.png);background-position:-1210px -318px;width:105px;height:105px}.Mount_Head_Bunny-Red{background-image:url(spritesmith-main-7.png);background-position:-1210px -424px;width:105px;height:105px}.Mount_Head_Bunny-Shade{background-image:url(spritesmith-main-7.png);background-position:-1210px -530px;width:105px;height:105px}.Mount_Head_Bunny-Skeleton{background-image:url(spritesmith-main-7.png);background-position:-1210px -636px;width:105px;height:105px}.Mount_Head_Bunny-White{background-image:url(spritesmith-main-7.png);background-position:-1210px -742px;width:105px;height:105px}.Mount_Head_Bunny-Zombie{background-image:url(spritesmith-main-7.png);background-position:-1210px -848px;width:105px;height:105px}.Mount_Head_Cactus-Base{background-image:url(spritesmith-main-7.png);background-position:-1210px -954px;width:105px;height:105px}.Mount_Head_Cactus-CottonCandyBlue{background-image:url(spritesmith-main-7.png);background-position:0 -1113px;width:105px;height:105px}.Mount_Head_Cactus-CottonCandyPink{background-image:url(spritesmith-main-7.png);background-position:-106px -1113px;width:105px;height:105px}.Mount_Head_Cactus-Desert{background-image:url(spritesmith-main-7.png);background-position:-212px -1113px;width:105px;height:105px}.Mount_Head_Cactus-Golden{background-image:url(spritesmith-main-7.png);background-position:-318px -1113px;width:105px;height:105px}.Mount_Head_Cactus-Red{background-image:url(spritesmith-main-7.png);background-position:-424px -1113px;width:105px;height:105px}.Mount_Head_Cactus-Shade{background-image:url(spritesmith-main-7.png);background-position:-530px -1113px;width:105px;height:105px}.Mount_Head_Cactus-Skeleton{background-image:url(spritesmith-main-7.png);background-position:-636px -1113px;width:105px;height:105px}.Mount_Head_Cactus-Spooky{background-image:url(spritesmith-main-7.png);background-position:-742px -1113px;width:105px;height:105px}.Mount_Head_Cactus-White{background-image:url(spritesmith-main-7.png);background-position:-530px -680px;width:105px;height:105px}.Mount_Head_Cactus-Zombie{background-image:url(spritesmith-main-7.png);background-position:-954px -1113px;width:105px;height:105px}.Mount_Head_Cheetah-Base{background-image:url(spritesmith-main-7.png);background-position:-1060px -1113px;width:105px;height:105px}.Mount_Head_Cheetah-CottonCandyBlue{background-image:url(spritesmith-main-7.png);background-position:-1166px -1113px;width:105px;height:105px}.Mount_Head_Cheetah-CottonCandyPink{background-image:url(spritesmith-main-7.png);background-position:-1316px 0;width:105px;height:105px}.Mount_Head_Cheetah-Desert{background-image:url(spritesmith-main-7.png);background-position:-1316px -106px;width:105px;height:105px}.Mount_Head_Cheetah-Golden{background-image:url(spritesmith-main-7.png);background-position:-1316px -212px;width:105px;height:105px}.Mount_Head_Cheetah-Red{background-image:url(spritesmith-main-7.png);background-position:-1316px -318px;width:105px;height:105px}.Mount_Head_Cheetah-Shade{background-image:url(spritesmith-main-7.png);background-position:-1316px -424px;width:105px;height:105px}.Mount_Head_Cheetah-Skeleton{background-image:url(spritesmith-main-7.png);background-position:-1316px -530px;width:105px;height:105px}.Mount_Head_Cheetah-White{background-image:url(spritesmith-main-7.png);background-position:-1316px -636px;width:105px;height:105px}.Mount_Head_Cheetah-Zombie{background-image:url(spritesmith-main-7.png);background-position:-1316px -742px;width:105px;height:105px}.Mount_Head_Cuttlefish-Base{background-image:url(spritesmith-main-7.png);background-position:-242px -544px;width:105px;height:114px}.Mount_Head_Cuttlefish-CottonCandyBlue{background-image:url(spritesmith-main-7.png);background-position:-348px -544px;width:105px;height:114px}.Mount_Head_Cuttlefish-CottonCandyPink{background-image:url(spritesmith-main-7.png);background-position:-454px -544px;width:105px;height:114px}.Mount_Head_Cuttlefish-Desert{background-image:url(spritesmith-main-7.png);background-position:-560px -544px;width:105px;height:114px}.Mount_Head_Cuttlefish-Golden{background-image:url(spritesmith-main-7.png);background-position:-680px 0;width:105px;height:114px}.Mount_Head_Cuttlefish-Red{background-image:url(spritesmith-main-7.png);background-position:-680px -115px;width:105px;height:114px}.Mount_Head_Cuttlefish-Shade{background-image:url(spritesmith-main-7.png);background-position:-680px -230px;width:105px;height:114px}.Mount_Head_Cuttlefish-Skeleton{background-image:url(spritesmith-main-7.png);background-position:-680px -345px;width:105px;height:114px}.Mount_Head_Cuttlefish-White{background-image:url(spritesmith-main-7.png);background-position:-680px -460px;width:105px;height:114px}.Mount_Head_Cuttlefish-Zombie{background-image:url(spritesmith-main-7.png);background-position:-786px 0;width:105px;height:114px}.Mount_Head_Deer-Base{background-image:url(spritesmith-main-7.png);background-position:-742px -1219px;width:105px;height:105px}.Mount_Head_Deer-CottonCandyBlue{background-image:url(spritesmith-main-7.png);background-position:-848px -1219px;width:105px;height:105px}.Mount_Head_Deer-CottonCandyPink{background-image:url(spritesmith-main-7.png);background-position:-954px -1219px;width:105px;height:105px}.Mount_Head_Deer-Desert{background-image:url(spritesmith-main-7.png);background-position:-1060px -1219px;width:105px;height:105px}.Mount_Head_Deer-Golden{background-image:url(spritesmith-main-7.png);background-position:-1166px -1219px;width:105px;height:105px}.Mount_Head_Deer-Red{background-image:url(spritesmith-main-7.png);background-position:-1272px -1219px;width:105px;height:105px}.Mount_Head_Deer-Shade{background-image:url(spritesmith-main-7.png);background-position:-1422px 0;width:105px;height:105px}.Mount_Head_Deer-Skeleton{background-image:url(spritesmith-main-7.png);background-position:-1422px -106px;width:105px;height:105px}.Mount_Head_Deer-White{background-image:url(spritesmith-main-7.png);background-position:-1422px -212px;width:105px;height:105px}.Mount_Head_Deer-Zombie{background-image:url(spritesmith-main-7.png);background-position:-1422px -318px;width:105px;height:105px}.Mount_Head_Dragon-Base{background-image:url(spritesmith-main-7.png);background-position:-1422px -424px;width:105px;height:105px}.Mount_Head_Dragon-CottonCandyBlue{background-image:url(spritesmith-main-7.png);background-position:-1422px -530px;width:105px;height:105px}.Mount_Head_Dragon-CottonCandyPink{background-image:url(spritesmith-main-7.png);background-position:-1422px -636px;width:105px;height:105px}.Mount_Head_Dragon-Desert{background-image:url(spritesmith-main-7.png);background-position:-1422px -742px;width:105px;height:105px}.Mount_Head_Dragon-Golden{background-image:url(spritesmith-main-7.png);background-position:-1422px -848px;width:105px;height:105px}.Mount_Head_Dragon-Red{background-image:url(spritesmith-main-7.png);background-position:-1422px -954px;width:105px;height:105px}.Mount_Head_Dragon-Shade{background-image:url(spritesmith-main-7.png);background-position:-1422px -1060px;width:105px;height:105px}.Mount_Head_Dragon-Skeleton{background-image:url(spritesmith-main-7.png);background-position:-1422px -1166px;width:105px;height:105px}.Mount_Head_Dragon-Spooky{background-image:url(spritesmith-main-7.png);background-position:0 -1325px;width:105px;height:105px}.Mount_Head_Dragon-White{background-image:url(spritesmith-main-7.png);background-position:-106px -1325px;width:105px;height:105px}.Mount_Head_Dragon-Zombie{background-image:url(spritesmith-main-7.png);background-position:-212px -1325px;width:105px;height:105px}.Mount_Head_Egg-Base{background-image:url(spritesmith-main-7.png);background-position:-318px -1325px;width:105px;height:105px}.Mount_Head_Egg-CottonCandyBlue{background-image:url(spritesmith-main-7.png);background-position:-424px -1325px;width:105px;height:105px}.Mount_Head_Egg-CottonCandyPink{background-image:url(spritesmith-main-7.png);background-position:-530px -1325px;width:105px;height:105px}.Mount_Head_Egg-Desert{background-image:url(spritesmith-main-7.png);background-position:-636px -1325px;width:105px;height:105px}.Mount_Head_Egg-Golden{background-image:url(spritesmith-main-7.png);background-position:-742px -1325px;width:105px;height:105px}.Mount_Head_Egg-Red{background-image:url(spritesmith-main-7.png);background-position:-848px -1325px;width:105px;height:105px}.Mount_Head_Egg-Shade{background-image:url(spritesmith-main-7.png);background-position:-954px -1325px;width:105px;height:105px}.Mount_Head_Egg-Skeleton{background-image:url(spritesmith-main-7.png);background-position:-1060px -1325px;width:105px;height:105px}.Mount_Head_Egg-White{background-image:url(spritesmith-main-7.png);background-position:-1166px -1325px;width:105px;height:105px}.Mount_Head_Egg-Zombie{background-image:url(spritesmith-main-7.png);background-position:-1272px -1325px;width:105px;height:105px}.Mount_Head_FlyingPig-Base{background-image:url(spritesmith-main-7.png);background-position:-1378px -1325px;width:105px;height:105px}.Mount_Head_FlyingPig-CottonCandyBlue{background-image:url(spritesmith-main-7.png);background-position:-1528px 0;width:105px;height:105px}.Mount_Head_FlyingPig-CottonCandyPink{background-image:url(spritesmith-main-7.png);background-position:-1528px -106px;width:105px;height:105px}.Mount_Head_FlyingPig-Desert{background-image:url(spritesmith-main-7.png);background-position:-1528px -212px;width:105px;height:105px}.Mount_Head_FlyingPig-Golden{background-image:url(spritesmith-main-7.png);background-position:-1528px -318px;width:105px;height:105px}.Mount_Head_FlyingPig-Red{background-image:url(spritesmith-main-7.png);background-position:-1528px -424px;width:105px;height:105px}.Mount_Head_FlyingPig-Shade{background-image:url(spritesmith-main-7.png);background-position:-1528px -530px;width:105px;height:105px}.Mount_Head_FlyingPig-Skeleton{background-image:url(spritesmith-main-7.png);background-position:-1528px -636px;width:105px;height:105px}.Mount_Head_FlyingPig-Spooky{background-image:url(spritesmith-main-7.png);background-position:-1528px -742px;width:105px;height:105px}.Mount_Head_FlyingPig-White{background-image:url(spritesmith-main-7.png);background-position:-1528px -848px;width:105px;height:105px}.Mount_Head_FlyingPig-Zombie{background-image:url(spritesmith-main-7.png);background-position:-1528px -954px;width:105px;height:105px}.Mount_Head_Fox-Base{background-image:url(spritesmith-main-7.png);background-position:-1528px -1060px;width:105px;height:105px}.Mount_Head_Fox-CottonCandyBlue{background-image:url(spritesmith-main-7.png);background-position:-1528px -1166px;width:105px;height:105px}.Mount_Head_Fox-CottonCandyPink{background-image:url(spritesmith-main-7.png);background-position:-1528px -1272px;width:105px;height:105px}.Mount_Head_Fox-Desert{background-image:url(spritesmith-main-7.png);background-position:0 -1431px;width:105px;height:105px}.Mount_Head_Fox-Golden{background-image:url(spritesmith-main-7.png);background-position:-106px -1431px;width:105px;height:105px}.Mount_Head_Fox-Red{background-image:url(spritesmith-main-7.png);background-position:-212px -1431px;width:105px;height:105px}.Mount_Head_Fox-Shade{background-image:url(spritesmith-main-7.png);background-position:-318px -1431px;width:105px;height:105px}.Mount_Head_Fox-Skeleton{background-image:url(spritesmith-main-7.png);background-position:-424px -1431px;width:105px;height:105px}.Mount_Head_Fox-Spooky{background-image:url(spritesmith-main-7.png);background-position:-530px -1431px;width:105px;height:105px}.Mount_Head_Fox-White{background-image:url(spritesmith-main-7.png);background-position:-636px -1431px;width:105px;height:105px}.Mount_Head_Fox-Zombie{background-image:url(spritesmith-main-7.png);background-position:-742px -1431px;width:105px;height:105px}.Mount_Head_Frog-Base{background-image:url(spritesmith-main-7.png);background-position:-786px -115px;width:105px;height:114px}.Mount_Head_Frog-CottonCandyBlue{background-image:url(spritesmith-main-7.png);background-position:-786px -230px;width:105px;height:114px}.Mount_Head_Frog-CottonCandyPink{background-image:url(spritesmith-main-7.png);background-position:-786px -345px;width:105px;height:114px}.Mount_Head_Frog-Desert{background-image:url(spritesmith-main-7.png);background-position:-786px -460px;width:105px;height:114px}.Mount_Head_Frog-Golden{background-image:url(spritesmith-main-7.png);background-position:0 -680px;width:105px;height:114px}.Mount_Head_Frog-Red{background-image:url(spritesmith-main-7.png);background-position:-106px -680px;width:105px;height:114px}.Mount_Head_Frog-Shade{background-image:url(spritesmith-main-7.png);background-position:-212px -680px;width:105px;height:114px}.Mount_Head_Frog-Skeleton{background-image:url(spritesmith-main-7.png);background-position:-318px -680px;width:105px;height:114px}.Mount_Head_Frog-White{background-image:url(spritesmith-main-7.png);background-position:-424px -680px;width:105px;height:114px}.Mount_Head_Frog-Zombie{background-image:url(spritesmith-main-7.png);background-position:-136px -544px;width:105px;height:114px}.Mount_Head_Gryphon-Base{background-image:url(spritesmith-main-7.png);background-position:-1634px -318px;width:105px;height:105px}.Mount_Head_Gryphon-CottonCandyBlue{background-image:url(spritesmith-main-7.png);background-position:-1634px -424px;width:105px;height:105px}.Mount_Head_Gryphon-CottonCandyPink{background-image:url(spritesmith-main-7.png);background-position:-1634px -530px;width:105px;height:105px}.Mount_Head_Gryphon-Desert{background-image:url(spritesmith-main-7.png);background-position:-1634px -636px;width:105px;height:105px}.Mount_Head_Gryphon-Golden{background-image:url(spritesmith-main-7.png);background-position:-1634px -742px;width:105px;height:105px}.Mount_Head_Gryphon-Red{background-image:url(spritesmith-main-7.png);background-position:-1634px -848px;width:105px;height:105px}.Mount_Head_Gryphon-RoyalPurple{background-image:url(spritesmith-main-7.png);background-position:-1634px -954px;width:105px;height:105px}.Mount_Head_Gryphon-Shade{background-image:url(spritesmith-main-7.png);background-position:-1634px -1060px;width:105px;height:105px}.Mount_Head_Gryphon-Skeleton{background-image:url(spritesmith-main-7.png);background-position:-1634px -1166px;width:105px;height:105px}.Mount_Head_Gryphon-White{background-image:url(spritesmith-main-7.png);background-position:-1634px -1272px;width:105px;height:105px}.Mount_Head_Gryphon-Zombie{background-image:url(spritesmith-main-7.png);background-position:-1634px -1378px;width:105px;height:105px}.Mount_Head_Hedgehog-Base{background-image:url(spritesmith-main-7.png);background-position:0 -1537px;width:105px;height:105px}.Mount_Head_Hedgehog-CottonCandyBlue{background-image:url(spritesmith-main-7.png);background-position:-106px -1537px;width:105px;height:105px}.Mount_Head_Hedgehog-CottonCandyPink{background-image:url(spritesmith-main-7.png);background-position:-212px -1537px;width:105px;height:105px}.Mount_Head_Hedgehog-Desert{background-image:url(spritesmith-main-7.png);background-position:-318px -1537px;width:105px;height:105px}.Mount_Head_Hedgehog-Golden{background-image:url(spritesmith-main-7.png);background-position:-424px -1537px;width:105px;height:105px}.Mount_Head_Hedgehog-Red{background-image:url(spritesmith-main-7.png);background-position:-530px -1537px;width:105px;height:105px}.Mount_Head_Hedgehog-Shade{background-image:url(spritesmith-main-7.png);background-position:-636px -1537px;width:105px;height:105px}.Mount_Head_Hedgehog-Skeleton{background-image:url(spritesmith-main-7.png);background-position:-742px -1537px;width:105px;height:105px}.Mount_Head_Hedgehog-White{background-image:url(spritesmith-main-7.png);background-position:-848px -1537px;width:105px;height:105px}.Mount_Head_Hedgehog-Zombie{background-image:url(spritesmith-main-7.png);background-position:-954px -1537px;width:105px;height:105px}.Mount_Head_Horse-Base{background-image:url(spritesmith-main-7.png);background-position:-1060px -1537px;width:105px;height:105px}.Mount_Head_Horse-CottonCandyBlue{background-image:url(spritesmith-main-7.png);background-position:-1166px -1537px;width:105px;height:105px}.Mount_Head_Horse-CottonCandyPink{background-image:url(spritesmith-main-7.png);background-position:-1272px -1537px;width:105px;height:105px}.Mount_Head_Horse-Desert{background-image:url(spritesmith-main-7.png);background-position:-1378px -1537px;width:105px;height:105px}.Mount_Head_Horse-Golden{background-image:url(spritesmith-main-7.png);background-position:-1484px -1537px;width:105px;height:105px}.Mount_Head_Horse-Red{background-image:url(spritesmith-main-7.png);background-position:-1590px -1537px;width:105px;height:105px}.Mount_Head_Horse-Shade{background-image:url(spritesmith-main-7.png);background-position:-1740px 0;width:105px;height:105px}.Mount_Head_Horse-Skeleton{background-image:url(spritesmith-main-7.png);background-position:-1740px -106px;width:105px;height:105px}.Mount_Head_Horse-White{background-image:url(spritesmith-main-7.png);background-position:-1740px -212px;width:105px;height:105px}.Mount_Head_Horse-Zombie{background-image:url(spritesmith-main-7.png);background-position:-1740px -318px;width:105px;height:105px}.Mount_Head_JackOLantern-Base{background-image:url(spritesmith-main-7.png);background-position:-1740px -424px;width:90px;height:105px}.Mount_Head_LionCub-Base{background-image:url(spritesmith-main-8.png);background-position:-530px -1316px;width:105px;height:105px}.Mount_Head_LionCub-CottonCandyBlue{background-image:url(spritesmith-main-8.png);background-position:-318px -1210px;width:105px;height:105px}.Mount_Head_LionCub-CottonCandyPink{background-image:url(spritesmith-main-8.png);background-position:-954px -1316px;width:105px;height:105px}.Mount_Head_LionCub-Desert{background-image:url(spritesmith-main-8.png);background-position:-1060px -1316px;width:105px;height:105px}.Mount_Head_LionCub-Ethereal{background-image:url(spritesmith-main-8.png);background-position:-106px -1316px;width:105px;height:105px}.Mount_Head_LionCub-Golden{background-image:url(spritesmith-main-8.png);background-position:-212px -1316px;width:105px;height:105px}.Mount_Head_LionCub-Red{background-image:url(spritesmith-main-8.png);background-position:-318px -1316px;width:105px;height:105px}.Mount_Head_LionCub-Shade{background-image:url(spritesmith-main-8.png);background-position:-424px -1316px;width:105px;height:105px}.Mount_Head_LionCub-Skeleton{background-image:url(spritesmith-main-8.png);background-position:-242px -544px;width:105px;height:110px}.Mount_Head_LionCub-Spooky{background-image:url(spritesmith-main-8.png);background-position:-636px -1316px;width:105px;height:105px}.Mount_Head_LionCub-White{background-image:url(spritesmith-main-8.png);background-position:-742px -1316px;width:105px;height:105px}.Mount_Head_LionCub-Zombie{background-image:url(spritesmith-main-8.png);background-position:-848px -1316px;width:105px;height:105px}.Mount_Head_Mammoth-Base{background-image:url(spritesmith-main-8.png);background-position:-136px -544px;width:105px;height:123px}.Mount_Head_MantisShrimp-Base{background-image:url(spritesmith-main-8.png);background-position:-348px -544px;width:108px;height:105px}.Mount_Head_Octopus-Base{background-image:url(spritesmith-main-8.png);background-position:-742px -1422px;width:105px;height:105px}.Mount_Head_Octopus-CottonCandyBlue{background-image:url(spritesmith-main-8.png);background-position:-848px -1422px;width:105px;height:105px}.Mount_Head_Octopus-CottonCandyPink{background-image:url(spritesmith-main-8.png);background-position:-954px -1422px;width:105px;height:105px}.Mount_Head_Octopus-Desert{background-image:url(spritesmith-main-8.png);background-position:-1060px -1422px;width:105px;height:105px}.Mount_Head_Octopus-Golden{background-image:url(spritesmith-main-8.png);background-position:-1166px -1422px;width:105px;height:105px}.Mount_Head_Octopus-Red{background-image:url(spritesmith-main-8.png);background-position:-1272px -1422px;width:105px;height:105px}.Mount_Head_Octopus-Shade{background-image:url(spritesmith-main-8.png);background-position:-1378px -1422px;width:105px;height:105px}.Mount_Head_Octopus-Skeleton{background-image:url(spritesmith-main-8.png);background-position:-1528px 0;width:105px;height:105px}.Mount_Head_Octopus-White{background-image:url(spritesmith-main-8.png);background-position:-1528px -106px;width:105px;height:105px}.Mount_Head_Octopus-Zombie{background-image:url(spritesmith-main-8.png);background-position:-1528px -212px;width:105px;height:105px}.Mount_Head_Orca-Base{background-image:url(spritesmith-main-8.png);background-position:-1528px -318px;width:105px;height:105px}.Mount_Head_Owl-Base{background-image:url(spritesmith-main-8.png);background-position:-563px -544px;width:105px;height:105px}.Mount_Head_Owl-CottonCandyBlue{background-image:url(spritesmith-main-8.png);background-position:-680px 0;width:105px;height:105px}.Mount_Head_Owl-CottonCandyPink{background-image:url(spritesmith-main-8.png);background-position:-680px -106px;width:105px;height:105px}.Mount_Head_Owl-Desert{background-image:url(spritesmith-main-8.png);background-position:-680px -212px;width:105px;height:105px}.Mount_Head_Owl-Golden{background-image:url(spritesmith-main-8.png);background-position:-680px -318px;width:105px;height:105px}.Mount_Head_Owl-Red{background-image:url(spritesmith-main-8.png);background-position:-680px -424px;width:105px;height:105px}.Mount_Head_Owl-Shade{background-image:url(spritesmith-main-8.png);background-position:-680px -530px;width:105px;height:105px}.Mount_Head_Owl-Skeleton{background-image:url(spritesmith-main-8.png);background-position:0 -680px;width:105px;height:105px}.Mount_Head_Owl-White{background-image:url(spritesmith-main-8.png);background-position:-106px -680px;width:105px;height:105px}.Mount_Head_Owl-Zombie{background-image:url(spritesmith-main-8.png);background-position:-212px -680px;width:105px;height:105px}.Mount_Head_PandaCub-Base{background-image:url(spritesmith-main-8.png);background-position:-318px -680px;width:105px;height:105px}.Mount_Head_PandaCub-CottonCandyBlue{background-image:url(spritesmith-main-8.png);background-position:-424px -680px;width:105px;height:105px}.Mount_Head_PandaCub-CottonCandyPink{background-image:url(spritesmith-main-8.png);background-position:-530px -680px;width:105px;height:105px}.Mount_Head_PandaCub-Desert{background-image:url(spritesmith-main-8.png);background-position:-636px -680px;width:105px;height:105px}.Mount_Head_PandaCub-Golden{background-image:url(spritesmith-main-8.png);background-position:-786px 0;width:105px;height:105px}.Mount_Head_PandaCub-Red{background-image:url(spritesmith-main-8.png);background-position:-786px -106px;width:105px;height:105px}.Mount_Head_PandaCub-Shade{background-image:url(spritesmith-main-8.png);background-position:-786px -212px;width:105px;height:105px}.Mount_Head_PandaCub-Skeleton{background-image:url(spritesmith-main-8.png);background-position:-786px -318px;width:105px;height:105px}.Mount_Head_PandaCub-Spooky{background-image:url(spritesmith-main-8.png);background-position:-786px -424px;width:105px;height:105px}.Mount_Head_PandaCub-White{background-image:url(spritesmith-main-8.png);background-position:-786px -530px;width:105px;height:105px}.Mount_Head_PandaCub-Zombie{background-image:url(spritesmith-main-8.png);background-position:-786px -636px;width:105px;height:105px}.Mount_Head_Parrot-Base{background-image:url(spritesmith-main-8.png);background-position:0 -786px;width:105px;height:105px}.Mount_Head_Parrot-CottonCandyBlue{background-image:url(spritesmith-main-8.png);background-position:-106px -786px;width:105px;height:105px}.Mount_Head_Parrot-CottonCandyPink{background-image:url(spritesmith-main-8.png);background-position:-212px -786px;width:105px;height:105px}.Mount_Head_Parrot-Desert{background-image:url(spritesmith-main-8.png);background-position:-318px -786px;width:105px;height:105px}.Mount_Head_Parrot-Golden{background-image:url(spritesmith-main-8.png);background-position:-424px -786px;width:105px;height:105px}.Mount_Head_Parrot-Red{background-image:url(spritesmith-main-8.png);background-position:-530px -786px;width:105px;height:105px}.Mount_Head_Parrot-Shade{background-image:url(spritesmith-main-8.png);background-position:-636px -786px;width:105px;height:105px}.Mount_Head_Parrot-Skeleton{background-image:url(spritesmith-main-8.png);background-position:-742px -786px;width:105px;height:105px}.Mount_Head_Parrot-White{background-image:url(spritesmith-main-8.png);background-position:-892px 0;width:105px;height:105px}.Mount_Head_Parrot-Zombie{background-image:url(spritesmith-main-8.png);background-position:-892px -106px;width:105px;height:105px}.Mount_Head_Penguin-Base{background-image:url(spritesmith-main-8.png);background-position:-892px -212px;width:105px;height:105px}.Mount_Head_Penguin-CottonCandyBlue{background-image:url(spritesmith-main-8.png);background-position:-892px -318px;width:105px;height:105px}.Mount_Head_Penguin-CottonCandyPink{background-image:url(spritesmith-main-8.png);background-position:-892px -424px;width:105px;height:105px}.Mount_Head_Penguin-Desert{background-image:url(spritesmith-main-8.png);background-position:-892px -530px;width:105px;height:105px}.Mount_Head_Penguin-Golden{background-image:url(spritesmith-main-8.png);background-position:-892px -636px;width:105px;height:105px}.Mount_Head_Penguin-Red{background-image:url(spritesmith-main-8.png);background-position:-892px -742px;width:105px;height:105px}.Mount_Head_Penguin-Shade{background-image:url(spritesmith-main-8.png);background-position:0 -892px;width:105px;height:105px}.Mount_Head_Penguin-Skeleton{background-image:url(spritesmith-main-8.png);background-position:-106px -892px;width:105px;height:105px}.Mount_Head_Penguin-White{background-image:url(spritesmith-main-8.png);background-position:-212px -892px;width:105px;height:105px}.Mount_Head_Penguin-Zombie{background-image:url(spritesmith-main-8.png);background-position:-318px -892px;width:105px;height:105px}.Mount_Head_Phoenix-Base{background-image:url(spritesmith-main-8.png);background-position:-424px -892px;width:105px;height:105px}.Mount_Head_Rat-Base{background-image:url(spritesmith-main-8.png);background-position:-530px -892px;width:105px;height:105px}.Mount_Head_Rat-CottonCandyBlue{background-image:url(spritesmith-main-8.png);background-position:-636px -892px;width:105px;height:105px}.Mount_Head_Rat-CottonCandyPink{background-image:url(spritesmith-main-8.png);background-position:-742px -892px;width:105px;height:105px}.Mount_Head_Rat-Desert{background-image:url(spritesmith-main-8.png);background-position:-848px -892px;width:105px;height:105px}.Mount_Head_Rat-Golden{background-image:url(spritesmith-main-8.png);background-position:-998px 0;width:105px;height:105px}.Mount_Head_Rat-Red{background-image:url(spritesmith-main-8.png);background-position:-998px -106px;width:105px;height:105px}.Mount_Head_Rat-Shade{background-image:url(spritesmith-main-8.png);background-position:-998px -212px;width:105px;height:105px}.Mount_Head_Rat-Skeleton{background-image:url(spritesmith-main-8.png);background-position:-998px -318px;width:105px;height:105px}.Mount_Head_Rat-White{background-image:url(spritesmith-main-8.png);background-position:-998px -424px;width:105px;height:105px}.Mount_Head_Rat-Zombie{background-image:url(spritesmith-main-8.png);background-position:-998px -530px;width:105px;height:105px}.Mount_Head_Rock-Base{background-image:url(spritesmith-main-8.png);background-position:-998px -636px;width:105px;height:105px}.Mount_Head_Rock-CottonCandyBlue{background-image:url(spritesmith-main-8.png);background-position:-998px -742px;width:105px;height:105px}.Mount_Head_Rock-CottonCandyPink{background-image:url(spritesmith-main-8.png);background-position:-998px -848px;width:105px;height:105px}.Mount_Head_Rock-Desert{background-image:url(spritesmith-main-8.png);background-position:0 -998px;width:105px;height:105px}.Mount_Head_Rock-Golden{background-image:url(spritesmith-main-8.png);background-position:-106px -998px;width:105px;height:105px}.Mount_Head_Rock-Red{background-image:url(spritesmith-main-8.png);background-position:-212px -998px;width:105px;height:105px}.Mount_Head_Rock-Shade{background-image:url(spritesmith-main-8.png);background-position:-318px -998px;width:105px;height:105px}.Mount_Head_Rock-Skeleton{background-image:url(spritesmith-main-8.png);background-position:-424px -998px;width:105px;height:105px}.Mount_Head_Rock-White{background-image:url(spritesmith-main-8.png);background-position:-530px -998px;width:105px;height:105px}.Mount_Head_Rock-Zombie{background-image:url(spritesmith-main-8.png);background-position:-636px -998px;width:105px;height:105px}.Mount_Head_Rooster-Base{background-image:url(spritesmith-main-8.png);background-position:-742px -998px;width:105px;height:105px}.Mount_Head_Rooster-CottonCandyBlue{background-image:url(spritesmith-main-8.png);background-position:-848px -998px;width:105px;height:105px}.Mount_Head_Rooster-CottonCandyPink{background-image:url(spritesmith-main-8.png);background-position:-954px -998px;width:105px;height:105px}.Mount_Head_Rooster-Desert{background-image:url(spritesmith-main-8.png);background-position:-1104px 0;width:105px;height:105px}.Mount_Head_Rooster-Golden{background-image:url(spritesmith-main-8.png);background-position:-1104px -106px;width:105px;height:105px}.Mount_Head_Rooster-Red{background-image:url(spritesmith-main-8.png);background-position:-1104px -212px;width:105px;height:105px}.Mount_Head_Rooster-Shade{background-image:url(spritesmith-main-8.png);background-position:-1104px -318px;width:105px;height:105px}.Mount_Head_Rooster-Skeleton{background-image:url(spritesmith-main-8.png);background-position:-1104px -424px;width:105px;height:105px}.Mount_Head_Rooster-White{background-image:url(spritesmith-main-8.png);background-position:-1104px -530px;width:105px;height:105px}.Mount_Head_Rooster-Zombie{background-image:url(spritesmith-main-8.png);background-position:-1104px -636px;width:105px;height:105px}.Mount_Head_Seahorse-Base{background-image:url(spritesmith-main-8.png);background-position:-1104px -742px;width:105px;height:105px}.Mount_Head_Seahorse-CottonCandyBlue{background-image:url(spritesmith-main-8.png);background-position:-1104px -848px;width:105px;height:105px}.Mount_Head_Seahorse-CottonCandyPink{background-image:url(spritesmith-main-8.png);background-position:-1104px -954px;width:105px;height:105px}.Mount_Head_Seahorse-Desert{background-image:url(spritesmith-main-8.png);background-position:0 -1104px;width:105px;height:105px}.Mount_Head_Seahorse-Golden{background-image:url(spritesmith-main-8.png);background-position:-106px -1104px;width:105px;height:105px}.Mount_Head_Seahorse-Red{background-image:url(spritesmith-main-8.png);background-position:-212px -1104px;width:105px;height:105px}.Mount_Head_Seahorse-Shade{background-image:url(spritesmith-main-8.png);background-position:-318px -1104px;width:105px;height:105px}.Mount_Head_Seahorse-Skeleton{background-image:url(spritesmith-main-8.png);background-position:-424px -1104px;width:105px;height:105px}.Mount_Head_Seahorse-White{background-image:url(spritesmith-main-8.png);background-position:-530px -1104px;width:105px;height:105px}.Mount_Head_Seahorse-Zombie{background-image:url(spritesmith-main-8.png);background-position:-636px -1104px;width:105px;height:105px}.Mount_Head_Sheep-Base{background-image:url(spritesmith-main-8.png);background-position:-742px -1104px;width:105px;height:105px}.Mount_Head_Sheep-CottonCandyBlue{background-image:url(spritesmith-main-8.png);background-position:-848px -1104px;width:105px;height:105px}.Mount_Head_Sheep-CottonCandyPink{background-image:url(spritesmith-main-8.png);background-position:-954px -1104px;width:105px;height:105px}.Mount_Head_Sheep-Desert{background-image:url(spritesmith-main-8.png);background-position:-1060px -1104px;width:105px;height:105px}.Mount_Head_Sheep-Golden{background-image:url(spritesmith-main-8.png);background-position:-1210px 0;width:105px;height:105px}.Mount_Head_Sheep-Red{background-image:url(spritesmith-main-8.png);background-position:-1210px -106px;width:105px;height:105px}.Mount_Head_Sheep-Shade{background-image:url(spritesmith-main-8.png);background-position:-1210px -212px;width:105px;height:105px}.Mount_Head_Sheep-Skeleton{background-image:url(spritesmith-main-8.png);background-position:-1210px -318px;width:105px;height:105px}.Mount_Head_Sheep-White{background-image:url(spritesmith-main-8.png);background-position:-1210px -424px;width:105px;height:105px}.Mount_Head_Sheep-Zombie{background-image:url(spritesmith-main-8.png);background-position:-1210px -530px;width:105px;height:105px}.Mount_Head_Slime-Base{background-image:url(spritesmith-main-8.png);background-position:-1210px -636px;width:105px;height:105px}.Mount_Head_Slime-CottonCandyBlue{background-image:url(spritesmith-main-8.png);background-position:-1210px -742px;width:105px;height:105px}.Mount_Head_Slime-CottonCandyPink{background-image:url(spritesmith-main-8.png);background-position:-1210px -848px;width:105px;height:105px}.Mount_Head_Slime-Desert{background-image:url(spritesmith-main-8.png);background-position:-1210px -954px;width:105px;height:105px}.Mount_Head_Slime-Golden{background-image:url(spritesmith-main-8.png);background-position:-1210px -1060px;width:105px;height:105px}.Mount_Head_Slime-Red{background-image:url(spritesmith-main-8.png);background-position:0 -1210px;width:105px;height:105px}.Mount_Head_Slime-Shade{background-image:url(spritesmith-main-8.png);background-position:-106px -1210px;width:105px;height:105px}.Mount_Head_Slime-Skeleton{background-image:url(spritesmith-main-8.png);background-position:-212px -1210px;width:105px;height:105px}.Mount_Head_Slime-White{background-image:url(spritesmith-main-8.png);background-position:-457px -544px;width:105px;height:105px}.Mount_Head_Slime-Zombie{background-image:url(spritesmith-main-8.png);background-position:-424px -1210px;width:105px;height:105px}.Mount_Head_Snake-Base{background-image:url(spritesmith-main-8.png);background-position:-530px -1210px;width:105px;height:105px}.Mount_Head_Snake-CottonCandyBlue{background-image:url(spritesmith-main-8.png);background-position:-636px -1210px;width:105px;height:105px}.Mount_Head_Snake-CottonCandyPink{background-image:url(spritesmith-main-8.png);background-position:-742px -1210px;width:105px;height:105px}.Mount_Head_Snake-Desert{background-image:url(spritesmith-main-8.png);background-position:-848px -1210px;width:105px;height:105px}.Mount_Head_Snake-Golden{background-image:url(spritesmith-main-8.png);background-position:-954px -1210px;width:105px;height:105px}.Mount_Head_Snake-Red{background-image:url(spritesmith-main-8.png);background-position:-1060px -1210px;width:105px;height:105px}.Mount_Head_Snake-Shade{background-image:url(spritesmith-main-8.png);background-position:-1166px -1210px;width:105px;height:105px}.Mount_Head_Snake-Skeleton{background-image:url(spritesmith-main-8.png);background-position:-1316px 0;width:105px;height:105px}.Mount_Head_Snake-White{background-image:url(spritesmith-main-8.png);background-position:-1316px -106px;width:105px;height:105px}.Mount_Head_Snake-Zombie{background-image:url(spritesmith-main-8.png);background-position:-1316px -212px;width:105px;height:105px}.Mount_Head_Spider-Base{background-image:url(spritesmith-main-8.png);background-position:-1316px -318px;width:105px;height:105px}.Mount_Head_Spider-CottonCandyBlue{background-image:url(spritesmith-main-8.png);background-position:-1316px -424px;width:105px;height:105px}.Mount_Head_Spider-CottonCandyPink{background-image:url(spritesmith-main-8.png);background-position:-1316px -530px;width:105px;height:105px}.Mount_Head_Spider-Desert{background-image:url(spritesmith-main-8.png);background-position:-1316px -636px;width:105px;height:105px}.Mount_Head_Spider-Golden{background-image:url(spritesmith-main-8.png);background-position:-1316px -742px;width:105px;height:105px}.Mount_Head_Spider-Red{background-image:url(spritesmith-main-8.png);background-position:-1316px -848px;width:105px;height:105px}.Mount_Head_Spider-Shade{background-image:url(spritesmith-main-8.png);background-position:-1316px -954px;width:105px;height:105px}.Mount_Head_Spider-Skeleton{background-image:url(spritesmith-main-8.png);background-position:-1316px -1060px;width:105px;height:105px}.Mount_Head_Spider-White{background-image:url(spritesmith-main-8.png);background-position:-1316px -1166px;width:105px;height:105px}.Mount_Head_Spider-Zombie{background-image:url(spritesmith-main-8.png);background-position:0 -1316px;width:105px;height:105px}.Mount_Head_TRex-Base{background-image:url(spritesmith-main-8.png);background-position:-272px 0;width:135px;height:135px}.Mount_Head_TRex-CottonCandyBlue{background-image:url(spritesmith-main-8.png);background-position:-272px -136px;width:135px;height:135px}.Mount_Head_TRex-CottonCandyPink{background-image:url(spritesmith-main-8.png);background-position:0 -272px;width:135px;height:135px}.Mount_Head_TRex-Desert{background-image:url(spritesmith-main-8.png);background-position:-136px -272px;width:135px;height:135px}.Mount_Head_TRex-Golden{background-image:url(spritesmith-main-8.png);background-position:-272px -272px;width:135px;height:135px}.Mount_Head_TRex-Red{background-image:url(spritesmith-main-8.png);background-position:-408px 0;width:135px;height:135px}.Mount_Head_TRex-Shade{background-image:url(spritesmith-main-8.png);background-position:-408px -136px;width:135px;height:135px}.Mount_Head_TRex-Skeleton{background-image:url(spritesmith-main-8.png);background-position:-408px -272px;width:135px;height:135px}.Mount_Head_TRex-White{background-image:url(spritesmith-main-8.png);background-position:0 0;width:135px;height:135px}.Mount_Head_TRex-Zombie{background-image:url(spritesmith-main-8.png);background-position:-136px -408px;width:135px;height:135px}.Mount_Head_TigerCub-Base{background-image:url(spritesmith-main-8.png);background-position:-1166px -1316px;width:105px;height:105px}.Mount_Head_TigerCub-CottonCandyBlue{background-image:url(spritesmith-main-8.png);background-position:-1272px -1316px;width:105px;height:105px}.Mount_Head_TigerCub-CottonCandyPink{background-image:url(spritesmith-main-8.png);background-position:-1422px 0;width:105px;height:105px}.Mount_Head_TigerCub-Desert{background-image:url(spritesmith-main-8.png);background-position:-1422px -106px;width:105px;height:105px}.Mount_Head_TigerCub-Golden{background-image:url(spritesmith-main-8.png);background-position:-1422px -212px;width:105px;height:105px}.Mount_Head_TigerCub-Red{background-image:url(spritesmith-main-8.png);background-position:-1422px -318px;width:105px;height:105px}.Mount_Head_TigerCub-Shade{background-image:url(spritesmith-main-8.png);background-position:-1422px -424px;width:105px;height:105px}.Mount_Head_TigerCub-Skeleton{background-image:url(spritesmith-main-8.png);background-position:-1422px -530px;width:105px;height:105px}.Mount_Head_TigerCub-Spooky{background-image:url(spritesmith-main-8.png);background-position:-1422px -636px;width:105px;height:105px}.Mount_Head_TigerCub-White{background-image:url(spritesmith-main-8.png);background-position:-1422px -742px;width:105px;height:105px}.Mount_Head_TigerCub-Zombie{background-image:url(spritesmith-main-8.png);background-position:-1422px -848px;width:105px;height:105px}.Mount_Head_Turkey-Base{background-image:url(spritesmith-main-8.png);background-position:-1422px -954px;width:105px;height:105px}.Mount_Head_Whale-Base{background-image:url(spritesmith-main-8.png);background-position:-1422px -1060px;width:105px;height:105px}.Mount_Head_Whale-CottonCandyBlue{background-image:url(spritesmith-main-8.png);background-position:-1422px -1166px;width:105px;height:105px}.Mount_Head_Whale-CottonCandyPink{background-image:url(spritesmith-main-8.png);background-position:-1422px -1272px;width:105px;height:105px}.Mount_Head_Whale-Desert{background-image:url(spritesmith-main-8.png);background-position:0 -1422px;width:105px;height:105px}.Mount_Head_Whale-Golden{background-image:url(spritesmith-main-8.png);background-position:-106px -1422px;width:105px;height:105px}.Mount_Head_Whale-Red{background-image:url(spritesmith-main-8.png);background-position:-212px -1422px;width:105px;height:105px}.Mount_Head_Whale-Shade{background-image:url(spritesmith-main-8.png);background-position:-318px -1422px;width:105px;height:105px}.Mount_Head_Whale-Skeleton{background-image:url(spritesmith-main-8.png);background-position:-424px -1422px;width:105px;height:105px}.Mount_Head_Whale-White{background-image:url(spritesmith-main-8.png);background-position:-530px -1422px;width:105px;height:105px}.Mount_Head_Whale-Zombie{background-image:url(spritesmith-main-8.png);background-position:-636px -1422px;width:105px;height:105px}.Mount_Head_Wolf-Base{background-image:url(spritesmith-main-8.png);background-position:-272px -408px;width:135px;height:135px}.Mount_Head_Wolf-CottonCandyBlue{background-image:url(spritesmith-main-8.png);background-position:-408px -408px;width:135px;height:135px}.Mount_Head_Wolf-CottonCandyPink{background-image:url(spritesmith-main-8.png);background-position:-544px 0;width:135px;height:135px}.Mount_Head_Wolf-Desert{background-image:url(spritesmith-main-8.png);background-position:-544px -136px;width:135px;height:135px}.Mount_Head_Wolf-Golden{background-image:url(spritesmith-main-8.png);background-position:-544px -272px;width:135px;height:135px}.Mount_Head_Wolf-Red{background-image:url(spritesmith-main-8.png);background-position:-544px -408px;width:135px;height:135px}.Mount_Head_Wolf-Shade{background-image:url(spritesmith-main-8.png);background-position:0 -544px;width:135px;height:135px}.Mount_Head_Wolf-Skeleton{background-image:url(spritesmith-main-8.png);background-position:0 -408px;width:135px;height:135px}.Mount_Head_Wolf-Spooky{background-image:url(spritesmith-main-8.png);background-position:-136px -136px;width:135px;height:135px}.Mount_Head_Wolf-White{background-image:url(spritesmith-main-8.png);background-position:0 -136px;width:135px;height:135px}.Mount_Head_Wolf-Zombie{background-image:url(spritesmith-main-8.png);background-position:-136px 0;width:135px;height:135px}.Pet-BearCub-Base{background-image:url(spritesmith-main-8.png);background-position:-1528px -524px;width:81px;height:99px}.Pet-BearCub-CottonCandyBlue{background-image:url(spritesmith-main-8.png);background-position:-1634px 0;width:81px;height:99px}.Pet-BearCub-CottonCandyPink{background-image:url(spritesmith-main-8.png);background-position:-1528px -624px;width:81px;height:99px}.Pet-BearCub-Desert{background-image:url(spritesmith-main-8.png);background-position:-1528px -724px;width:81px;height:99px}.Pet-BearCub-Golden{background-image:url(spritesmith-main-8.png);background-position:-1528px -824px;width:81px;height:99px}.Pet-BearCub-Polar{background-image:url(spritesmith-main-8.png);background-position:-1528px -924px;width:81px;height:99px}.Pet-BearCub-Red{background-image:url(spritesmith-main-8.png);background-position:-1528px -1024px;width:81px;height:99px}.Pet-BearCub-Shade{background-image:url(spritesmith-main-8.png);background-position:-1528px -1124px;width:81px;height:99px}.Pet-BearCub-Skeleton{background-image:url(spritesmith-main-8.png);background-position:-1528px -1224px;width:81px;height:99px}.Pet-BearCub-Spooky{background-image:url(spritesmith-main-8.png);background-position:-1528px -1324px;width:81px;height:99px}.Pet-BearCub-White{background-image:url(spritesmith-main-8.png);background-position:-1528px -1424px;width:81px;height:99px}.Pet-BearCub-Zombie{background-image:url(spritesmith-main-8.png);background-position:0 -1528px;width:81px;height:99px}.Pet-Bunny-Base{background-image:url(spritesmith-main-8.png);background-position:-82px -1528px;width:81px;height:99px}.Pet-Bunny-CottonCandyBlue{background-image:url(spritesmith-main-8.png);background-position:-164px -1528px;width:81px;height:99px}.Pet-Bunny-CottonCandyPink{background-image:url(spritesmith-main-8.png);background-position:-246px -1528px;width:81px;height:99px}.Pet-Bunny-Desert{background-image:url(spritesmith-main-8.png);background-position:-328px -1528px;width:81px;height:99px}.Pet-Bunny-Golden{background-image:url(spritesmith-main-8.png);background-position:-410px -1528px;width:81px;height:99px}.Pet-Bunny-Red{background-image:url(spritesmith-main-8.png);background-position:-492px -1528px;width:81px;height:99px}.Pet-Bunny-Shade{background-image:url(spritesmith-main-8.png);background-position:-574px -1528px;width:81px;height:99px}.Pet-Bunny-Skeleton{background-image:url(spritesmith-main-8.png);background-position:-656px -1528px;width:81px;height:99px}.Pet-Bunny-White{background-image:url(spritesmith-main-8.png);background-position:-738px -1528px;width:81px;height:99px}.Pet-Bunny-Zombie{background-image:url(spritesmith-main-8.png);background-position:-820px -1528px;width:81px;height:99px}.Pet-Cactus-Base{background-image:url(spritesmith-main-8.png);background-position:-902px -1528px;width:81px;height:99px}.Pet-Cactus-CottonCandyBlue{background-image:url(spritesmith-main-8.png);background-position:-984px -1528px;width:81px;height:99px}.Pet-Cactus-CottonCandyPink{background-image:url(spritesmith-main-8.png);background-position:-1066px -1528px;width:81px;height:99px}.Pet-Cactus-Desert{background-image:url(spritesmith-main-8.png);background-position:-1148px -1528px;width:81px;height:99px}.Pet-Cactus-Golden{background-image:url(spritesmith-main-8.png);background-position:-1230px -1528px;width:81px;height:99px}.Pet-Cactus-Red{background-image:url(spritesmith-main-8.png);background-position:-1312px -1528px;width:81px;height:99px}.Pet-Cactus-Shade{background-image:url(spritesmith-main-8.png);background-position:-1394px -1528px;width:81px;height:99px}.Pet-Cactus-Skeleton{background-image:url(spritesmith-main-8.png);background-position:-1476px -1528px;width:81px;height:99px}.Pet-Cactus-Spooky{background-image:url(spritesmith-main-8.png);background-position:-1528px -424px;width:81px;height:99px}.Pet-Cactus-White{background-image:url(spritesmith-main-8.png);background-position:-1634px -100px;width:81px;height:99px}.Pet-Cactus-Zombie{background-image:url(spritesmith-main-8.png);background-position:-1634px -200px;width:81px;height:99px}.Pet-Cheetah-Base{background-image:url(spritesmith-main-8.png);background-position:-1634px -300px;width:81px;height:99px}.Pet-Cheetah-CottonCandyBlue{background-image:url(spritesmith-main-8.png);background-position:-1634px -400px;width:81px;height:99px}.Pet-Cheetah-CottonCandyPink{background-image:url(spritesmith-main-8.png);background-position:-1634px -500px;width:81px;height:99px}.Pet-Cheetah-Desert{background-image:url(spritesmith-main-8.png);background-position:-1634px -600px;width:81px;height:99px}.Pet-Cheetah-Golden{background-image:url(spritesmith-main-8.png);background-position:-1634px -700px;width:81px;height:99px}.Pet-Cheetah-Red{background-image:url(spritesmith-main-8.png);background-position:-1634px -800px;width:81px;height:99px}.Pet-Cheetah-Shade{background-image:url(spritesmith-main-8.png);background-position:-1634px -900px;width:81px;height:99px}.Pet-Cheetah-Skeleton{background-image:url(spritesmith-main-8.png);background-position:-1634px -1000px;width:81px;height:99px}.Pet-Cheetah-White{background-image:url(spritesmith-main-8.png);background-position:-1634px -1100px;width:81px;height:99px}.Pet-Cheetah-Zombie{background-image:url(spritesmith-main-8.png);background-position:-1634px -1200px;width:81px;height:99px}.Pet-Cuttlefish-Base{background-image:url(spritesmith-main-8.png);background-position:-1634px -1300px;width:81px;height:99px}.Pet-Cuttlefish-CottonCandyBlue{background-image:url(spritesmith-main-8.png);background-position:-1634px -1400px;width:81px;height:99px}.Pet-Cuttlefish-CottonCandyPink{background-image:url(spritesmith-main-8.png);background-position:-1634px -1500px;width:81px;height:99px}.Pet-Cuttlefish-Desert{background-image:url(spritesmith-main-8.png);background-position:-1716px 0;width:81px;height:99px}.Pet-Cuttlefish-Golden{background-image:url(spritesmith-main-8.png);background-position:-1716px -100px;width:81px;height:99px}.Pet-Cuttlefish-Red{background-image:url(spritesmith-main-8.png);background-position:-1716px -200px;width:81px;height:99px}.Pet-Cuttlefish-Shade{background-image:url(spritesmith-main-8.png);background-position:-1716px -300px;width:81px;height:99px}.Pet-Cuttlefish-Skeleton{background-image:url(spritesmith-main-8.png);background-position:-1716px -400px;width:81px;height:99px}.Pet-Cuttlefish-White{background-image:url(spritesmith-main-8.png);background-position:-1716px -500px;width:81px;height:99px}.Pet-Cuttlefish-Zombie{background-image:url(spritesmith-main-8.png);background-position:-1716px -600px;width:81px;height:99px}.Pet-Deer-Base{background-image:url(spritesmith-main-8.png);background-position:-1716px -700px;width:81px;height:99px}.Pet-Deer-CottonCandyBlue{background-image:url(spritesmith-main-8.png);background-position:-1716px -800px;width:81px;height:99px}.Pet-Deer-CottonCandyPink{background-image:url(spritesmith-main-8.png);background-position:-1716px -900px;width:81px;height:99px}.Pet-Deer-Desert{background-image:url(spritesmith-main-8.png);background-position:-1716px -1000px;width:81px;height:99px}.Pet-Deer-Golden{background-image:url(spritesmith-main-8.png);background-position:-1716px -1100px;width:81px;height:99px}.Pet-Deer-Red{background-image:url(spritesmith-main-8.png);background-position:-1716px -1200px;width:81px;height:99px}.Pet-Deer-Shade{background-image:url(spritesmith-main-8.png);background-position:-1716px -1300px;width:81px;height:99px}.Pet-Deer-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-82px 0;width:81px;height:99px}.Pet-Deer-White{background-image:url(spritesmith-main-9.png);background-position:-328px -1000px;width:81px;height:99px}.Pet-Deer-Zombie{background-image:url(spritesmith-main-9.png);background-position:-164px 0;width:81px;height:99px}.Pet-Dragon-Base{background-image:url(spritesmith-main-9.png);background-position:0 -100px;width:81px;height:99px}.Pet-Dragon-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-82px -100px;width:81px;height:99px}.Pet-Dragon-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-164px -100px;width:81px;height:99px}.Pet-Dragon-Desert{background-image:url(spritesmith-main-9.png);background-position:-246px 0;width:81px;height:99px}.Pet-Dragon-Golden{background-image:url(spritesmith-main-9.png);background-position:-246px -100px;width:81px;height:99px}.Pet-Dragon-Hydra{background-image:url(spritesmith-main-9.png);background-position:0 -200px;width:81px;height:99px}.Pet-Dragon-Red{background-image:url(spritesmith-main-9.png);background-position:-82px -200px;width:81px;height:99px}.Pet-Dragon-Shade{background-image:url(spritesmith-main-9.png);background-position:-164px -200px;width:81px;height:99px}.Pet-Dragon-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-246px -200px;width:81px;height:99px}.Pet-Dragon-Spooky{background-image:url(spritesmith-main-9.png);background-position:-328px 0;width:81px;height:99px}.Pet-Dragon-White{background-image:url(spritesmith-main-9.png);background-position:-328px -100px;width:81px;height:99px}.Pet-Dragon-Zombie{background-image:url(spritesmith-main-9.png);background-position:-328px -200px;width:81px;height:99px}.Pet-Egg-Base{background-image:url(spritesmith-main-9.png);background-position:0 -300px;width:81px;height:99px}.Pet-Egg-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-82px -300px;width:81px;height:99px}.Pet-Egg-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-164px -300px;width:81px;height:99px}.Pet-Egg-Desert{background-image:url(spritesmith-main-9.png);background-position:-246px -300px;width:81px;height:99px}.Pet-Egg-Golden{background-image:url(spritesmith-main-9.png);background-position:-328px -300px;width:81px;height:99px}.Pet-Egg-Red{background-image:url(spritesmith-main-9.png);background-position:-410px 0;width:81px;height:99px}.Pet-Egg-Shade{background-image:url(spritesmith-main-9.png);background-position:-410px -100px;width:81px;height:99px}.Pet-Egg-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-410px -200px;width:81px;height:99px}.Pet-Egg-White{background-image:url(spritesmith-main-9.png);background-position:-410px -300px;width:81px;height:99px}.Pet-Egg-Zombie{background-image:url(spritesmith-main-9.png);background-position:-492px 0;width:81px;height:99px}.Pet-FlyingPig-Base{background-image:url(spritesmith-main-9.png);background-position:-492px -100px;width:81px;height:99px}.Pet-FlyingPig-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-492px -200px;width:81px;height:99px}.Pet-FlyingPig-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-492px -300px;width:81px;height:99px}.Pet-FlyingPig-Desert{background-image:url(spritesmith-main-9.png);background-position:0 -400px;width:81px;height:99px}.Pet-FlyingPig-Golden{background-image:url(spritesmith-main-9.png);background-position:-82px -400px;width:81px;height:99px}.Pet-FlyingPig-Red{background-image:url(spritesmith-main-9.png);background-position:-164px -400px;width:81px;height:99px}.Pet-FlyingPig-Shade{background-image:url(spritesmith-main-9.png);background-position:-246px -400px;width:81px;height:99px}.Pet-FlyingPig-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-328px -400px;width:81px;height:99px}.Pet-FlyingPig-Spooky{background-image:url(spritesmith-main-9.png);background-position:-410px -400px;width:81px;height:99px}.Pet-FlyingPig-White{background-image:url(spritesmith-main-9.png);background-position:-492px -400px;width:81px;height:99px}.Pet-FlyingPig-Zombie{background-image:url(spritesmith-main-9.png);background-position:-574px 0;width:81px;height:99px}.Pet-Fox-Base{background-image:url(spritesmith-main-9.png);background-position:-574px -100px;width:81px;height:99px}.Pet-Fox-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-574px -200px;width:81px;height:99px}.Pet-Fox-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-574px -300px;width:81px;height:99px}.Pet-Fox-Desert{background-image:url(spritesmith-main-9.png);background-position:-574px -400px;width:81px;height:99px}.Pet-Fox-Golden{background-image:url(spritesmith-main-9.png);background-position:0 -500px;width:81px;height:99px}.Pet-Fox-Red{background-image:url(spritesmith-main-9.png);background-position:-82px -500px;width:81px;height:99px}.Pet-Fox-Shade{background-image:url(spritesmith-main-9.png);background-position:-164px -500px;width:81px;height:99px}.Pet-Fox-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-246px -500px;width:81px;height:99px}.Pet-Fox-Spooky{background-image:url(spritesmith-main-9.png);background-position:-328px -500px;width:81px;height:99px}.Pet-Fox-White{background-image:url(spritesmith-main-9.png);background-position:-410px -500px;width:81px;height:99px}.Pet-Fox-Zombie{background-image:url(spritesmith-main-9.png);background-position:-492px -500px;width:81px;height:99px}.Pet-Frog-Base{background-image:url(spritesmith-main-9.png);background-position:-574px -500px;width:81px;height:99px}.Pet-Frog-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-656px 0;width:81px;height:99px}.Pet-Frog-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-656px -100px;width:81px;height:99px}.Pet-Frog-Desert{background-image:url(spritesmith-main-9.png);background-position:-656px -200px;width:81px;height:99px}.Pet-Frog-Golden{background-image:url(spritesmith-main-9.png);background-position:-656px -300px;width:81px;height:99px}.Pet-Frog-Red{background-image:url(spritesmith-main-9.png);background-position:-656px -400px;width:81px;height:99px}.Pet-Frog-Shade{background-image:url(spritesmith-main-9.png);background-position:-656px -500px;width:81px;height:99px}.Pet-Frog-Skeleton{background-image:url(spritesmith-main-9.png);background-position:0 -600px;width:81px;height:99px}.Pet-Frog-White{background-image:url(spritesmith-main-9.png);background-position:-82px -600px;width:81px;height:99px}.Pet-Frog-Zombie{background-image:url(spritesmith-main-9.png);background-position:-164px -600px;width:81px;height:99px}.Pet-Gryphon-Base{background-image:url(spritesmith-main-9.png);background-position:-246px -600px;width:81px;height:99px}.Pet-Gryphon-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-328px -600px;width:81px;height:99px}.Pet-Gryphon-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-410px -600px;width:81px;height:99px}.Pet-Gryphon-Desert{background-image:url(spritesmith-main-9.png);background-position:-492px -600px;width:81px;height:99px}.Pet-Gryphon-Golden{background-image:url(spritesmith-main-9.png);background-position:-574px -600px;width:81px;height:99px}.Pet-Gryphon-Red{background-image:url(spritesmith-main-9.png);background-position:-656px -600px;width:81px;height:99px}.Pet-Gryphon-Shade{background-image:url(spritesmith-main-9.png);background-position:-738px 0;width:81px;height:99px}.Pet-Gryphon-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-738px -100px;width:81px;height:99px}.Pet-Gryphon-White{background-image:url(spritesmith-main-9.png);background-position:-738px -200px;width:81px;height:99px}.Pet-Gryphon-Zombie{background-image:url(spritesmith-main-9.png);background-position:-738px -300px;width:81px;height:99px}.Pet-Hedgehog-Base{background-image:url(spritesmith-main-9.png);background-position:-738px -400px;width:81px;height:99px}.Pet-Hedgehog-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-738px -500px;width:81px;height:99px}.Pet-Hedgehog-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-738px -600px;width:81px;height:99px}.Pet-Hedgehog-Desert{background-image:url(spritesmith-main-9.png);background-position:0 -700px;width:81px;height:99px}.Pet-Hedgehog-Golden{background-image:url(spritesmith-main-9.png);background-position:-82px -700px;width:81px;height:99px}.Pet-Hedgehog-Red{background-image:url(spritesmith-main-9.png);background-position:-164px -700px;width:81px;height:99px}.Pet-Hedgehog-Shade{background-image:url(spritesmith-main-9.png);background-position:-246px -700px;width:81px;height:99px}.Pet-Hedgehog-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-328px -700px;width:81px;height:99px}.Pet-Hedgehog-White{background-image:url(spritesmith-main-9.png);background-position:-410px -700px;width:81px;height:99px}.Pet-Hedgehog-Zombie{background-image:url(spritesmith-main-9.png);background-position:-492px -700px;width:81px;height:99px}.Pet-Horse-Base{background-image:url(spritesmith-main-9.png);background-position:-574px -700px;width:81px;height:99px}.Pet-Horse-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-656px -700px;width:81px;height:99px}.Pet-Horse-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-738px -700px;width:81px;height:99px}.Pet-Horse-Desert{background-image:url(spritesmith-main-9.png);background-position:-820px 0;width:81px;height:99px}.Pet-Horse-Golden{background-image:url(spritesmith-main-9.png);background-position:-820px -100px;width:81px;height:99px}.Pet-Horse-Red{background-image:url(spritesmith-main-9.png);background-position:-820px -200px;width:81px;height:99px}.Pet-Horse-Shade{background-image:url(spritesmith-main-9.png);background-position:-820px -300px;width:81px;height:99px}.Pet-Horse-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-820px -400px;width:81px;height:99px}.Pet-Horse-White{background-image:url(spritesmith-main-9.png);background-position:-820px -500px;width:81px;height:99px}.Pet-Horse-Zombie{background-image:url(spritesmith-main-9.png);background-position:-820px -600px;width:81px;height:99px}.Pet-JackOLantern-Base{background-image:url(spritesmith-main-9.png);background-position:-820px -700px;width:81px;height:99px}.Pet-LionCub-Base{background-image:url(spritesmith-main-9.png);background-position:0 -800px;width:81px;height:99px}.Pet-LionCub-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-82px -800px;width:81px;height:99px}.Pet-LionCub-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-164px -800px;width:81px;height:99px}.Pet-LionCub-Desert{background-image:url(spritesmith-main-9.png);background-position:-246px -800px;width:81px;height:99px}.Pet-LionCub-Golden{background-image:url(spritesmith-main-9.png);background-position:-328px -800px;width:81px;height:99px}.Pet-LionCub-Red{background-image:url(spritesmith-main-9.png);background-position:-410px -800px;width:81px;height:99px}.Pet-LionCub-Shade{background-image:url(spritesmith-main-9.png);background-position:-492px -800px;width:81px;height:99px}.Pet-LionCub-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-574px -800px;width:81px;height:99px}.Pet-LionCub-Spooky{background-image:url(spritesmith-main-9.png);background-position:-656px -800px;width:81px;height:99px}.Pet-LionCub-White{background-image:url(spritesmith-main-9.png);background-position:-738px -800px;width:81px;height:99px}.Pet-LionCub-Zombie{background-image:url(spritesmith-main-9.png);background-position:-820px -800px;width:81px;height:99px}.Pet-Mammoth-Base{background-image:url(spritesmith-main-9.png);background-position:-902px 0;width:81px;height:99px}.Pet-MantisShrimp-Base{background-image:url(spritesmith-main-9.png);background-position:-902px -100px;width:81px;height:99px}.Pet-Octopus-Base{background-image:url(spritesmith-main-9.png);background-position:-902px -200px;width:81px;height:99px}.Pet-Octopus-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-902px -300px;width:81px;height:99px}.Pet-Octopus-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-902px -400px;width:81px;height:99px}.Pet-Octopus-Desert{background-image:url(spritesmith-main-9.png);background-position:-902px -500px;width:81px;height:99px}.Pet-Octopus-Golden{background-image:url(spritesmith-main-9.png);background-position:-902px -600px;width:81px;height:99px}.Pet-Octopus-Red{background-image:url(spritesmith-main-9.png);background-position:-902px -700px;width:81px;height:99px}.Pet-Octopus-Shade{background-image:url(spritesmith-main-9.png);background-position:-902px -800px;width:81px;height:99px}.Pet-Octopus-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-984px 0;width:81px;height:99px}.Pet-Octopus-White{background-image:url(spritesmith-main-9.png);background-position:-984px -100px;width:81px;height:99px}.Pet-Octopus-Zombie{background-image:url(spritesmith-main-9.png);background-position:-984px -200px;width:81px;height:99px}.Pet-Owl-Base{background-image:url(spritesmith-main-9.png);background-position:-984px -300px;width:81px;height:99px}.Pet-Owl-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-984px -400px;width:81px;height:99px}.Pet-Owl-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-984px -500px;width:81px;height:99px}.Pet-Owl-Desert{background-image:url(spritesmith-main-9.png);background-position:-984px -600px;width:81px;height:99px}.Pet-Owl-Golden{background-image:url(spritesmith-main-9.png);background-position:-984px -700px;width:81px;height:99px}.Pet-Owl-Red{background-image:url(spritesmith-main-9.png);background-position:-984px -800px;width:81px;height:99px}.Pet-Owl-Shade{background-image:url(spritesmith-main-9.png);background-position:0 -900px;width:81px;height:99px}.Pet-Owl-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-82px -900px;width:81px;height:99px}.Pet-Owl-White{background-image:url(spritesmith-main-9.png);background-position:-164px -900px;width:81px;height:99px}.Pet-Owl-Zombie{background-image:url(spritesmith-main-9.png);background-position:-246px -900px;width:81px;height:99px}.Pet-PandaCub-Base{background-image:url(spritesmith-main-9.png);background-position:-328px -900px;width:81px;height:99px}.Pet-PandaCub-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-410px -900px;width:81px;height:99px}.Pet-PandaCub-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-492px -900px;width:81px;height:99px}.Pet-PandaCub-Desert{background-image:url(spritesmith-main-9.png);background-position:-574px -900px;width:81px;height:99px}.Pet-PandaCub-Golden{background-image:url(spritesmith-main-9.png);background-position:-656px -900px;width:81px;height:99px}.Pet-PandaCub-Red{background-image:url(spritesmith-main-9.png);background-position:-738px -900px;width:81px;height:99px}.Pet-PandaCub-Shade{background-image:url(spritesmith-main-9.png);background-position:-820px -900px;width:81px;height:99px}.Pet-PandaCub-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-902px -900px;width:81px;height:99px}.Pet-PandaCub-Spooky{background-image:url(spritesmith-main-9.png);background-position:-984px -900px;width:81px;height:99px}.Pet-PandaCub-White{background-image:url(spritesmith-main-9.png);background-position:-1066px 0;width:81px;height:99px}.Pet-PandaCub-Zombie{background-image:url(spritesmith-main-9.png);background-position:-1066px -100px;width:81px;height:99px}.Pet-Parrot-Base{background-image:url(spritesmith-main-9.png);background-position:-1066px -200px;width:81px;height:99px}.Pet-Parrot-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-1066px -300px;width:81px;height:99px}.Pet-Parrot-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-1066px -400px;width:81px;height:99px}.Pet-Parrot-Desert{background-image:url(spritesmith-main-9.png);background-position:-1066px -500px;width:81px;height:99px}.Pet-Parrot-Golden{background-image:url(spritesmith-main-9.png);background-position:-1066px -600px;width:81px;height:99px}.Pet-Parrot-Red{background-image:url(spritesmith-main-9.png);background-position:-1066px -700px;width:81px;height:99px}.Pet-Parrot-Shade{background-image:url(spritesmith-main-9.png);background-position:-1066px -800px;width:81px;height:99px}.Pet-Parrot-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-1066px -900px;width:81px;height:99px}.Pet-Parrot-White{background-image:url(spritesmith-main-9.png);background-position:0 -1000px;width:81px;height:99px}.Pet-Parrot-Zombie{background-image:url(spritesmith-main-9.png);background-position:-82px -1000px;width:81px;height:99px}.Pet-Penguin-Base{background-image:url(spritesmith-main-9.png);background-position:-164px -1000px;width:81px;height:99px}.Pet-Penguin-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-246px -1000px;width:81px;height:99px}.Pet-Penguin-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:0 0;width:81px;height:99px}.Pet-Penguin-Desert{background-image:url(spritesmith-main-9.png);background-position:-410px -1000px;width:81px;height:99px}.Pet-Penguin-Golden{background-image:url(spritesmith-main-9.png);background-position:-492px -1000px;width:81px;height:99px}.Pet-Penguin-Red{background-image:url(spritesmith-main-9.png);background-position:-574px -1000px;width:81px;height:99px}.Pet-Penguin-Shade{background-image:url(spritesmith-main-9.png);background-position:-656px -1000px;width:81px;height:99px}.Pet-Penguin-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-738px -1000px;width:81px;height:99px}.Pet-Penguin-White{background-image:url(spritesmith-main-9.png);background-position:-820px -1000px;width:81px;height:99px}.Pet-Penguin-Zombie{background-image:url(spritesmith-main-9.png);background-position:-902px -1000px;width:81px;height:99px}.Pet-Phoenix-Base{background-image:url(spritesmith-main-9.png);background-position:-984px -1000px;width:81px;height:99px}.Pet-Rat-Base{background-image:url(spritesmith-main-9.png);background-position:-1066px -1000px;width:81px;height:99px}.Pet-Rat-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-1148px 0;width:81px;height:99px}.Pet-Rat-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-1148px -100px;width:81px;height:99px}.Pet-Rat-Desert{background-image:url(spritesmith-main-9.png);background-position:-1148px -200px;width:81px;height:99px}.Pet-Rat-Golden{background-image:url(spritesmith-main-9.png);background-position:-1148px -300px;width:81px;height:99px}.Pet-Rat-Red{background-image:url(spritesmith-main-9.png);background-position:-1148px -400px;width:81px;height:99px}.Pet-Rat-Shade{background-image:url(spritesmith-main-9.png);background-position:-1148px -500px;width:81px;height:99px}.Pet-Rat-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-1148px -600px;width:81px;height:99px}.Pet-Rat-White{background-image:url(spritesmith-main-9.png);background-position:-1148px -700px;width:81px;height:99px}.Pet-Rat-Zombie{background-image:url(spritesmith-main-9.png);background-position:-1148px -800px;width:81px;height:99px}.Pet-Rock-Base{background-image:url(spritesmith-main-9.png);background-position:-1148px -900px;width:81px;height:99px}.Pet-Rock-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-1148px -1000px;width:81px;height:99px}.Pet-Rock-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:0 -1100px;width:81px;height:99px}.Pet-Rock-Desert{background-image:url(spritesmith-main-9.png);background-position:-82px -1100px;width:81px;height:99px}.Pet-Rock-Golden{background-image:url(spritesmith-main-9.png);background-position:-164px -1100px;width:81px;height:99px}.Pet-Rock-Red{background-image:url(spritesmith-main-9.png);background-position:-246px -1100px;width:81px;height:99px}.Pet-Rock-Shade{background-image:url(spritesmith-main-9.png);background-position:-328px -1100px;width:81px;height:99px}.Pet-Rock-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-410px -1100px;width:81px;height:99px}.Pet-Rock-White{background-image:url(spritesmith-main-9.png);background-position:-492px -1100px;width:81px;height:99px}.Pet-Rock-Zombie{background-image:url(spritesmith-main-9.png);background-position:-574px -1100px;width:81px;height:99px}.Pet-Rooster-Base{background-image:url(spritesmith-main-9.png);background-position:-656px -1100px;width:81px;height:99px}.Pet-Rooster-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-738px -1100px;width:81px;height:99px}.Pet-Rooster-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-820px -1100px;width:81px;height:99px}.Pet-Rooster-Desert{background-image:url(spritesmith-main-9.png);background-position:-902px -1100px;width:81px;height:99px}.Pet-Rooster-Golden{background-image:url(spritesmith-main-9.png);background-position:-984px -1100px;width:81px;height:99px}.Pet-Rooster-Red{background-image:url(spritesmith-main-9.png);background-position:-1066px -1100px;width:81px;height:99px}.Pet-Rooster-Shade{background-image:url(spritesmith-main-9.png);background-position:-1148px -1100px;width:81px;height:99px}.Pet-Rooster-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-1230px 0;width:81px;height:99px}.Pet-Rooster-White{background-image:url(spritesmith-main-9.png);background-position:-1230px -100px;width:81px;height:99px}.Pet-Rooster-Zombie{background-image:url(spritesmith-main-9.png);background-position:-1230px -200px;width:81px;height:99px}.Pet-Seahorse-Base{background-image:url(spritesmith-main-9.png);background-position:-1230px -300px;width:81px;height:99px}.Pet-Seahorse-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-1230px -400px;width:81px;height:99px}.Pet-Seahorse-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-1230px -500px;width:81px;height:99px}.Pet-Seahorse-Desert{background-image:url(spritesmith-main-9.png);background-position:-1230px -600px;width:81px;height:99px}.Pet-Seahorse-Golden{background-image:url(spritesmith-main-9.png);background-position:-1230px -700px;width:81px;height:99px}.Pet-Seahorse-Red{background-image:url(spritesmith-main-9.png);background-position:-1230px -800px;width:81px;height:99px}.Pet-Seahorse-Shade{background-image:url(spritesmith-main-9.png);background-position:-1230px -900px;width:81px;height:99px}.Pet-Seahorse-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-1230px -1000px;width:81px;height:99px}.Pet-Seahorse-White{background-image:url(spritesmith-main-9.png);background-position:-1230px -1100px;width:81px;height:99px}.Pet-Seahorse-Zombie{background-image:url(spritesmith-main-9.png);background-position:0 -1200px;width:81px;height:99px}.Pet-Sheep-Base{background-image:url(spritesmith-main-9.png);background-position:-82px -1200px;width:81px;height:99px}.Pet-Sheep-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-164px -1200px;width:81px;height:99px}.Pet-Sheep-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-246px -1200px;width:81px;height:99px}.Pet-Sheep-Desert{background-image:url(spritesmith-main-9.png);background-position:-328px -1200px;width:81px;height:99px}.Pet-Sheep-Golden{background-image:url(spritesmith-main-9.png);background-position:-410px -1200px;width:81px;height:99px}.Pet-Sheep-Red{background-image:url(spritesmith-main-9.png);background-position:-492px -1200px;width:81px;height:99px}.Pet-Sheep-Shade{background-image:url(spritesmith-main-9.png);background-position:-574px -1200px;width:81px;height:99px}.Pet-Sheep-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-656px -1200px;width:81px;height:99px}.Pet-Sheep-White{background-image:url(spritesmith-main-9.png);background-position:-738px -1200px;width:81px;height:99px}.Pet-Sheep-Zombie{background-image:url(spritesmith-main-9.png);background-position:-820px -1200px;width:81px;height:99px}.Pet-Slime-Base{background-image:url(spritesmith-main-9.png);background-position:-902px -1200px;width:81px;height:99px}.Pet-Slime-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-984px -1200px;width:81px;height:99px}.Pet-Slime-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-1066px -1200px;width:81px;height:99px}.Pet-Slime-Desert{background-image:url(spritesmith-main-9.png);background-position:-1148px -1200px;width:81px;height:99px}.Pet-Slime-Golden{background-image:url(spritesmith-main-9.png);background-position:-1230px -1200px;width:81px;height:99px}.Pet-Slime-Red{background-image:url(spritesmith-main-9.png);background-position:-1312px 0;width:81px;height:99px}.Pet-Slime-Shade{background-image:url(spritesmith-main-9.png);background-position:-1312px -100px;width:81px;height:99px}.Pet-Slime-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-1312px -200px;width:81px;height:99px}.Pet-Slime-White{background-image:url(spritesmith-main-9.png);background-position:-1312px -300px;width:81px;height:99px}.Pet-Slime-Zombie{background-image:url(spritesmith-main-9.png);background-position:-1312px -400px;width:81px;height:99px}.Pet-Snake-Base{background-image:url(spritesmith-main-9.png);background-position:-1312px -500px;width:81px;height:99px}.Pet-Snake-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-1312px -600px;width:81px;height:99px}.Pet-Snake-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-1312px -700px;width:81px;height:99px}.Pet-Snake-Desert{background-image:url(spritesmith-main-9.png);background-position:-1312px -800px;width:81px;height:99px}.Pet-Snake-Golden{background-image:url(spritesmith-main-9.png);background-position:-1312px -900px;width:81px;height:99px}.Pet-Snake-Red{background-image:url(spritesmith-main-9.png);background-position:-1312px -1000px;width:81px;height:99px}.Pet-Snake-Shade{background-image:url(spritesmith-main-9.png);background-position:-1312px -1100px;width:81px;height:99px}.Pet-Snake-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-1312px -1200px;width:81px;height:99px}.Pet-Snake-White{background-image:url(spritesmith-main-9.png);background-position:-1394px 0;width:81px;height:99px}.Pet-Snake-Zombie{background-image:url(spritesmith-main-9.png);background-position:-1394px -100px;width:81px;height:99px}.Pet-Spider-Base{background-image:url(spritesmith-main-9.png);background-position:-1394px -200px;width:81px;height:99px}.Pet-Spider-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-1394px -300px;width:81px;height:99px}.Pet-Spider-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-1394px -400px;width:81px;height:99px}.Pet-Spider-Desert{background-image:url(spritesmith-main-9.png);background-position:-1394px -500px;width:81px;height:99px}.Pet-Spider-Golden{background-image:url(spritesmith-main-9.png);background-position:-1394px -600px;width:81px;height:99px}.Pet-Spider-Red{background-image:url(spritesmith-main-9.png);background-position:-1394px -700px;width:81px;height:99px}.Pet-Spider-Shade{background-image:url(spritesmith-main-9.png);background-position:-1394px -800px;width:81px;height:99px}.Pet-Spider-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-1394px -900px;width:81px;height:99px}.Pet-Spider-White{background-image:url(spritesmith-main-9.png);background-position:-1394px -1000px;width:81px;height:99px}.Pet-Spider-Zombie{background-image:url(spritesmith-main-9.png);background-position:-1394px -1100px;width:81px;height:99px}.Pet-TRex-Base{background-image:url(spritesmith-main-9.png);background-position:-1394px -1200px;width:81px;height:99px}.Pet-TRex-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:0 -1300px;width:81px;height:99px}.Pet-TRex-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-82px -1300px;width:81px;height:99px}.Pet-TRex-Desert{background-image:url(spritesmith-main-9.png);background-position:-164px -1300px;width:81px;height:99px}.Pet-TRex-Golden{background-image:url(spritesmith-main-9.png);background-position:-246px -1300px;width:81px;height:99px}.Pet-TRex-Red{background-image:url(spritesmith-main-9.png);background-position:-328px -1300px;width:81px;height:99px}.Pet-TRex-Shade{background-image:url(spritesmith-main-9.png);background-position:-410px -1300px;width:81px;height:99px}.Pet-TRex-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-492px -1300px;width:81px;height:99px}.Pet-TRex-White{background-image:url(spritesmith-main-9.png);background-position:-574px -1300px;width:81px;height:99px}.Pet-TRex-Zombie{background-image:url(spritesmith-main-9.png);background-position:-656px -1300px;width:81px;height:99px}.Pet-Tiger-Veteran{background-image:url(spritesmith-main-9.png);background-position:-738px -1300px;width:81px;height:99px}.Pet-TigerCub-Base{background-image:url(spritesmith-main-9.png);background-position:-820px -1300px;width:81px;height:99px}.Pet-TigerCub-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-902px -1300px;width:81px;height:99px}.Pet-TigerCub-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-984px -1300px;width:81px;height:99px}.Pet-TigerCub-Desert{background-image:url(spritesmith-main-9.png);background-position:-1066px -1300px;width:81px;height:99px}.Pet-TigerCub-Golden{background-image:url(spritesmith-main-9.png);background-position:-1148px -1300px;width:81px;height:99px}.Pet-TigerCub-Red{background-image:url(spritesmith-main-9.png);background-position:-1230px -1300px;width:81px;height:99px}.Pet-TigerCub-Shade{background-image:url(spritesmith-main-9.png);background-position:-1312px -1300px;width:81px;height:99px}.Pet-TigerCub-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-1394px -1300px;width:81px;height:99px}.Pet-TigerCub-Spooky{background-image:url(spritesmith-main-9.png);background-position:-1476px 0;width:81px;height:99px}.Pet-TigerCub-White{background-image:url(spritesmith-main-9.png);background-position:-1476px -100px;width:81px;height:99px}.Pet-TigerCub-Zombie{background-image:url(spritesmith-main-9.png);background-position:-1476px -200px;width:81px;height:99px}.Pet-Turkey-Base{background-image:url(spritesmith-main-9.png);background-position:-1476px -300px;width:81px;height:99px}.Pet-Whale-Base{background-image:url(spritesmith-main-9.png);background-position:-1476px -400px;width:81px;height:99px}.Pet-Whale-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-1476px -500px;width:81px;height:99px}.Pet-Whale-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-1476px -600px;width:81px;height:99px}.Pet-Whale-Desert{background-image:url(spritesmith-main-9.png);background-position:-1476px -700px;width:81px;height:99px}.Pet-Whale-Golden{background-image:url(spritesmith-main-9.png);background-position:-1476px -800px;width:81px;height:99px}.Pet-Whale-Red{background-image:url(spritesmith-main-9.png);background-position:-1476px -900px;width:81px;height:99px}.Pet-Whale-Shade{background-image:url(spritesmith-main-9.png);background-position:-1476px -1000px;width:81px;height:99px}.Pet-Whale-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-1476px -1100px;width:81px;height:99px}.Pet-Whale-White{background-image:url(spritesmith-main-9.png);background-position:-1476px -1200px;width:81px;height:99px}.Pet-Whale-Zombie{background-image:url(spritesmith-main-9.png);background-position:-1476px -1300px;width:81px;height:99px}.Pet-Wolf-Base{background-image:url(spritesmith-main-9.png);background-position:0 -1400px;width:81px;height:99px}.Pet-Wolf-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-82px -1400px;width:81px;height:99px}.Pet-Wolf-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-164px -1400px;width:81px;height:99px}.Pet-Wolf-Desert{background-image:url(spritesmith-main-9.png);background-position:-246px -1400px;width:81px;height:99px}.Pet-Wolf-Golden{background-image:url(spritesmith-main-9.png);background-position:-328px -1400px;width:81px;height:99px}.Pet-Wolf-Red{background-image:url(spritesmith-main-9.png);background-position:-410px -1400px;width:81px;height:99px}.Pet-Wolf-Shade{background-image:url(spritesmith-main-9.png);background-position:-492px -1400px;width:81px;height:99px}.Pet-Wolf-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-574px -1400px;width:81px;height:99px}.Pet-Wolf-Spooky{background-image:url(spritesmith-main-9.png);background-position:-656px -1400px;width:81px;height:99px}.Pet-Wolf-Veteran{background-image:url(spritesmith-main-9.png);background-position:-738px -1400px;width:81px;height:99px}.Pet-Wolf-White{background-image:url(spritesmith-main-9.png);background-position:-820px -1400px;width:81px;height:99px}.Pet-Wolf-Zombie{background-image:url(spritesmith-main-9.png);background-position:-902px -1400px;width:81px;height:99px}.Pet_HatchingPotion_Base{background-image:url(spritesmith-main-9.png);background-position:-1033px -1400px;width:48px;height:51px}.Pet_HatchingPotion_CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-1229px -1400px;width:48px;height:51px}.Pet_HatchingPotion_CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-1082px -1400px;width:48px;height:51px}.Pet_HatchingPotion_Desert{background-image:url(spritesmith-main-9.png);background-position:-1131px -1400px;width:48px;height:51px}.Pet_HatchingPotion_Golden{background-image:url(spritesmith-main-9.png);background-position:-1180px -1400px;width:48px;height:51px}.Pet_HatchingPotion_Red{background-image:url(spritesmith-main-9.png);background-position:-984px -1400px;width:48px;height:51px}.Pet_HatchingPotion_Shade{background-image:url(spritesmith-main-9.png);background-position:-1278px -1400px;width:48px;height:51px}.Pet_HatchingPotion_Skeleton{background-image:url(spritesmith-main-9.png);background-position:-1327px -1400px;width:48px;height:51px}.Pet_HatchingPotion_Spooky{background-image:url(spritesmith-main-9.png);background-position:-1376px -1400px;width:48px;height:51px}.Pet_HatchingPotion_White{background-image:url(spritesmith-main-9.png);background-position:-1425px -1400px;width:48px;height:51px}.Pet_HatchingPotion_Zombie{background-image:url(spritesmith-main-9.png);background-position:-1474px -1400px;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}.quest_burnout{background:url(/common/img/sprites/quest_burnout.gif) no-repeat;width:219px;height:249px}.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 +.2014_Fall_HealerPROMO2{background-image:url(spritesmith-largeSprites-0.png);background-position:-943px -616px;width:90px;height:90px}.2014_Fall_Mage_PROMO9{background-image:url(spritesmith-largeSprites-0.png);background-position:-943px -252px;width:120px;height:90px}.2014_Fall_RoguePROMO3{background-image:url(spritesmith-largeSprites-0.png);background-position:-943px -343px;width:105px;height:90px}.2014_Fall_Warrior_PROMO{background-image:url(spritesmith-largeSprites-0.png);background-position:-306px -402px;width:90px;height:90px}.promo_android{background-image:url(spritesmith-largeSprites-0.png);background-position:-943px 0;width:175px;height:175px}.promo_backtoschool{background-image:url(spritesmith-largeSprites-0.png);background-position:-1119px -251px;width:150px;height:150px}.promo_burnout{background-image:url(spritesmith-largeSprites-0.png);background-position:-452px 0;width:219px;height:240px}.promo_classes_fall_2014{background-image:url(spritesmith-largeSprites-0.png);background-position:-326px -724px;width:321px;height:100px}.promo_classes_fall_2015{background-image:url(spritesmith-largeSprites-0.png);background-position:-430px -621px;width:377px;height:99px}.promo_dilatoryDistress{background-image:url(spritesmith-largeSprites-0.png);background-position:-452px -417px;width:90px;height:90px}.promo_enchanted_armoire{background-image:url(spritesmith-largeSprites-0.png);background-position:-499px -525px;width:374px;height:76px}.promo_enchanted_armoire_201507{background-image:url(spritesmith-largeSprites-0.png);background-position:-1119px -550px;width:217px;height:90px}.promo_enchanted_armoire_201508{background-image:url(spritesmith-largeSprites-0.png);background-position:-1119px -824px;width:180px;height:90px}.promo_enchanted_armoire_201509{background-image:url(spritesmith-largeSprites-0.png);background-position:-543px -417px;width:90px;height:90px}.promo_enchanted_armoire_201511{background-image:url(spritesmith-largeSprites-0.png);background-position:-1225px -991px;width:122px;height:90px}.promo_habitica{background-image:url(spritesmith-largeSprites-0.png);background-position:-452px -241px;width:175px;height:175px}.promo_habitica_sticker{background-image:url(spritesmith-largeSprites-0.png);background-position:0 -220px;width:305px;height:304px}.promo_haunted_hair{background-image:url(spritesmith-largeSprites-0.png);background-position:-1260px -402px;width:100px;height:137px}.customize-option.promo_haunted_hair{background-image:url(spritesmith-largeSprites-0.png);background-position:-1285px -417px;width:60px;height:60px}.promo_item_notif{background-image:url(spritesmith-largeSprites-0.png);background-position:-1119px 0;width:249px;height:102px}.promo_mystery_201405{background-image:url(spritesmith-largeSprites-0.png);background-position:-380px -1008px;width:90px;height:90px}.promo_mystery_201406{background-image:url(spritesmith-largeSprites-0.png);background-position:-1270px -251px;width:90px;height:96px}.promo_mystery_201407{background-image:url(spritesmith-largeSprites-0.png);background-position:-1037px -525px;width:42px;height:62px}.promo_mystery_201408{background-image:url(spritesmith-largeSprites-0.png);background-position:-1300px -824px;width:60px;height:71px}.promo_mystery_201409{background-image:url(spritesmith-largeSprites-0.png);background-position:-306px -311px;width:90px;height:90px}.promo_mystery_201410{background-image:url(spritesmith-largeSprites-0.png);background-position:-1272px -915px;width:72px;height:63px}.promo_mystery_201411{background-image:url(spritesmith-largeSprites-0.png);background-position:-808px -621px;width:90px;height:90px}.promo_mystery_201412{background-image:url(spritesmith-largeSprites-0.png);background-position:-1037px -434px;width:42px;height:66px}.promo_mystery_201501{background-image:url(spritesmith-largeSprites-0.png);background-position:-1318px -732px;width:48px;height:63px}.promo_mystery_201502{background-image:url(spritesmith-largeSprites-0.png);background-position:-943px -707px;width:90px;height:90px}.promo_mystery_201503{background-image:url(spritesmith-largeSprites-0.png);background-position:-562px -1008px;width:90px;height:90px}.promo_mystery_201504{background-image:url(spritesmith-largeSprites-0.png);background-position:-1049px -343px;width:60px;height:69px}.promo_mystery_201505{background-image:url(spritesmith-largeSprites-0.png);background-position:-306px -220px;width:90px;height:90px}.promo_mystery_201506{background-image:url(spritesmith-largeSprites-0.png);background-position:-1064px -252px;width:42px;height:69px}.promo_mystery_201507{background-image:url(spritesmith-largeSprites-0.png);background-position:-1276px -103px;width:90px;height:105px}.promo_mystery_201508{background-image:url(spritesmith-largeSprites-0.png);background-position:-943px -525px;width:93px;height:90px}.promo_mystery_201509{background-image:url(spritesmith-largeSprites-0.png);background-position:-289px -1008px;width:90px;height:90px}.promo_mystery_201510{background-image:url(spritesmith-largeSprites-0.png);background-position:-943px -434px;width:93px;height:90px}.promo_mystery_201511{background-image:url(spritesmith-largeSprites-0.png);background-position:-471px -1008px;width:90px;height:90px}.promo_mystery_3014{background-image:url(spritesmith-largeSprites-0.png);background-position:-1119px -641px;width:217px;height:90px}.promo_orca{background-image:url(spritesmith-largeSprites-0.png);background-position:-1119px -991px;width:105px;height:105px}.promo_partyhats{background-image:url(spritesmith-largeSprites-0.png);background-position:-662px -835px;width:115px;height:47px}.promo_pastel_skin{background-image:url(spritesmith-largeSprites-0.png);background-position:0 -835px;width:330px;height:83px}.customize-option.promo_pastel_skin{background-image:url(spritesmith-largeSprites-0.png);background-position:-25px -850px;width:60px;height:60px}.promo_pet_skins{background-image:url(spritesmith-largeSprites-0.png);background-position:-1119px -402px;width:140px;height:147px}.customize-option.promo_pet_skins{background-image:url(spritesmith-largeSprites-0.png);background-position:-1144px -417px;width:60px;height:60px}.promo_shimmer_hair{background-image:url(spritesmith-largeSprites-0.png);background-position:-331px -835px;width:330px;height:83px}.customize-option.promo_shimmer_hair{background-image:url(spritesmith-largeSprites-0.png);background-position:-356px -850px;width:60px;height:60px}.promo_splashyskins{background-image:url(spritesmith-largeSprites-0.png);background-position:-1119px -732px;width:198px;height:91px}.customize-option.promo_splashyskins{background-image:url(spritesmith-largeSprites-0.png);background-position:-1144px -747px;width:60px;height:60px}.promo_springclasses2014{background-image:url(spritesmith-largeSprites-0.png);background-position:-648px -724px;width:288px;height:90px}.promo_springclasses2015{background-image:url(spritesmith-largeSprites-0.png);background-position:0 -1008px;width:288px;height:90px}.promo_summer_classes_2014{background-image:url(spritesmith-largeSprites-0.png);background-position:0 -621px;width:429px;height:102px}.promo_summer_classes_2015{background-image:url(spritesmith-largeSprites-0.png);background-position:0 -919px;width:300px;height:88px}.promo_updos{background-image:url(spritesmith-largeSprites-0.png);background-position:-1119px -103px;width:156px;height:147px}.promo_veteran_pets{background-image:url(spritesmith-largeSprites-0.png);background-position:-943px -176px;width:146px;height:75px}.promo_winterclasses2015{background-image:url(spritesmith-largeSprites-0.png);background-position:0 -724px;width:325px;height:110px}.promo_winteryhair{background-image:url(spritesmith-largeSprites-0.png);background-position:-1119px -915px;width:152px;height:75px}.customize-option.promo_winteryhair{background-image:url(spritesmith-largeSprites-0.png);background-position:-1144px -930px;width:60px;height:60px}.avatar_variety{background-image:url(spritesmith-largeSprites-0.png);background-position:0 -525px;width:498px;height:95px}.party_preview{background-image:url(spritesmith-largeSprites-0.png);background-position:0 0;width:451px;height:219px}.welcome_basic_avatars{background-image:url(spritesmith-largeSprites-0.png);background-position:-672px -347px;width:246px;height:165px}.welcome_promo_party{background-image:url(spritesmith-largeSprites-0.png);background-position:-672px 0;width:270px;height:180px}.welcome_sample_tasks{background-image:url(spritesmith-largeSprites-0.png);background-position:-672px -181px;width:246px;height:165px}.achievement-alien{background-image:url(spritesmith-main-0.png);background-position:-1208px -1180px;width:24px;height:26px}.achievement-alien2x{background-image:url(spritesmith-main-0.png);background-position:-1223px -239px;width:48px;height:52px}.achievement-alpha{background-image:url(spritesmith-main-0.png);background-position:-1183px -1180px;width:24px;height:26px}.achievement-armor{background-image:url(spritesmith-main-0.png);background-position:-1232px -1127px;width:24px;height:26px}.achievement-armor2x{background-image:url(spritesmith-main-0.png);background-position:-1223px -330px;width:48px;height:52px}.achievement-boot{background-image:url(spritesmith-main-0.png);background-position:-1208px -1089px;width:24px;height:26px}.achievement-boot2x{background-image:url(spritesmith-main-0.png);background-position:-1223px -512px;width:48px;height:52px}.achievement-bow{background-image:url(spritesmith-main-0.png);background-position:-1232px -1036px;width:24px;height:26px}.achievement-bow2x{background-image:url(spritesmith-main-0.png);background-position:-1223px -694px;width:48px;height:52px}.achievement-burnout{background-image:url(spritesmith-main-0.png);background-position:-1248px -929px;width:24px;height:26px}.achievement-burnout2x{background-image:url(spritesmith-main-0.png);background-position:-1223px -876px;width:48px;height:52px}.achievement-cactus{background-image:url(spritesmith-main-0.png);background-position:-1248px -838px;width:24px;height:26px}.achievement-cactus2x{background-image:url(spritesmith-main-0.png);background-position:-1181px -967px;width:48px;height:52px}.achievement-cake{background-image:url(spritesmith-main-0.png);background-position:-1248px -747px;width:24px;height:26px}.achievement-cake2x{background-image:url(spritesmith-main-0.png);background-position:-1183px -1127px;width:48px;height:52px}.achievement-cave{background-image:url(spritesmith-main-0.png);background-position:-1248px -656px;width:24px;height:26px}.achievement-cave2x{background-image:url(spritesmith-main-0.png);background-position:-1365px -1309px;width:48px;height:52px}.achievement-coffin{background-image:url(spritesmith-main-0.png);background-position:-1248px -565px;width:24px;height:26px}.achievement-comment{background-image:url(spritesmith-main-0.png);background-position:-1223px -565px;width:24px;height:26px}.achievement-comment2x{background-image:url(spritesmith-main-0.png);background-position:-1547px -1491px;width:48px;height:52px}.achievement-costumeContest{background-image:url(spritesmith-main-0.png);background-position:-1223px -474px;width:24px;height:26px}.achievement-costumeContest2x{background-image:url(spritesmith-main-0.png);background-position:-322px -1582px;width:48px;height:52px}.achievement-dilatory{background-image:url(spritesmith-main-0.png);background-position:-1223px -383px;width:24px;height:26px}.achievement-firefox{background-image:url(spritesmith-main-0.png);background-position:-1248px -292px;width:24px;height:26px}.achievement-greeting{background-image:url(spritesmith-main-0.png);background-position:-1223px -292px;width:24px;height:26px}.achievement-greeting2x{background-image:url(spritesmith-main-0.png);background-position:-420px -1582px;width:48px;height:52px}.achievement-habitBirthday{background-image:url(spritesmith-main-0.png);background-position:-1223px -201px;width:24px;height:26px}.achievement-habitBirthday2x{background-image:url(spritesmith-main-0.png);background-position:-518px -1582px;width:48px;height:52px}.achievement-habiticaDay{background-image:url(spritesmith-main-0.png);background-position:-1298px -1183px;width:24px;height:26px}.achievement-habiticaDay2x{background-image:url(spritesmith-main-0.png);background-position:-616px -1582px;width:48px;height:52px}.achievement-heart{background-image:url(spritesmith-main-0.png);background-position:-1414px -1274px;width:24px;height:26px}.achievement-heart2x{background-image:url(spritesmith-main-0.png);background-position:-665px -1582px;width:48px;height:52px}.achievement-karaoke-2x{background-image:url(spritesmith-main-0.png);background-position:-763px -1582px;width:48px;height:52px}.achievement-karaoke{background-image:url(spritesmith-main-0.png);background-position:-1505px -1365px;width:24px;height:26px}.achievement-ninja{background-image:url(spritesmith-main-0.png);background-position:-1480px -1365px;width:24px;height:26px}.achievement-ninja2x{background-image:url(spritesmith-main-0.png);background-position:-861px -1582px;width:48px;height:52px}.achievement-nye{background-image:url(spritesmith-main-0.png);background-position:-1596px -1456px;width:24px;height:26px}.achievement-nye2x{background-image:url(spritesmith-main-0.png);background-position:-959px -1582px;width:48px;height:52px}.achievement-perfect{background-image:url(spritesmith-main-0.png);background-position:-1546px -1456px;width:24px;height:26px}.achievement-perfect2x{background-image:url(spritesmith-main-0.png);background-position:-1223px -148px;width:48px;height:52px}.achievement-rat{background-image:url(spritesmith-main-0.png);background-position:-1248px -383px;width:24px;height:26px}.achievement-rat2x{background-image:url(spritesmith-main-0.png);background-position:-1155px -1582px;width:48px;height:52px}.achievement-seafoam{background-image:url(spritesmith-main-0.png);background-position:-1662px -1547px;width:24px;height:26px}.achievement-seafoam2x{background-image:url(spritesmith-main-0.png);background-position:-1106px -1582px;width:48px;height:52px}.achievement-shield{background-image:url(spritesmith-main-0.png);background-position:-1687px -1547px;width:24px;height:26px}.achievement-shield2x{background-image:url(spritesmith-main-0.png);background-position:-1008px -1582px;width:48px;height:52px}.achievement-shinySeed{background-image:url(spritesmith-main-0.png);background-position:-1571px -1456px;width:24px;height:26px}.achievement-shinySeed2x{background-image:url(spritesmith-main-0.png);background-position:-910px -1582px;width:48px;height:52px}.achievement-snowball{background-image:url(spritesmith-main-0.png);background-position:-1455px -1365px;width:24px;height:26px}.achievement-snowball2x{background-image:url(spritesmith-main-0.png);background-position:-812px -1582px;width:48px;height:52px}.achievement-spookDust{background-image:url(spritesmith-main-0.png);background-position:-1364px -1274px;width:24px;height:26px}.achievement-spookDust2x{background-image:url(spritesmith-main-0.png);background-position:-714px -1582px;width:48px;height:52px}.achievement-stoikalm{background-image:url(spritesmith-main-0.png);background-position:-1389px -1274px;width:24px;height:26px}.achievement-sun{background-image:url(spritesmith-main-0.png);background-position:-1273px -1183px;width:24px;height:26px}.achievement-sun2x{background-image:url(spritesmith-main-0.png);background-position:-567px -1582px;width:48px;height:52px}.achievement-sword{background-image:url(spritesmith-main-0.png);background-position:-1323px -1183px;width:24px;height:26px}.achievement-sword2x{background-image:url(spritesmith-main-0.png);background-position:-469px -1582px;width:48px;height:52px}.achievement-thankyou{background-image:url(spritesmith-main-0.png);background-position:-1248px -201px;width:24px;height:26px}.achievement-thankyou2x{background-image:url(spritesmith-main-0.png);background-position:-371px -1582px;width:48px;height:52px}.achievement-thermometer{background-image:url(spritesmith-main-0.png);background-position:-1637px -1547px;width:24px;height:26px}.achievement-thermometer2x{background-image:url(spritesmith-main-0.png);background-position:-273px -1582px;width:48px;height:52px}.achievement-tree{background-image:url(spritesmith-main-0.png);background-position:-1248px -474px;width:24px;height:26px}.achievement-tree2x{background-image:url(spritesmith-main-0.png);background-position:-1456px -1400px;width:48px;height:52px}.achievement-triadbingo{background-image:url(spritesmith-main-0.png);background-position:-1223px -656px;width:24px;height:26px}.achievement-triadbingo2x{background-image:url(spritesmith-main-0.png);background-position:-1274px -1218px;width:48px;height:52px}.achievement-ultimate-healer{background-image:url(spritesmith-main-0.png);background-position:-1223px -747px;width:24px;height:26px}.achievement-ultimate-healer2x{background-image:url(spritesmith-main-0.png);background-position:-1183px -1036px;width:48px;height:52px}.achievement-ultimate-mage{background-image:url(spritesmith-main-0.png);background-position:-1223px -838px;width:24px;height:26px}.achievement-ultimate-mage2x{background-image:url(spritesmith-main-0.png);background-position:-1132px -967px;width:48px;height:52px}.achievement-ultimate-rogue{background-image:url(spritesmith-main-0.png);background-position:-1223px -929px;width:24px;height:26px}.achievement-ultimate-rogue2x{background-image:url(spritesmith-main-0.png);background-position:-1223px -785px;width:48px;height:52px}.achievement-ultimate-warrior{background-image:url(spritesmith-main-0.png);background-position:-1230px -967px;width:24px;height:26px}.achievement-ultimate-warrior2x{background-image:url(spritesmith-main-0.png);background-position:-1223px -603px;width:48px;height:52px}.achievement-valentine{background-image:url(spritesmith-main-0.png);background-position:-1183px -1089px;width:24px;height:26px}.achievement-valentine2x{background-image:url(spritesmith-main-0.png);background-position:-1223px -421px;width:48px;height:52px}.achievement-wolf{background-image:url(spritesmith-main-0.png);background-position:-1233px -1089px;width:24px;height:26px}.achievement-wolf2x{background-image:url(spritesmith-main-0.png);background-position:-1057px -1582px;width:48px;height:52px}.background_alpine_slopes{background-image:url(spritesmith-main-0.png);background-position:-705px -592px;width:140px;height:147px}.background_autumn_forest{background-image:url(spritesmith-main-0.png);background-position:-423px -444px;width:140px;height:147px}.background_beach{background-image:url(spritesmith-main-0.png);background-position:-426px 0;width:141px;height:147px}.background_blacksmithy{background-image:url(spritesmith-main-0.png);background-position:-709px -444px;width:140px;height:147px}.background_cherry_trees{background-image:url(spritesmith-main-0.png);background-position:-141px -592px;width:140px;height:147px}.background_clouds{background-image:url(spritesmith-main-0.png);background-position:-564px -592px;width:140px;height:147px}.background_coral_reef{background-image:url(spritesmith-main-0.png);background-position:-850px -296px;width:140px;height:147px}.background_crystal_cave{background-image:url(spritesmith-main-0.png);background-position:0 -740px;width:140px;height:147px}.background_dilatory_ruins{background-image:url(spritesmith-main-0.png);background-position:-141px -740px;width:140px;height:147px}.background_distant_castle{background-image:url(spritesmith-main-0.png);background-position:-705px -888px;width:140px;height:147px}.background_drifting_raft{background-image:url(spritesmith-main-0.png);background-position:-846px -888px;width:140px;height:147px}.background_dusty_canyons{background-image:url(spritesmith-main-0.png);background-position:-987px -888px;width:140px;height:147px}.background_fairy_ring{background-image:url(spritesmith-main-0.png);background-position:-568px -148px;width:140px;height:147px}.background_floating_islands{background-image:url(spritesmith-main-0.png);background-position:-568px -296px;width:140px;height:147px}.background_floral_meadow{background-image:url(spritesmith-main-0.png);background-position:0 -444px;width:140px;height:147px}.background_forest{background-image:url(spritesmith-main-0.png);background-position:-141px -444px;width:140px;height:147px}.background_frigid_peak{background-image:url(spritesmith-main-0.png);background-position:-282px -444px;width:140px;height:147px}.background_giant_wave{background-image:url(spritesmith-main-0.png);background-position:-284px 0;width:141px;height:147px}.background_graveyard{background-image:url(spritesmith-main-0.png);background-position:-564px -444px;width:140px;height:147px}.background_gumdrop_land{background-image:url(spritesmith-main-0.png);background-position:-709px 0;width:140px;height:147px}.background_harvest_feast{background-image:url(spritesmith-main-0.png);background-position:-709px -148px;width:140px;height:147px}.background_harvest_fields{background-image:url(spritesmith-main-0.png);background-position:0 -148px;width:141px;height:147px}.background_harvest_moon{background-image:url(spritesmith-main-0.png);background-position:-142px -148px;width:141px;height:147px}.background_haunted_house{background-image:url(spritesmith-main-0.png);background-position:0 -592px;width:140px;height:147px}.background_ice_cave{background-image:url(spritesmith-main-0.png);background-position:-284px -148px;width:141px;height:147px}.background_iceberg{background-image:url(spritesmith-main-0.png);background-position:-282px -592px;width:140px;height:147px}.background_island_waterfalls{background-image:url(spritesmith-main-0.png);background-position:-423px -592px;width:140px;height:147px}.background_marble_temple{background-image:url(spritesmith-main-0.png);background-position:0 0;width:141px;height:147px}.background_market{background-image:url(spritesmith-main-0.png);background-position:-568px 0;width:140px;height:147px}.background_mountain_lake{background-image:url(spritesmith-main-0.png);background-position:-850px 0;width:140px;height:147px}.background_night_dunes{background-image:url(spritesmith-main-0.png);background-position:-850px -148px;width:140px;height:147px}.background_open_waters{background-image:url(spritesmith-main-0.png);background-position:-426px -148px;width:141px;height:147px}.background_pagodas{background-image:url(spritesmith-main-0.png);background-position:-850px -444px;width:140px;height:147px}.background_pumpkin_patch{background-image:url(spritesmith-main-0.png);background-position:-850px -592px;width:140px;height:147px}.background_pyramids{background-image:url(spritesmith-main-0.png);background-position:0 -296px;width:141px;height:147px}.background_rolling_hills{background-image:url(spritesmith-main-0.png);background-position:-142px -296px;width:141px;height:147px}.background_seafarer_ship{background-image:url(spritesmith-main-0.png);background-position:-282px -740px;width:140px;height:147px}.background_shimmery_bubbles{background-image:url(spritesmith-main-0.png);background-position:-423px -740px;width:140px;height:147px}.background_slimy_swamp{background-image:url(spritesmith-main-0.png);background-position:-564px -740px;width:140px;height:147px}.background_snowy_pines{background-image:url(spritesmith-main-0.png);background-position:-705px -740px;width:140px;height:147px}.background_snowy_sunrise{background-image:url(spritesmith-main-0.png);background-position:-846px -740px;width:140px;height:147px}.background_south_pole{background-image:url(spritesmith-main-0.png);background-position:-991px 0;width:140px;height:147px}.background_spring_rain{background-image:url(spritesmith-main-0.png);background-position:-991px -148px;width:140px;height:147px}.background_stable{background-image:url(spritesmith-main-0.png);background-position:-991px -296px;width:140px;height:147px}.background_stained_glass{background-image:url(spritesmith-main-0.png);background-position:-991px -444px;width:140px;height:147px}.background_starry_skies{background-image:url(spritesmith-main-0.png);background-position:-991px -592px;width:140px;height:147px}.background_sunken_ship{background-image:url(spritesmith-main-0.png);background-position:-991px -740px;width:140px;height:147px}.background_sunset_meadow{background-image:url(spritesmith-main-0.png);background-position:0 -888px;width:140px;height:147px}.background_sunset_oasis{background-image:url(spritesmith-main-0.png);background-position:-141px -888px;width:140px;height:147px}.background_sunset_savannah{background-image:url(spritesmith-main-0.png);background-position:-282px -888px;width:140px;height:147px}.background_swarming_darkness{background-image:url(spritesmith-main-0.png);background-position:-423px -888px;width:140px;height:147px}.background_tavern{background-image:url(spritesmith-main-0.png);background-position:-564px -888px;width:140px;height:147px}.background_thunderstorm{background-image:url(spritesmith-main-0.png);background-position:-284px -296px;width:141px;height:147px}.background_twinkly_lights{background-image:url(spritesmith-main-0.png);background-position:-426px -296px;width:141px;height:147px}.background_twinkly_party_lights{background-image:url(spritesmith-main-0.png);background-position:-142px 0;width:141px;height:147px}.background_volcano{background-image:url(spritesmith-main-0.png);background-position:-1132px 0;width:140px;height:147px}.background_winter_town{background-image:url(spritesmith-main-0.png);background-position:-709px -296px;width:140px;height:147px}.hair_beard_1_TRUred{background-image:url(spritesmith-main-0.png);background-position:-91px -1309px;width:90px;height:90px}.customize-option.hair_beard_1_TRUred{background-image:url(spritesmith-main-0.png);background-position:-116px -1324px;width:60px;height:60px}.hair_beard_1_aurora{background-image:url(spritesmith-main-0.png);background-position:-182px -1309px;width:90px;height:90px}.customize-option.hair_beard_1_aurora{background-image:url(spritesmith-main-0.png);background-position:-207px -1324px;width:60px;height:60px}.hair_beard_1_black{background-image:url(spritesmith-main-0.png);background-position:-273px -1309px;width:90px;height:90px}.customize-option.hair_beard_1_black{background-image:url(spritesmith-main-0.png);background-position:-298px -1324px;width:60px;height:60px}.hair_beard_1_blond{background-image:url(spritesmith-main-0.png);background-position:-364px -1309px;width:90px;height:90px}.customize-option.hair_beard_1_blond{background-image:url(spritesmith-main-0.png);background-position:-389px -1324px;width:60px;height:60px}.hair_beard_1_blue{background-image:url(spritesmith-main-0.png);background-position:-455px -1309px;width:90px;height:90px}.customize-option.hair_beard_1_blue{background-image:url(spritesmith-main-0.png);background-position:-480px -1324px;width:60px;height:60px}.hair_beard_1_brown{background-image:url(spritesmith-main-0.png);background-position:-546px -1309px;width:90px;height:90px}.customize-option.hair_beard_1_brown{background-image:url(spritesmith-main-0.png);background-position:-571px -1324px;width:60px;height:60px}.hair_beard_1_candycane{background-image:url(spritesmith-main-0.png);background-position:-637px -1309px;width:90px;height:90px}.customize-option.hair_beard_1_candycane{background-image:url(spritesmith-main-0.png);background-position:-662px -1324px;width:60px;height:60px}.hair_beard_1_candycorn{background-image:url(spritesmith-main-0.png);background-position:-728px -1309px;width:90px;height:90px}.customize-option.hair_beard_1_candycorn{background-image:url(spritesmith-main-0.png);background-position:-753px -1324px;width:60px;height:60px}.hair_beard_1_festive{background-image:url(spritesmith-main-0.png);background-position:-819px -1309px;width:90px;height:90px}.customize-option.hair_beard_1_festive{background-image:url(spritesmith-main-0.png);background-position:-844px -1324px;width:60px;height:60px}.hair_beard_1_frost{background-image:url(spritesmith-main-0.png);background-position:-910px -1309px;width:90px;height:90px}.customize-option.hair_beard_1_frost{background-image:url(spritesmith-main-0.png);background-position:-935px -1324px;width:60px;height:60px}.hair_beard_1_ghostwhite{background-image:url(spritesmith-main-0.png);background-position:-1001px -1309px;width:90px;height:90px}.customize-option.hair_beard_1_ghostwhite{background-image:url(spritesmith-main-0.png);background-position:-1026px -1324px;width:60px;height:60px}.hair_beard_1_green{background-image:url(spritesmith-main-0.png);background-position:-1092px -1309px;width:90px;height:90px}.customize-option.hair_beard_1_green{background-image:url(spritesmith-main-0.png);background-position:-1117px -1324px;width:60px;height:60px}.hair_beard_1_halloween{background-image:url(spritesmith-main-0.png);background-position:-1183px -1309px;width:90px;height:90px}.customize-option.hair_beard_1_halloween{background-image:url(spritesmith-main-0.png);background-position:-1208px -1324px;width:60px;height:60px}.hair_beard_1_holly{background-image:url(spritesmith-main-0.png);background-position:-1274px -1309px;width:90px;height:90px}.customize-option.hair_beard_1_holly{background-image:url(spritesmith-main-0.png);background-position:-1299px -1324px;width:60px;height:60px}.hair_beard_1_hollygreen{background-image:url(spritesmith-main-0.png);background-position:-1455px 0;width:90px;height:90px}.customize-option.hair_beard_1_hollygreen{background-image:url(spritesmith-main-0.png);background-position:-1480px -15px;width:60px;height:60px}.hair_beard_1_midnight{background-image:url(spritesmith-main-0.png);background-position:-1455px -91px;width:90px;height:90px}.customize-option.hair_beard_1_midnight{background-image:url(spritesmith-main-0.png);background-position:-1480px -106px;width:60px;height:60px}.hair_beard_1_pblue{background-image:url(spritesmith-main-0.png);background-position:-1455px -182px;width:90px;height:90px}.customize-option.hair_beard_1_pblue{background-image:url(spritesmith-main-0.png);background-position:-1480px -197px;width:60px;height:60px}.hair_beard_1_peppermint{background-image:url(spritesmith-main-0.png);background-position:-1455px -273px;width:90px;height:90px}.customize-option.hair_beard_1_peppermint{background-image:url(spritesmith-main-0.png);background-position:-1480px -288px;width:60px;height:60px}.hair_beard_1_pgreen{background-image:url(spritesmith-main-0.png);background-position:-1455px -364px;width:90px;height:90px}.customize-option.hair_beard_1_pgreen{background-image:url(spritesmith-main-0.png);background-position:-1480px -379px;width:60px;height:60px}.hair_beard_1_porange{background-image:url(spritesmith-main-0.png);background-position:-1455px -455px;width:90px;height:90px}.customize-option.hair_beard_1_porange{background-image:url(spritesmith-main-0.png);background-position:-1480px -470px;width:60px;height:60px}.hair_beard_1_ppink{background-image:url(spritesmith-main-0.png);background-position:-1132px -148px;width:90px;height:90px}.customize-option.hair_beard_1_ppink{background-image:url(spritesmith-main-0.png);background-position:-1157px -163px;width:60px;height:60px}.hair_beard_1_ppurple{background-image:url(spritesmith-main-0.png);background-position:-1455px -637px;width:90px;height:90px}.customize-option.hair_beard_1_ppurple{background-image:url(spritesmith-main-0.png);background-position:-1480px -652px;width:60px;height:60px}.hair_beard_1_pumpkin{background-image:url(spritesmith-main-0.png);background-position:-1455px -728px;width:90px;height:90px}.customize-option.hair_beard_1_pumpkin{background-image:url(spritesmith-main-0.png);background-position:-1480px -743px;width:60px;height:60px}.hair_beard_1_purple{background-image:url(spritesmith-main-0.png);background-position:-1455px -819px;width:90px;height:90px}.customize-option.hair_beard_1_purple{background-image:url(spritesmith-main-0.png);background-position:-1480px -834px;width:60px;height:60px}.hair_beard_1_pyellow{background-image:url(spritesmith-main-0.png);background-position:-1455px -910px;width:90px;height:90px}.customize-option.hair_beard_1_pyellow{background-image:url(spritesmith-main-0.png);background-position:-1480px -925px;width:60px;height:60px}.hair_beard_1_rainbow{background-image:url(spritesmith-main-0.png);background-position:-1455px -1001px;width:90px;height:90px}.customize-option.hair_beard_1_rainbow{background-image:url(spritesmith-main-0.png);background-position:-1480px -1016px;width:60px;height:60px}.hair_beard_1_red{background-image:url(spritesmith-main-0.png);background-position:-1455px -1092px;width:90px;height:90px}.customize-option.hair_beard_1_red{background-image:url(spritesmith-main-0.png);background-position:-1480px -1107px;width:60px;height:60px}.hair_beard_1_snowy{background-image:url(spritesmith-main-0.png);background-position:-1455px -1183px;width:90px;height:90px}.customize-option.hair_beard_1_snowy{background-image:url(spritesmith-main-0.png);background-position:-1480px -1198px;width:60px;height:60px}.hair_beard_1_white{background-image:url(spritesmith-main-0.png);background-position:-1455px -1274px;width:90px;height:90px}.customize-option.hair_beard_1_white{background-image:url(spritesmith-main-0.png);background-position:-1480px -1289px;width:60px;height:60px}.hair_beard_1_winternight{background-image:url(spritesmith-main-0.png);background-position:0 -1400px;width:90px;height:90px}.customize-option.hair_beard_1_winternight{background-image:url(spritesmith-main-0.png);background-position:-25px -1415px;width:60px;height:60px}.hair_beard_1_winterstar{background-image:url(spritesmith-main-0.png);background-position:-91px -1400px;width:90px;height:90px}.customize-option.hair_beard_1_winterstar{background-image:url(spritesmith-main-0.png);background-position:-116px -1415px;width:60px;height:60px}.hair_beard_1_yellow{background-image:url(spritesmith-main-0.png);background-position:-182px -1400px;width:90px;height:90px}.customize-option.hair_beard_1_yellow{background-image:url(spritesmith-main-0.png);background-position:-207px -1415px;width:60px;height:60px}.hair_beard_1_zombie{background-image:url(spritesmith-main-0.png);background-position:-273px -1400px;width:90px;height:90px}.customize-option.hair_beard_1_zombie{background-image:url(spritesmith-main-0.png);background-position:-298px -1415px;width:60px;height:60px}.hair_beard_2_TRUred{background-image:url(spritesmith-main-0.png);background-position:-364px -1400px;width:90px;height:90px}.customize-option.hair_beard_2_TRUred{background-image:url(spritesmith-main-0.png);background-position:-389px -1415px;width:60px;height:60px}.hair_beard_2_aurora{background-image:url(spritesmith-main-0.png);background-position:-455px -1400px;width:90px;height:90px}.customize-option.hair_beard_2_aurora{background-image:url(spritesmith-main-0.png);background-position:-480px -1415px;width:60px;height:60px}.hair_beard_2_black{background-image:url(spritesmith-main-0.png);background-position:-546px -1400px;width:90px;height:90px}.customize-option.hair_beard_2_black{background-image:url(spritesmith-main-0.png);background-position:-571px -1415px;width:60px;height:60px}.hair_beard_2_blond{background-image:url(spritesmith-main-0.png);background-position:-637px -1400px;width:90px;height:90px}.customize-option.hair_beard_2_blond{background-image:url(spritesmith-main-0.png);background-position:-662px -1415px;width:60px;height:60px}.hair_beard_2_blue{background-image:url(spritesmith-main-0.png);background-position:-728px -1400px;width:90px;height:90px}.customize-option.hair_beard_2_blue{background-image:url(spritesmith-main-0.png);background-position:-753px -1415px;width:60px;height:60px}.hair_beard_2_brown{background-image:url(spritesmith-main-0.png);background-position:-819px -1400px;width:90px;height:90px}.customize-option.hair_beard_2_brown{background-image:url(spritesmith-main-0.png);background-position:-844px -1415px;width:60px;height:60px}.hair_beard_2_candycane{background-image:url(spritesmith-main-0.png);background-position:-910px -1400px;width:90px;height:90px}.customize-option.hair_beard_2_candycane{background-image:url(spritesmith-main-0.png);background-position:-935px -1415px;width:60px;height:60px}.hair_beard_2_candycorn{background-image:url(spritesmith-main-0.png);background-position:-1001px -1400px;width:90px;height:90px}.customize-option.hair_beard_2_candycorn{background-image:url(spritesmith-main-0.png);background-position:-1026px -1415px;width:60px;height:60px}.hair_beard_2_festive{background-image:url(spritesmith-main-0.png);background-position:-1092px -1400px;width:90px;height:90px}.customize-option.hair_beard_2_festive{background-image:url(spritesmith-main-0.png);background-position:-1117px -1415px;width:60px;height:60px}.hair_beard_2_frost{background-image:url(spritesmith-main-0.png);background-position:-1183px -1400px;width:90px;height:90px}.customize-option.hair_beard_2_frost{background-image:url(spritesmith-main-0.png);background-position:-1208px -1415px;width:60px;height:60px}.hair_beard_2_ghostwhite{background-image:url(spritesmith-main-0.png);background-position:-1274px -1400px;width:90px;height:90px}.customize-option.hair_beard_2_ghostwhite{background-image:url(spritesmith-main-0.png);background-position:-1299px -1415px;width:60px;height:60px}.hair_beard_2_green{background-image:url(spritesmith-main-0.png);background-position:-1365px -1400px;width:90px;height:90px}.customize-option.hair_beard_2_green{background-image:url(spritesmith-main-0.png);background-position:-1390px -1415px;width:60px;height:60px}.hair_beard_2_halloween{background-image:url(spritesmith-main-0.png);background-position:-1546px 0;width:90px;height:90px}.customize-option.hair_beard_2_halloween{background-image:url(spritesmith-main-0.png);background-position:-1571px -15px;width:60px;height:60px}.hair_beard_2_holly{background-image:url(spritesmith-main-0.png);background-position:-1546px -91px;width:90px;height:90px}.customize-option.hair_beard_2_holly{background-image:url(spritesmith-main-0.png);background-position:-1571px -106px;width:60px;height:60px}.hair_beard_2_hollygreen{background-image:url(spritesmith-main-0.png);background-position:-1546px -182px;width:90px;height:90px}.customize-option.hair_beard_2_hollygreen{background-image:url(spritesmith-main-0.png);background-position:-1571px -197px;width:60px;height:60px}.hair_beard_2_midnight{background-image:url(spritesmith-main-0.png);background-position:-1546px -273px;width:90px;height:90px}.customize-option.hair_beard_2_midnight{background-image:url(spritesmith-main-0.png);background-position:-1571px -288px;width:60px;height:60px}.hair_beard_2_pblue{background-image:url(spritesmith-main-0.png);background-position:-1546px -364px;width:90px;height:90px}.customize-option.hair_beard_2_pblue{background-image:url(spritesmith-main-0.png);background-position:-1571px -379px;width:60px;height:60px}.hair_beard_2_peppermint{background-image:url(spritesmith-main-0.png);background-position:-1546px -455px;width:90px;height:90px}.customize-option.hair_beard_2_peppermint{background-image:url(spritesmith-main-0.png);background-position:-1571px -470px;width:60px;height:60px}.hair_beard_2_pgreen{background-image:url(spritesmith-main-0.png);background-position:-1546px -546px;width:90px;height:90px}.customize-option.hair_beard_2_pgreen{background-image:url(spritesmith-main-0.png);background-position:-1571px -561px;width:60px;height:60px}.hair_beard_2_porange{background-image:url(spritesmith-main-0.png);background-position:-1546px -637px;width:90px;height:90px}.customize-option.hair_beard_2_porange{background-image:url(spritesmith-main-0.png);background-position:-1571px -652px;width:60px;height:60px}.hair_beard_2_ppink{background-image:url(spritesmith-main-0.png);background-position:-1546px -728px;width:90px;height:90px}.customize-option.hair_beard_2_ppink{background-image:url(spritesmith-main-0.png);background-position:-1571px -743px;width:60px;height:60px}.hair_beard_2_ppurple{background-image:url(spritesmith-main-0.png);background-position:-1546px -819px;width:90px;height:90px}.customize-option.hair_beard_2_ppurple{background-image:url(spritesmith-main-0.png);background-position:-1571px -834px;width:60px;height:60px}.hair_beard_2_pumpkin{background-image:url(spritesmith-main-0.png);background-position:-1546px -910px;width:90px;height:90px}.customize-option.hair_beard_2_pumpkin{background-image:url(spritesmith-main-0.png);background-position:-1571px -925px;width:60px;height:60px}.hair_beard_2_purple{background-image:url(spritesmith-main-0.png);background-position:-1546px -1001px;width:90px;height:90px}.customize-option.hair_beard_2_purple{background-image:url(spritesmith-main-0.png);background-position:-1571px -1016px;width:60px;height:60px}.hair_beard_2_pyellow{background-image:url(spritesmith-main-0.png);background-position:-1546px -1092px;width:90px;height:90px}.customize-option.hair_beard_2_pyellow{background-image:url(spritesmith-main-0.png);background-position:-1571px -1107px;width:60px;height:60px}.hair_beard_2_rainbow{background-image:url(spritesmith-main-0.png);background-position:-1546px -1183px;width:90px;height:90px}.customize-option.hair_beard_2_rainbow{background-image:url(spritesmith-main-0.png);background-position:-1571px -1198px;width:60px;height:60px}.hair_beard_2_red{background-image:url(spritesmith-main-0.png);background-position:-1546px -1274px;width:90px;height:90px}.customize-option.hair_beard_2_red{background-image:url(spritesmith-main-0.png);background-position:-1571px -1289px;width:60px;height:60px}.hair_beard_2_snowy{background-image:url(spritesmith-main-0.png);background-position:-1546px -1365px;width:90px;height:90px}.customize-option.hair_beard_2_snowy{background-image:url(spritesmith-main-0.png);background-position:-1571px -1380px;width:60px;height:60px}.hair_beard_2_white{background-image:url(spritesmith-main-0.png);background-position:0 -1491px;width:90px;height:90px}.customize-option.hair_beard_2_white{background-image:url(spritesmith-main-0.png);background-position:-25px -1506px;width:60px;height:60px}.hair_beard_2_winternight{background-image:url(spritesmith-main-0.png);background-position:-91px -1491px;width:90px;height:90px}.customize-option.hair_beard_2_winternight{background-image:url(spritesmith-main-0.png);background-position:-116px -1506px;width:60px;height:60px}.hair_beard_2_winterstar{background-image:url(spritesmith-main-0.png);background-position:-182px -1491px;width:90px;height:90px}.customize-option.hair_beard_2_winterstar{background-image:url(spritesmith-main-0.png);background-position:-207px -1506px;width:60px;height:60px}.hair_beard_2_yellow{background-image:url(spritesmith-main-0.png);background-position:-273px -1491px;width:90px;height:90px}.customize-option.hair_beard_2_yellow{background-image:url(spritesmith-main-0.png);background-position:-298px -1506px;width:60px;height:60px}.hair_beard_2_zombie{background-image:url(spritesmith-main-0.png);background-position:-364px -1491px;width:90px;height:90px}.customize-option.hair_beard_2_zombie{background-image:url(spritesmith-main-0.png);background-position:-389px -1506px;width:60px;height:60px}.hair_beard_3_TRUred{background-image:url(spritesmith-main-0.png);background-position:-455px -1491px;width:90px;height:90px}.customize-option.hair_beard_3_TRUred{background-image:url(spritesmith-main-0.png);background-position:-480px -1506px;width:60px;height:60px}.hair_beard_3_aurora{background-image:url(spritesmith-main-0.png);background-position:-546px -1491px;width:90px;height:90px}.customize-option.hair_beard_3_aurora{background-image:url(spritesmith-main-0.png);background-position:-571px -1506px;width:60px;height:60px}.hair_beard_3_black{background-image:url(spritesmith-main-0.png);background-position:-637px -1491px;width:90px;height:90px}.customize-option.hair_beard_3_black{background-image:url(spritesmith-main-0.png);background-position:-662px -1506px;width:60px;height:60px}.hair_beard_3_blond{background-image:url(spritesmith-main-0.png);background-position:-728px -1491px;width:90px;height:90px}.customize-option.hair_beard_3_blond{background-image:url(spritesmith-main-0.png);background-position:-753px -1506px;width:60px;height:60px}.hair_beard_3_blue{background-image:url(spritesmith-main-0.png);background-position:-819px -1491px;width:90px;height:90px}.customize-option.hair_beard_3_blue{background-image:url(spritesmith-main-0.png);background-position:-844px -1506px;width:60px;height:60px}.hair_beard_3_brown{background-image:url(spritesmith-main-0.png);background-position:-910px -1491px;width:90px;height:90px}.customize-option.hair_beard_3_brown{background-image:url(spritesmith-main-0.png);background-position:-935px -1506px;width:60px;height:60px}.hair_beard_3_candycane{background-image:url(spritesmith-main-0.png);background-position:-1001px -1491px;width:90px;height:90px}.customize-option.hair_beard_3_candycane{background-image:url(spritesmith-main-0.png);background-position:-1026px -1506px;width:60px;height:60px}.hair_beard_3_candycorn{background-image:url(spritesmith-main-0.png);background-position:-1092px -1491px;width:90px;height:90px}.customize-option.hair_beard_3_candycorn{background-image:url(spritesmith-main-0.png);background-position:-1117px -1506px;width:60px;height:60px}.hair_beard_3_festive{background-image:url(spritesmith-main-0.png);background-position:-1183px -1491px;width:90px;height:90px}.customize-option.hair_beard_3_festive{background-image:url(spritesmith-main-0.png);background-position:-1208px -1506px;width:60px;height:60px}.hair_beard_3_frost{background-image:url(spritesmith-main-0.png);background-position:-1274px -1491px;width:90px;height:90px}.customize-option.hair_beard_3_frost{background-image:url(spritesmith-main-0.png);background-position:-1299px -1506px;width:60px;height:60px}.hair_beard_3_ghostwhite{background-image:url(spritesmith-main-0.png);background-position:-1365px -1491px;width:90px;height:90px}.customize-option.hair_beard_3_ghostwhite{background-image:url(spritesmith-main-0.png);background-position:-1390px -1506px;width:60px;height:60px}.hair_beard_3_green{background-image:url(spritesmith-main-0.png);background-position:-1456px -1491px;width:90px;height:90px}.customize-option.hair_beard_3_green{background-image:url(spritesmith-main-0.png);background-position:-1481px -1506px;width:60px;height:60px}.hair_beard_3_halloween{background-image:url(spritesmith-main-0.png);background-position:-1637px 0;width:90px;height:90px}.customize-option.hair_beard_3_halloween{background-image:url(spritesmith-main-0.png);background-position:-1662px -15px;width:60px;height:60px}.hair_beard_3_holly{background-image:url(spritesmith-main-0.png);background-position:-1637px -91px;width:90px;height:90px}.customize-option.hair_beard_3_holly{background-image:url(spritesmith-main-0.png);background-position:-1662px -106px;width:60px;height:60px}.hair_beard_3_hollygreen{background-image:url(spritesmith-main-0.png);background-position:-1637px -182px;width:90px;height:90px}.customize-option.hair_beard_3_hollygreen{background-image:url(spritesmith-main-0.png);background-position:-1662px -197px;width:60px;height:60px}.hair_beard_3_midnight{background-image:url(spritesmith-main-0.png);background-position:-1637px -273px;width:90px;height:90px}.customize-option.hair_beard_3_midnight{background-image:url(spritesmith-main-0.png);background-position:-1662px -288px;width:60px;height:60px}.hair_beard_3_pblue{background-image:url(spritesmith-main-0.png);background-position:-1637px -364px;width:90px;height:90px}.customize-option.hair_beard_3_pblue{background-image:url(spritesmith-main-0.png);background-position:-1662px -379px;width:60px;height:60px}.hair_beard_3_peppermint{background-image:url(spritesmith-main-0.png);background-position:-1637px -455px;width:90px;height:90px}.customize-option.hair_beard_3_peppermint{background-image:url(spritesmith-main-0.png);background-position:-1662px -470px;width:60px;height:60px}.hair_beard_3_pgreen{background-image:url(spritesmith-main-0.png);background-position:-1637px -546px;width:90px;height:90px}.customize-option.hair_beard_3_pgreen{background-image:url(spritesmith-main-0.png);background-position:-1662px -561px;width:60px;height:60px}.hair_beard_3_porange{background-image:url(spritesmith-main-0.png);background-position:-1637px -637px;width:90px;height:90px}.customize-option.hair_beard_3_porange{background-image:url(spritesmith-main-0.png);background-position:-1662px -652px;width:60px;height:60px}.hair_beard_3_ppink{background-image:url(spritesmith-main-0.png);background-position:-1637px -728px;width:90px;height:90px}.customize-option.hair_beard_3_ppink{background-image:url(spritesmith-main-0.png);background-position:-1662px -743px;width:60px;height:60px}.hair_beard_3_ppurple{background-image:url(spritesmith-main-0.png);background-position:-1637px -819px;width:90px;height:90px}.customize-option.hair_beard_3_ppurple{background-image:url(spritesmith-main-0.png);background-position:-1662px -834px;width:60px;height:60px}.hair_beard_3_pumpkin{background-image:url(spritesmith-main-0.png);background-position:-1637px -910px;width:90px;height:90px}.customize-option.hair_beard_3_pumpkin{background-image:url(spritesmith-main-0.png);background-position:-1662px -925px;width:60px;height:60px}.hair_beard_3_purple{background-image:url(spritesmith-main-0.png);background-position:-1637px -1001px;width:90px;height:90px}.customize-option.hair_beard_3_purple{background-image:url(spritesmith-main-0.png);background-position:-1662px -1016px;width:60px;height:60px}.hair_beard_3_pyellow{background-image:url(spritesmith-main-0.png);background-position:-1637px -1092px;width:90px;height:90px}.customize-option.hair_beard_3_pyellow{background-image:url(spritesmith-main-0.png);background-position:-1662px -1107px;width:60px;height:60px}.hair_beard_3_rainbow{background-image:url(spritesmith-main-0.png);background-position:-1637px -1183px;width:90px;height:90px}.customize-option.hair_beard_3_rainbow{background-image:url(spritesmith-main-0.png);background-position:-1662px -1198px;width:60px;height:60px}.hair_beard_3_red{background-image:url(spritesmith-main-0.png);background-position:-1637px -1274px;width:90px;height:90px}.customize-option.hair_beard_3_red{background-image:url(spritesmith-main-0.png);background-position:-1662px -1289px;width:60px;height:60px}.hair_beard_3_snowy{background-image:url(spritesmith-main-0.png);background-position:-1637px -1365px;width:90px;height:90px}.customize-option.hair_beard_3_snowy{background-image:url(spritesmith-main-0.png);background-position:-1662px -1380px;width:60px;height:60px}.hair_beard_3_white{background-image:url(spritesmith-main-0.png);background-position:-1637px -1456px;width:90px;height:90px}.customize-option.hair_beard_3_white{background-image:url(spritesmith-main-0.png);background-position:-1662px -1471px;width:60px;height:60px}.hair_beard_3_winternight{background-image:url(spritesmith-main-0.png);background-position:0 -1582px;width:90px;height:90px}.customize-option.hair_beard_3_winternight{background-image:url(spritesmith-main-0.png);background-position:-25px -1597px;width:60px;height:60px}.hair_beard_3_winterstar{background-image:url(spritesmith-main-0.png);background-position:-91px -1582px;width:90px;height:90px}.customize-option.hair_beard_3_winterstar{background-image:url(spritesmith-main-0.png);background-position:-116px -1597px;width:60px;height:60px}.hair_beard_3_yellow{background-image:url(spritesmith-main-0.png);background-position:-182px -1582px;width:90px;height:90px}.customize-option.hair_beard_3_yellow{background-image:url(spritesmith-main-0.png);background-position:-207px -1597px;width:60px;height:60px}.hair_beard_3_zombie{background-image:url(spritesmith-main-0.png);background-position:-1455px -546px;width:90px;height:90px}.customize-option.hair_beard_3_zombie{background-image:url(spritesmith-main-0.png);background-position:-1480px -561px;width:60px;height:60px}.hair_mustache_1_TRUred{background-image:url(spritesmith-main-0.png);background-position:-910px -1036px;width:90px;height:90px}.customize-option.hair_mustache_1_TRUred{background-image:url(spritesmith-main-0.png);background-position:-935px -1051px;width:60px;height:60px}.hair_mustache_1_aurora{background-image:url(spritesmith-main-0.png);background-position:-819px -1036px;width:90px;height:90px}.customize-option.hair_mustache_1_aurora{background-image:url(spritesmith-main-0.png);background-position:-844px -1051px;width:60px;height:60px}.hair_mustache_1_black{background-image:url(spritesmith-main-0.png);background-position:-728px -1036px;width:90px;height:90px}.customize-option.hair_mustache_1_black{background-image:url(spritesmith-main-0.png);background-position:-753px -1051px;width:60px;height:60px}.hair_mustache_1_blond{background-image:url(spritesmith-main-0.png);background-position:-637px -1036px;width:90px;height:90px}.customize-option.hair_mustache_1_blond{background-image:url(spritesmith-main-0.png);background-position:-662px -1051px;width:60px;height:60px}.hair_mustache_1_blue{background-image:url(spritesmith-main-0.png);background-position:-546px -1036px;width:90px;height:90px}.customize-option.hair_mustache_1_blue{background-image:url(spritesmith-main-0.png);background-position:-571px -1051px;width:60px;height:60px}.hair_mustache_1_brown{background-image:url(spritesmith-main-0.png);background-position:-455px -1036px;width:90px;height:90px}.customize-option.hair_mustache_1_brown{background-image:url(spritesmith-main-0.png);background-position:-480px -1051px;width:60px;height:60px}.hair_mustache_1_candycane{background-image:url(spritesmith-main-0.png);background-position:-364px -1036px;width:90px;height:90px}.customize-option.hair_mustache_1_candycane{background-image:url(spritesmith-main-0.png);background-position:-389px -1051px;width:60px;height:60px}.hair_mustache_1_candycorn{background-image:url(spritesmith-main-0.png);background-position:-273px -1036px;width:90px;height:90px}.customize-option.hair_mustache_1_candycorn{background-image:url(spritesmith-main-0.png);background-position:-298px -1051px;width:60px;height:60px}.hair_mustache_1_festive{background-image:url(spritesmith-main-0.png);background-position:-182px -1036px;width:90px;height:90px}.customize-option.hair_mustache_1_festive{background-image:url(spritesmith-main-0.png);background-position:-207px -1051px;width:60px;height:60px}.hair_mustache_1_frost{background-image:url(spritesmith-main-0.png);background-position:-91px -1036px;width:90px;height:90px}.customize-option.hair_mustache_1_frost{background-image:url(spritesmith-main-0.png);background-position:-116px -1051px;width:60px;height:60px}.hair_mustache_1_ghostwhite{background-image:url(spritesmith-main-0.png);background-position:0 -1036px;width:90px;height:90px}.customize-option.hair_mustache_1_ghostwhite{background-image:url(spritesmith-main-0.png);background-position:-25px -1051px;width:60px;height:60px}.hair_mustache_1_green{background-image:url(spritesmith-main-0.png);background-position:-1132px -876px;width:90px;height:90px}.customize-option.hair_mustache_1_green{background-image:url(spritesmith-main-0.png);background-position:-1157px -891px;width:60px;height:60px}.hair_mustache_1_halloween{background-image:url(spritesmith-main-0.png);background-position:-1132px -785px;width:90px;height:90px}.customize-option.hair_mustache_1_halloween{background-image:url(spritesmith-main-0.png);background-position:-1157px -800px;width:60px;height:60px}.hair_mustache_1_holly{background-image:url(spritesmith-main-0.png);background-position:-1132px -694px;width:90px;height:90px}.customize-option.hair_mustache_1_holly{background-image:url(spritesmith-main-0.png);background-position:-1157px -709px;width:60px;height:60px}.hair_mustache_1_hollygreen{background-image:url(spritesmith-main-0.png);background-position:-1132px -603px;width:90px;height:90px}.customize-option.hair_mustache_1_hollygreen{background-image:url(spritesmith-main-0.png);background-position:-1157px -618px;width:60px;height:60px}.hair_mustache_1_midnight{background-image:url(spritesmith-main-0.png);background-position:-1132px -512px;width:90px;height:90px}.customize-option.hair_mustache_1_midnight{background-image:url(spritesmith-main-0.png);background-position:-1157px -527px;width:60px;height:60px}.hair_mustache_1_pblue{background-image:url(spritesmith-main-0.png);background-position:-1132px -421px;width:90px;height:90px}.customize-option.hair_mustache_1_pblue{background-image:url(spritesmith-main-0.png);background-position:-1157px -436px;width:60px;height:60px}.hair_mustache_1_peppermint{background-image:url(spritesmith-main-0.png);background-position:-1132px -330px;width:90px;height:90px}.customize-option.hair_mustache_1_peppermint{background-image:url(spritesmith-main-0.png);background-position:-1157px -345px;width:60px;height:60px}.hair_mustache_1_pgreen{background-image:url(spritesmith-main-0.png);background-position:-1132px -239px;width:90px;height:90px}.customize-option.hair_mustache_1_pgreen{background-image:url(spritesmith-main-0.png);background-position:-1157px -254px;width:60px;height:60px}.hair_mustache_1_porange{background-image:url(spritesmith-main-0.png);background-position:0 -1309px;width:90px;height:90px}.customize-option.hair_mustache_1_porange{background-image:url(spritesmith-main-0.png);background-position:-25px -1324px;width:60px;height:60px}.hair_mustache_1_ppink{background-image:url(spritesmith-main-0.png);background-position:-1364px -1183px;width:90px;height:90px}.customize-option.hair_mustache_1_ppink{background-image:url(spritesmith-main-0.png);background-position:-1389px -1198px;width:60px;height:60px}.hair_mustache_1_ppurple{background-image:url(spritesmith-main-0.png);background-position:-1364px -1092px;width:90px;height:90px}.customize-option.hair_mustache_1_ppurple{background-image:url(spritesmith-main-0.png);background-position:-1389px -1107px;width:60px;height:60px}.hair_mustache_1_pumpkin{background-image:url(spritesmith-main-0.png);background-position:-1364px -1001px;width:90px;height:90px}.customize-option.hair_mustache_1_pumpkin{background-image:url(spritesmith-main-0.png);background-position:-1389px -1016px;width:60px;height:60px}.hair_mustache_1_purple{background-image:url(spritesmith-main-0.png);background-position:-1364px -910px;width:90px;height:90px}.customize-option.hair_mustache_1_purple{background-image:url(spritesmith-main-0.png);background-position:-1389px -925px;width:60px;height:60px}.hair_mustache_1_pyellow{background-image:url(spritesmith-main-0.png);background-position:-1364px -819px;width:90px;height:90px}.customize-option.hair_mustache_1_pyellow{background-image:url(spritesmith-main-0.png);background-position:-1389px -834px;width:60px;height:60px}.hair_mustache_1_rainbow{background-image:url(spritesmith-main-0.png);background-position:-1364px -728px;width:90px;height:90px}.customize-option.hair_mustache_1_rainbow{background-image:url(spritesmith-main-0.png);background-position:-1389px -743px;width:60px;height:60px}.hair_mustache_1_red{background-image:url(spritesmith-main-0.png);background-position:-1364px -637px;width:90px;height:90px}.customize-option.hair_mustache_1_red{background-image:url(spritesmith-main-0.png);background-position:-1389px -652px;width:60px;height:60px}.hair_mustache_1_snowy{background-image:url(spritesmith-main-0.png);background-position:-1364px -546px;width:90px;height:90px}.customize-option.hair_mustache_1_snowy{background-image:url(spritesmith-main-0.png);background-position:-1389px -561px;width:60px;height:60px}.hair_mustache_1_white{background-image:url(spritesmith-main-0.png);background-position:-1364px -455px;width:90px;height:90px}.customize-option.hair_mustache_1_white{background-image:url(spritesmith-main-0.png);background-position:-1389px -470px;width:60px;height:60px}.hair_mustache_1_winternight{background-image:url(spritesmith-main-0.png);background-position:-1364px -364px;width:90px;height:90px}.customize-option.hair_mustache_1_winternight{background-image:url(spritesmith-main-0.png);background-position:-1389px -379px;width:60px;height:60px}.hair_mustache_1_winterstar{background-image:url(spritesmith-main-0.png);background-position:-1364px -273px;width:90px;height:90px}.customize-option.hair_mustache_1_winterstar{background-image:url(spritesmith-main-0.png);background-position:-1389px -288px;width:60px;height:60px}.hair_mustache_1_yellow{background-image:url(spritesmith-main-0.png);background-position:-1364px -182px;width:90px;height:90px}.customize-option.hair_mustache_1_yellow{background-image:url(spritesmith-main-0.png);background-position:-1389px -197px;width:60px;height:60px}.hair_mustache_1_zombie{background-image:url(spritesmith-main-0.png);background-position:-1364px -91px;width:90px;height:90px}.customize-option.hair_mustache_1_zombie{background-image:url(spritesmith-main-0.png);background-position:-1389px -106px;width:60px;height:60px}.hair_mustache_2_TRUred{background-image:url(spritesmith-main-0.png);background-position:-1364px 0;width:90px;height:90px}.customize-option.hair_mustache_2_TRUred{background-image:url(spritesmith-main-0.png);background-position:-1389px -15px;width:60px;height:60px}.hair_mustache_2_aurora{background-image:url(spritesmith-main-0.png);background-position:-1183px -1218px;width:90px;height:90px}.customize-option.hair_mustache_2_aurora{background-image:url(spritesmith-main-0.png);background-position:-1208px -1233px;width:60px;height:60px}.hair_mustache_2_black{background-image:url(spritesmith-main-0.png);background-position:-1092px -1218px;width:90px;height:90px}.customize-option.hair_mustache_2_black{background-image:url(spritesmith-main-0.png);background-position:-1117px -1233px;width:60px;height:60px}.hair_mustache_2_blond{background-image:url(spritesmith-main-0.png);background-position:-1001px -1218px;width:90px;height:90px}.customize-option.hair_mustache_2_blond{background-image:url(spritesmith-main-0.png);background-position:-1026px -1233px;width:60px;height:60px}.hair_mustache_2_blue{background-image:url(spritesmith-main-0.png);background-position:-910px -1218px;width:90px;height:90px}.customize-option.hair_mustache_2_blue{background-image:url(spritesmith-main-0.png);background-position:-935px -1233px;width:60px;height:60px}.hair_mustache_2_brown{background-image:url(spritesmith-main-0.png);background-position:-819px -1218px;width:90px;height:90px}.customize-option.hair_mustache_2_brown{background-image:url(spritesmith-main-0.png);background-position:-844px -1233px;width:60px;height:60px}.hair_mustache_2_candycane{background-image:url(spritesmith-main-0.png);background-position:-728px -1218px;width:90px;height:90px}.customize-option.hair_mustache_2_candycane{background-image:url(spritesmith-main-0.png);background-position:-753px -1233px;width:60px;height:60px}.hair_mustache_2_candycorn{background-image:url(spritesmith-main-0.png);background-position:-637px -1218px;width:90px;height:90px}.customize-option.hair_mustache_2_candycorn{background-image:url(spritesmith-main-0.png);background-position:-662px -1233px;width:60px;height:60px}.hair_mustache_2_festive{background-image:url(spritesmith-main-0.png);background-position:-546px -1218px;width:90px;height:90px}.customize-option.hair_mustache_2_festive{background-image:url(spritesmith-main-0.png);background-position:-571px -1233px;width:60px;height:60px}.hair_mustache_2_frost{background-image:url(spritesmith-main-0.png);background-position:-455px -1218px;width:90px;height:90px}.customize-option.hair_mustache_2_frost{background-image:url(spritesmith-main-0.png);background-position:-480px -1233px;width:60px;height:60px}.hair_mustache_2_ghostwhite{background-image:url(spritesmith-main-0.png);background-position:-364px -1218px;width:90px;height:90px}.customize-option.hair_mustache_2_ghostwhite{background-image:url(spritesmith-main-0.png);background-position:-389px -1233px;width:60px;height:60px}.hair_mustache_2_green{background-image:url(spritesmith-main-0.png);background-position:-273px -1218px;width:90px;height:90px}.customize-option.hair_mustache_2_green{background-image:url(spritesmith-main-0.png);background-position:-298px -1233px;width:60px;height:60px}.hair_mustache_2_halloween{background-image:url(spritesmith-main-0.png);background-position:-182px -1218px;width:90px;height:90px}.customize-option.hair_mustache_2_halloween{background-image:url(spritesmith-main-0.png);background-position:-207px -1233px;width:60px;height:60px}.hair_mustache_2_holly{background-image:url(spritesmith-main-0.png);background-position:-91px -1218px;width:90px;height:90px}.customize-option.hair_mustache_2_holly{background-image:url(spritesmith-main-0.png);background-position:-116px -1233px;width:60px;height:60px}.hair_mustache_2_hollygreen{background-image:url(spritesmith-main-0.png);background-position:0 -1218px;width:90px;height:90px}.customize-option.hair_mustache_2_hollygreen{background-image:url(spritesmith-main-0.png);background-position:-25px -1233px;width:60px;height:60px}.hair_mustache_2_midnight{background-image:url(spritesmith-main-0.png);background-position:-1273px -1092px;width:90px;height:90px}.customize-option.hair_mustache_2_midnight{background-image:url(spritesmith-main-0.png);background-position:-1298px -1107px;width:60px;height:60px}.hair_mustache_2_pblue{background-image:url(spritesmith-main-0.png);background-position:-1273px -1001px;width:90px;height:90px}.customize-option.hair_mustache_2_pblue{background-image:url(spritesmith-main-0.png);background-position:-1298px -1016px;width:60px;height:60px}.hair_mustache_2_peppermint{background-image:url(spritesmith-main-0.png);background-position:-1273px -910px;width:90px;height:90px}.customize-option.hair_mustache_2_peppermint{background-image:url(spritesmith-main-0.png);background-position:-1298px -925px;width:60px;height:60px}.hair_mustache_2_pgreen{background-image:url(spritesmith-main-0.png);background-position:-1273px -819px;width:90px;height:90px}.customize-option.hair_mustache_2_pgreen{background-image:url(spritesmith-main-0.png);background-position:-1298px -834px;width:60px;height:60px}.hair_mustache_2_porange{background-image:url(spritesmith-main-0.png);background-position:-1273px -728px;width:90px;height:90px}.customize-option.hair_mustache_2_porange{background-image:url(spritesmith-main-0.png);background-position:-1298px -743px;width:60px;height:60px}.hair_mustache_2_ppink{background-image:url(spritesmith-main-0.png);background-position:-1273px -637px;width:90px;height:90px}.customize-option.hair_mustache_2_ppink{background-image:url(spritesmith-main-0.png);background-position:-1298px -652px;width:60px;height:60px}.hair_mustache_2_ppurple{background-image:url(spritesmith-main-0.png);background-position:-1273px -546px;width:90px;height:90px}.customize-option.hair_mustache_2_ppurple{background-image:url(spritesmith-main-0.png);background-position:-1298px -561px;width:60px;height:60px}.hair_mustache_2_pumpkin{background-image:url(spritesmith-main-0.png);background-position:-1273px -455px;width:90px;height:90px}.customize-option.hair_mustache_2_pumpkin{background-image:url(spritesmith-main-0.png);background-position:-1298px -470px;width:60px;height:60px}.hair_mustache_2_purple{background-image:url(spritesmith-main-0.png);background-position:-1273px -364px;width:90px;height:90px}.customize-option.hair_mustache_2_purple{background-image:url(spritesmith-main-0.png);background-position:-1298px -379px;width:60px;height:60px}.hair_mustache_2_pyellow{background-image:url(spritesmith-main-0.png);background-position:-1273px -273px;width:90px;height:90px}.customize-option.hair_mustache_2_pyellow{background-image:url(spritesmith-main-0.png);background-position:-1298px -288px;width:60px;height:60px}.hair_mustache_2_rainbow{background-image:url(spritesmith-main-0.png);background-position:-1273px -182px;width:90px;height:90px}.customize-option.hair_mustache_2_rainbow{background-image:url(spritesmith-main-0.png);background-position:-1298px -197px;width:60px;height:60px}.hair_mustache_2_red{background-image:url(spritesmith-main-0.png);background-position:-1273px -91px;width:90px;height:90px}.customize-option.hair_mustache_2_red{background-image:url(spritesmith-main-0.png);background-position:-1298px -106px;width:60px;height:60px}.hair_mustache_2_snowy{background-image:url(spritesmith-main-0.png);background-position:-1273px 0;width:90px;height:90px}.customize-option.hair_mustache_2_snowy{background-image:url(spritesmith-main-0.png);background-position:-1298px -15px;width:60px;height:60px}.hair_mustache_2_white{background-image:url(spritesmith-main-0.png);background-position:-1092px -1127px;width:90px;height:90px}.customize-option.hair_mustache_2_white{background-image:url(spritesmith-main-0.png);background-position:-1117px -1142px;width:60px;height:60px}.hair_mustache_2_winternight{background-image:url(spritesmith-main-0.png);background-position:-1001px -1127px;width:90px;height:90px}.customize-option.hair_mustache_2_winternight{background-image:url(spritesmith-main-0.png);background-position:-1026px -1142px;width:60px;height:60px}.hair_mustache_2_winterstar{background-image:url(spritesmith-main-0.png);background-position:-910px -1127px;width:90px;height:90px}.customize-option.hair_mustache_2_winterstar{background-image:url(spritesmith-main-0.png);background-position:-935px -1142px;width:60px;height:60px}.hair_mustache_2_yellow{background-image:url(spritesmith-main-0.png);background-position:-819px -1127px;width:90px;height:90px}.customize-option.hair_mustache_2_yellow{background-image:url(spritesmith-main-0.png);background-position:-844px -1142px;width:60px;height:60px}.hair_mustache_2_zombie{background-image:url(spritesmith-main-0.png);background-position:-728px -1127px;width:90px;height:90px}.customize-option.hair_mustache_2_zombie{background-image:url(spritesmith-main-0.png);background-position:-753px -1142px;width:60px;height:60px}.hair_flower_1{background-image:url(spritesmith-main-0.png);background-position:-637px -1127px;width:90px;height:90px}.customize-option.hair_flower_1{background-image:url(spritesmith-main-0.png);background-position:-662px -1142px;width:60px;height:60px}.hair_flower_2{background-image:url(spritesmith-main-0.png);background-position:-546px -1127px;width:90px;height:90px}.customize-option.hair_flower_2{background-image:url(spritesmith-main-0.png);background-position:-571px -1142px;width:60px;height:60px}.hair_flower_3{background-image:url(spritesmith-main-0.png);background-position:-455px -1127px;width:90px;height:90px}.customize-option.hair_flower_3{background-image:url(spritesmith-main-0.png);background-position:-480px -1142px;width:60px;height:60px}.hair_flower_4{background-image:url(spritesmith-main-0.png);background-position:-364px -1127px;width:90px;height:90px}.customize-option.hair_flower_4{background-image:url(spritesmith-main-0.png);background-position:-389px -1142px;width:60px;height:60px}.hair_flower_5{background-image:url(spritesmith-main-0.png);background-position:-273px -1127px;width:90px;height:90px}.customize-option.hair_flower_5{background-image:url(spritesmith-main-0.png);background-position:-298px -1142px;width:60px;height:60px}.hair_flower_6{background-image:url(spritesmith-main-0.png);background-position:-182px -1127px;width:90px;height:90px}.customize-option.hair_flower_6{background-image:url(spritesmith-main-0.png);background-position:-207px -1142px;width:60px;height:60px}.hair_bangs_1_TRUred{background-image:url(spritesmith-main-0.png);background-position:-91px -1127px;width:90px;height:90px}.customize-option.hair_bangs_1_TRUred{background-image:url(spritesmith-main-0.png);background-position:-116px -1142px;width:60px;height:60px}.hair_bangs_1_aurora{background-image:url(spritesmith-main-0.png);background-position:0 -1127px;width:90px;height:90px}.customize-option.hair_bangs_1_aurora{background-image:url(spritesmith-main-0.png);background-position:-25px -1142px;width:60px;height:60px}.hair_bangs_1_black{background-image:url(spritesmith-main-0.png);background-position:-1092px -1036px;width:90px;height:90px}.customize-option.hair_bangs_1_black{background-image:url(spritesmith-main-0.png);background-position:-1117px -1051px;width:60px;height:60px}.hair_bangs_1_blond{background-image:url(spritesmith-main-0.png);background-position:-1001px -1036px;width:90px;height:90px}.customize-option.hair_bangs_1_blond{background-image:url(spritesmith-main-0.png);background-position:-1026px -1051px;width:60px;height:60px}.hair_bangs_1_blue{background-image:url(spritesmith-main-1.png);background-position:-91px 0;width:90px;height:90px}.customize-option.hair_bangs_1_blue{background-image:url(spritesmith-main-1.png);background-position:-116px -15px;width:60px;height:60px}.hair_bangs_1_brown{background-image:url(spritesmith-main-1.png);background-position:-728px -1092px;width:90px;height:90px}.customize-option.hair_bangs_1_brown{background-image:url(spritesmith-main-1.png);background-position:-753px -1107px;width:60px;height:60px}.hair_bangs_1_candycane{background-image:url(spritesmith-main-1.png);background-position:0 -91px;width:90px;height:90px}.customize-option.hair_bangs_1_candycane{background-image:url(spritesmith-main-1.png);background-position:-25px -106px;width:60px;height:60px}.hair_bangs_1_candycorn{background-image:url(spritesmith-main-1.png);background-position:-91px -91px;width:90px;height:90px}.customize-option.hair_bangs_1_candycorn{background-image:url(spritesmith-main-1.png);background-position:-116px -106px;width:60px;height:60px}.hair_bangs_1_festive{background-image:url(spritesmith-main-1.png);background-position:-182px 0;width:90px;height:90px}.customize-option.hair_bangs_1_festive{background-image:url(spritesmith-main-1.png);background-position:-207px -15px;width:60px;height:60px}.hair_bangs_1_frost{background-image:url(spritesmith-main-1.png);background-position:-182px -91px;width:90px;height:90px}.customize-option.hair_bangs_1_frost{background-image:url(spritesmith-main-1.png);background-position:-207px -106px;width:60px;height:60px}.hair_bangs_1_ghostwhite{background-image:url(spritesmith-main-1.png);background-position:0 -182px;width:90px;height:90px}.customize-option.hair_bangs_1_ghostwhite{background-image:url(spritesmith-main-1.png);background-position:-25px -197px;width:60px;height:60px}.hair_bangs_1_green{background-image:url(spritesmith-main-1.png);background-position:-91px -182px;width:90px;height:90px}.customize-option.hair_bangs_1_green{background-image:url(spritesmith-main-1.png);background-position:-116px -197px;width:60px;height:60px}.hair_bangs_1_halloween{background-image:url(spritesmith-main-1.png);background-position:-182px -182px;width:90px;height:90px}.customize-option.hair_bangs_1_halloween{background-image:url(spritesmith-main-1.png);background-position:-207px -197px;width:60px;height:60px}.hair_bangs_1_holly{background-image:url(spritesmith-main-1.png);background-position:-273px 0;width:90px;height:90px}.customize-option.hair_bangs_1_holly{background-image:url(spritesmith-main-1.png);background-position:-298px -15px;width:60px;height:60px}.hair_bangs_1_hollygreen{background-image:url(spritesmith-main-1.png);background-position:-273px -91px;width:90px;height:90px}.customize-option.hair_bangs_1_hollygreen{background-image:url(spritesmith-main-1.png);background-position:-298px -106px;width:60px;height:60px}.hair_bangs_1_midnight{background-image:url(spritesmith-main-1.png);background-position:-273px -182px;width:90px;height:90px}.customize-option.hair_bangs_1_midnight{background-image:url(spritesmith-main-1.png);background-position:-298px -197px;width:60px;height:60px}.hair_bangs_1_pblue{background-image:url(spritesmith-main-1.png);background-position:0 -273px;width:90px;height:90px}.customize-option.hair_bangs_1_pblue{background-image:url(spritesmith-main-1.png);background-position:-25px -288px;width:60px;height:60px}.hair_bangs_1_pblue2{background-image:url(spritesmith-main-1.png);background-position:-91px -273px;width:90px;height:90px}.customize-option.hair_bangs_1_pblue2{background-image:url(spritesmith-main-1.png);background-position:-116px -288px;width:60px;height:60px}.hair_bangs_1_peppermint{background-image:url(spritesmith-main-1.png);background-position:-182px -273px;width:90px;height:90px}.customize-option.hair_bangs_1_peppermint{background-image:url(spritesmith-main-1.png);background-position:-207px -288px;width:60px;height:60px}.hair_bangs_1_pgreen{background-image:url(spritesmith-main-1.png);background-position:-273px -273px;width:90px;height:90px}.customize-option.hair_bangs_1_pgreen{background-image:url(spritesmith-main-1.png);background-position:-298px -288px;width:60px;height:60px}.hair_bangs_1_pgreen2{background-image:url(spritesmith-main-1.png);background-position:-364px 0;width:90px;height:90px}.customize-option.hair_bangs_1_pgreen2{background-image:url(spritesmith-main-1.png);background-position:-389px -15px;width:60px;height:60px}.hair_bangs_1_porange{background-image:url(spritesmith-main-1.png);background-position:-364px -91px;width:90px;height:90px}.customize-option.hair_bangs_1_porange{background-image:url(spritesmith-main-1.png);background-position:-389px -106px;width:60px;height:60px}.hair_bangs_1_porange2{background-image:url(spritesmith-main-1.png);background-position:-364px -182px;width:90px;height:90px}.customize-option.hair_bangs_1_porange2{background-image:url(spritesmith-main-1.png);background-position:-389px -197px;width:60px;height:60px}.hair_bangs_1_ppink{background-image:url(spritesmith-main-1.png);background-position:-364px -273px;width:90px;height:90px}.customize-option.hair_bangs_1_ppink{background-image:url(spritesmith-main-1.png);background-position:-389px -288px;width:60px;height:60px}.hair_bangs_1_ppink2{background-image:url(spritesmith-main-1.png);background-position:0 -364px;width:90px;height:90px}.customize-option.hair_bangs_1_ppink2{background-image:url(spritesmith-main-1.png);background-position:-25px -379px;width:60px;height:60px}.hair_bangs_1_ppurple{background-image:url(spritesmith-main-1.png);background-position:-91px -364px;width:90px;height:90px}.customize-option.hair_bangs_1_ppurple{background-image:url(spritesmith-main-1.png);background-position:-116px -379px;width:60px;height:60px}.hair_bangs_1_ppurple2{background-image:url(spritesmith-main-1.png);background-position:-182px -364px;width:90px;height:90px}.customize-option.hair_bangs_1_ppurple2{background-image:url(spritesmith-main-1.png);background-position:-207px -379px;width:60px;height:60px}.hair_bangs_1_pumpkin{background-image:url(spritesmith-main-1.png);background-position:-273px -364px;width:90px;height:90px}.customize-option.hair_bangs_1_pumpkin{background-image:url(spritesmith-main-1.png);background-position:-298px -379px;width:60px;height:60px}.hair_bangs_1_purple{background-image:url(spritesmith-main-1.png);background-position:-364px -364px;width:90px;height:90px}.customize-option.hair_bangs_1_purple{background-image:url(spritesmith-main-1.png);background-position:-389px -379px;width:60px;height:60px}.hair_bangs_1_pyellow{background-image:url(spritesmith-main-1.png);background-position:-455px 0;width:90px;height:90px}.customize-option.hair_bangs_1_pyellow{background-image:url(spritesmith-main-1.png);background-position:-480px -15px;width:60px;height:60px}.hair_bangs_1_pyellow2{background-image:url(spritesmith-main-1.png);background-position:-455px -91px;width:90px;height:90px}.customize-option.hair_bangs_1_pyellow2{background-image:url(spritesmith-main-1.png);background-position:-480px -106px;width:60px;height:60px}.hair_bangs_1_rainbow{background-image:url(spritesmith-main-1.png);background-position:-455px -182px;width:90px;height:90px}.customize-option.hair_bangs_1_rainbow{background-image:url(spritesmith-main-1.png);background-position:-480px -197px;width:60px;height:60px}.hair_bangs_1_red{background-image:url(spritesmith-main-1.png);background-position:-455px -273px;width:90px;height:90px}.customize-option.hair_bangs_1_red{background-image:url(spritesmith-main-1.png);background-position:-480px -288px;width:60px;height:60px}.hair_bangs_1_snowy{background-image:url(spritesmith-main-1.png);background-position:-455px -364px;width:90px;height:90px}.customize-option.hair_bangs_1_snowy{background-image:url(spritesmith-main-1.png);background-position:-480px -379px;width:60px;height:60px}.hair_bangs_1_white{background-image:url(spritesmith-main-1.png);background-position:0 -455px;width:90px;height:90px}.customize-option.hair_bangs_1_white{background-image:url(spritesmith-main-1.png);background-position:-25px -470px;width:60px;height:60px}.hair_bangs_1_winternight{background-image:url(spritesmith-main-1.png);background-position:-91px -455px;width:90px;height:90px}.customize-option.hair_bangs_1_winternight{background-image:url(spritesmith-main-1.png);background-position:-116px -470px;width:60px;height:60px}.hair_bangs_1_winterstar{background-image:url(spritesmith-main-1.png);background-position:-182px -455px;width:90px;height:90px}.customize-option.hair_bangs_1_winterstar{background-image:url(spritesmith-main-1.png);background-position:-207px -470px;width:60px;height:60px}.hair_bangs_1_yellow{background-image:url(spritesmith-main-1.png);background-position:-273px -455px;width:90px;height:90px}.customize-option.hair_bangs_1_yellow{background-image:url(spritesmith-main-1.png);background-position:-298px -470px;width:60px;height:60px}.hair_bangs_1_zombie{background-image:url(spritesmith-main-1.png);background-position:-364px -455px;width:90px;height:90px}.customize-option.hair_bangs_1_zombie{background-image:url(spritesmith-main-1.png);background-position:-389px -470px;width:60px;height:60px}.hair_bangs_2_TRUred{background-image:url(spritesmith-main-1.png);background-position:-455px -455px;width:90px;height:90px}.customize-option.hair_bangs_2_TRUred{background-image:url(spritesmith-main-1.png);background-position:-480px -470px;width:60px;height:60px}.hair_bangs_2_aurora{background-image:url(spritesmith-main-1.png);background-position:-546px 0;width:90px;height:90px}.customize-option.hair_bangs_2_aurora{background-image:url(spritesmith-main-1.png);background-position:-571px -15px;width:60px;height:60px}.hair_bangs_2_black{background-image:url(spritesmith-main-1.png);background-position:-546px -91px;width:90px;height:90px}.customize-option.hair_bangs_2_black{background-image:url(spritesmith-main-1.png);background-position:-571px -106px;width:60px;height:60px}.hair_bangs_2_blond{background-image:url(spritesmith-main-1.png);background-position:-546px -182px;width:90px;height:90px}.customize-option.hair_bangs_2_blond{background-image:url(spritesmith-main-1.png);background-position:-571px -197px;width:60px;height:60px}.hair_bangs_2_blue{background-image:url(spritesmith-main-1.png);background-position:-546px -273px;width:90px;height:90px}.customize-option.hair_bangs_2_blue{background-image:url(spritesmith-main-1.png);background-position:-571px -288px;width:60px;height:60px}.hair_bangs_2_brown{background-image:url(spritesmith-main-1.png);background-position:-546px -364px;width:90px;height:90px}.customize-option.hair_bangs_2_brown{background-image:url(spritesmith-main-1.png);background-position:-571px -379px;width:60px;height:60px}.hair_bangs_2_candycane{background-image:url(spritesmith-main-1.png);background-position:-546px -455px;width:90px;height:90px}.customize-option.hair_bangs_2_candycane{background-image:url(spritesmith-main-1.png);background-position:-571px -470px;width:60px;height:60px}.hair_bangs_2_candycorn{background-image:url(spritesmith-main-1.png);background-position:0 -546px;width:90px;height:90px}.customize-option.hair_bangs_2_candycorn{background-image:url(spritesmith-main-1.png);background-position:-25px -561px;width:60px;height:60px}.hair_bangs_2_festive{background-image:url(spritesmith-main-1.png);background-position:-91px -546px;width:90px;height:90px}.customize-option.hair_bangs_2_festive{background-image:url(spritesmith-main-1.png);background-position:-116px -561px;width:60px;height:60px}.hair_bangs_2_frost{background-image:url(spritesmith-main-1.png);background-position:-182px -546px;width:90px;height:90px}.customize-option.hair_bangs_2_frost{background-image:url(spritesmith-main-1.png);background-position:-207px -561px;width:60px;height:60px}.hair_bangs_2_ghostwhite{background-image:url(spritesmith-main-1.png);background-position:-273px -546px;width:90px;height:90px}.customize-option.hair_bangs_2_ghostwhite{background-image:url(spritesmith-main-1.png);background-position:-298px -561px;width:60px;height:60px}.hair_bangs_2_green{background-image:url(spritesmith-main-1.png);background-position:-364px -546px;width:90px;height:90px}.customize-option.hair_bangs_2_green{background-image:url(spritesmith-main-1.png);background-position:-389px -561px;width:60px;height:60px}.hair_bangs_2_halloween{background-image:url(spritesmith-main-1.png);background-position:-455px -546px;width:90px;height:90px}.customize-option.hair_bangs_2_halloween{background-image:url(spritesmith-main-1.png);background-position:-480px -561px;width:60px;height:60px}.hair_bangs_2_holly{background-image:url(spritesmith-main-1.png);background-position:-546px -546px;width:90px;height:90px}.customize-option.hair_bangs_2_holly{background-image:url(spritesmith-main-1.png);background-position:-571px -561px;width:60px;height:60px}.hair_bangs_2_hollygreen{background-image:url(spritesmith-main-1.png);background-position:-637px 0;width:90px;height:90px}.customize-option.hair_bangs_2_hollygreen{background-image:url(spritesmith-main-1.png);background-position:-662px -15px;width:60px;height:60px}.hair_bangs_2_midnight{background-image:url(spritesmith-main-1.png);background-position:-637px -91px;width:90px;height:90px}.customize-option.hair_bangs_2_midnight{background-image:url(spritesmith-main-1.png);background-position:-662px -106px;width:60px;height:60px}.hair_bangs_2_pblue{background-image:url(spritesmith-main-1.png);background-position:-637px -182px;width:90px;height:90px}.customize-option.hair_bangs_2_pblue{background-image:url(spritesmith-main-1.png);background-position:-662px -197px;width:60px;height:60px}.hair_bangs_2_pblue2{background-image:url(spritesmith-main-1.png);background-position:-637px -273px;width:90px;height:90px}.customize-option.hair_bangs_2_pblue2{background-image:url(spritesmith-main-1.png);background-position:-662px -288px;width:60px;height:60px}.hair_bangs_2_peppermint{background-image:url(spritesmith-main-1.png);background-position:-637px -364px;width:90px;height:90px}.customize-option.hair_bangs_2_peppermint{background-image:url(spritesmith-main-1.png);background-position:-662px -379px;width:60px;height:60px}.hair_bangs_2_pgreen{background-image:url(spritesmith-main-1.png);background-position:-637px -455px;width:90px;height:90px}.customize-option.hair_bangs_2_pgreen{background-image:url(spritesmith-main-1.png);background-position:-662px -470px;width:60px;height:60px}.hair_bangs_2_pgreen2{background-image:url(spritesmith-main-1.png);background-position:-637px -546px;width:90px;height:90px}.customize-option.hair_bangs_2_pgreen2{background-image:url(spritesmith-main-1.png);background-position:-662px -561px;width:60px;height:60px}.hair_bangs_2_porange{background-image:url(spritesmith-main-1.png);background-position:0 -637px;width:90px;height:90px}.customize-option.hair_bangs_2_porange{background-image:url(spritesmith-main-1.png);background-position:-25px -652px;width:60px;height:60px}.hair_bangs_2_porange2{background-image:url(spritesmith-main-1.png);background-position:-91px -637px;width:90px;height:90px}.customize-option.hair_bangs_2_porange2{background-image:url(spritesmith-main-1.png);background-position:-116px -652px;width:60px;height:60px}.hair_bangs_2_ppink{background-image:url(spritesmith-main-1.png);background-position:-182px -637px;width:90px;height:90px}.customize-option.hair_bangs_2_ppink{background-image:url(spritesmith-main-1.png);background-position:-207px -652px;width:60px;height:60px}.hair_bangs_2_ppink2{background-image:url(spritesmith-main-1.png);background-position:-273px -637px;width:90px;height:90px}.customize-option.hair_bangs_2_ppink2{background-image:url(spritesmith-main-1.png);background-position:-298px -652px;width:60px;height:60px}.hair_bangs_2_ppurple{background-image:url(spritesmith-main-1.png);background-position:-364px -637px;width:90px;height:90px}.customize-option.hair_bangs_2_ppurple{background-image:url(spritesmith-main-1.png);background-position:-389px -652px;width:60px;height:60px}.hair_bangs_2_ppurple2{background-image:url(spritesmith-main-1.png);background-position:-455px -637px;width:90px;height:90px}.customize-option.hair_bangs_2_ppurple2{background-image:url(spritesmith-main-1.png);background-position:-480px -652px;width:60px;height:60px}.hair_bangs_2_pumpkin{background-image:url(spritesmith-main-1.png);background-position:-546px -637px;width:90px;height:90px}.customize-option.hair_bangs_2_pumpkin{background-image:url(spritesmith-main-1.png);background-position:-571px -652px;width:60px;height:60px}.hair_bangs_2_purple{background-image:url(spritesmith-main-1.png);background-position:-637px -637px;width:90px;height:90px}.customize-option.hair_bangs_2_purple{background-image:url(spritesmith-main-1.png);background-position:-662px -652px;width:60px;height:60px}.hair_bangs_2_pyellow{background-image:url(spritesmith-main-1.png);background-position:-728px 0;width:90px;height:90px}.customize-option.hair_bangs_2_pyellow{background-image:url(spritesmith-main-1.png);background-position:-753px -15px;width:60px;height:60px}.hair_bangs_2_pyellow2{background-image:url(spritesmith-main-1.png);background-position:-728px -91px;width:90px;height:90px}.customize-option.hair_bangs_2_pyellow2{background-image:url(spritesmith-main-1.png);background-position:-753px -106px;width:60px;height:60px}.hair_bangs_2_rainbow{background-image:url(spritesmith-main-1.png);background-position:-728px -182px;width:90px;height:90px}.customize-option.hair_bangs_2_rainbow{background-image:url(spritesmith-main-1.png);background-position:-753px -197px;width:60px;height:60px}.hair_bangs_2_red{background-image:url(spritesmith-main-1.png);background-position:-728px -273px;width:90px;height:90px}.customize-option.hair_bangs_2_red{background-image:url(spritesmith-main-1.png);background-position:-753px -288px;width:60px;height:60px}.hair_bangs_2_snowy{background-image:url(spritesmith-main-1.png);background-position:-728px -364px;width:90px;height:90px}.customize-option.hair_bangs_2_snowy{background-image:url(spritesmith-main-1.png);background-position:-753px -379px;width:60px;height:60px}.hair_bangs_2_white{background-image:url(spritesmith-main-1.png);background-position:-728px -455px;width:90px;height:90px}.customize-option.hair_bangs_2_white{background-image:url(spritesmith-main-1.png);background-position:-753px -470px;width:60px;height:60px}.hair_bangs_2_winternight{background-image:url(spritesmith-main-1.png);background-position:-728px -546px;width:90px;height:90px}.customize-option.hair_bangs_2_winternight{background-image:url(spritesmith-main-1.png);background-position:-753px -561px;width:60px;height:60px}.hair_bangs_2_winterstar{background-image:url(spritesmith-main-1.png);background-position:-728px -637px;width:90px;height:90px}.customize-option.hair_bangs_2_winterstar{background-image:url(spritesmith-main-1.png);background-position:-753px -652px;width:60px;height:60px}.hair_bangs_2_yellow{background-image:url(spritesmith-main-1.png);background-position:0 -728px;width:90px;height:90px}.customize-option.hair_bangs_2_yellow{background-image:url(spritesmith-main-1.png);background-position:-25px -743px;width:60px;height:60px}.hair_bangs_2_zombie{background-image:url(spritesmith-main-1.png);background-position:-91px -728px;width:90px;height:90px}.customize-option.hair_bangs_2_zombie{background-image:url(spritesmith-main-1.png);background-position:-116px -743px;width:60px;height:60px}.hair_bangs_3_TRUred{background-image:url(spritesmith-main-1.png);background-position:-182px -728px;width:90px;height:90px}.customize-option.hair_bangs_3_TRUred{background-image:url(spritesmith-main-1.png);background-position:-207px -743px;width:60px;height:60px}.hair_bangs_3_aurora{background-image:url(spritesmith-main-1.png);background-position:-273px -728px;width:90px;height:90px}.customize-option.hair_bangs_3_aurora{background-image:url(spritesmith-main-1.png);background-position:-298px -743px;width:60px;height:60px}.hair_bangs_3_black{background-image:url(spritesmith-main-1.png);background-position:-364px -728px;width:90px;height:90px}.customize-option.hair_bangs_3_black{background-image:url(spritesmith-main-1.png);background-position:-389px -743px;width:60px;height:60px}.hair_bangs_3_blond{background-image:url(spritesmith-main-1.png);background-position:-455px -728px;width:90px;height:90px}.customize-option.hair_bangs_3_blond{background-image:url(spritesmith-main-1.png);background-position:-480px -743px;width:60px;height:60px}.hair_bangs_3_blue{background-image:url(spritesmith-main-1.png);background-position:-546px -728px;width:90px;height:90px}.customize-option.hair_bangs_3_blue{background-image:url(spritesmith-main-1.png);background-position:-571px -743px;width:60px;height:60px}.hair_bangs_3_brown{background-image:url(spritesmith-main-1.png);background-position:-637px -728px;width:90px;height:90px}.customize-option.hair_bangs_3_brown{background-image:url(spritesmith-main-1.png);background-position:-662px -743px;width:60px;height:60px}.hair_bangs_3_candycane{background-image:url(spritesmith-main-1.png);background-position:-728px -728px;width:90px;height:90px}.customize-option.hair_bangs_3_candycane{background-image:url(spritesmith-main-1.png);background-position:-753px -743px;width:60px;height:60px}.hair_bangs_3_candycorn{background-image:url(spritesmith-main-1.png);background-position:-819px 0;width:90px;height:90px}.customize-option.hair_bangs_3_candycorn{background-image:url(spritesmith-main-1.png);background-position:-844px -15px;width:60px;height:60px}.hair_bangs_3_festive{background-image:url(spritesmith-main-1.png);background-position:-819px -91px;width:90px;height:90px}.customize-option.hair_bangs_3_festive{background-image:url(spritesmith-main-1.png);background-position:-844px -106px;width:60px;height:60px}.hair_bangs_3_frost{background-image:url(spritesmith-main-1.png);background-position:-819px -182px;width:90px;height:90px}.customize-option.hair_bangs_3_frost{background-image:url(spritesmith-main-1.png);background-position:-844px -197px;width:60px;height:60px}.hair_bangs_3_ghostwhite{background-image:url(spritesmith-main-1.png);background-position:-819px -273px;width:90px;height:90px}.customize-option.hair_bangs_3_ghostwhite{background-image:url(spritesmith-main-1.png);background-position:-844px -288px;width:60px;height:60px}.hair_bangs_3_green{background-image:url(spritesmith-main-1.png);background-position:-819px -364px;width:90px;height:90px}.customize-option.hair_bangs_3_green{background-image:url(spritesmith-main-1.png);background-position:-844px -379px;width:60px;height:60px}.hair_bangs_3_halloween{background-image:url(spritesmith-main-1.png);background-position:-819px -455px;width:90px;height:90px}.customize-option.hair_bangs_3_halloween{background-image:url(spritesmith-main-1.png);background-position:-844px -470px;width:60px;height:60px}.hair_bangs_3_holly{background-image:url(spritesmith-main-1.png);background-position:-819px -546px;width:90px;height:90px}.customize-option.hair_bangs_3_holly{background-image:url(spritesmith-main-1.png);background-position:-844px -561px;width:60px;height:60px}.hair_bangs_3_hollygreen{background-image:url(spritesmith-main-1.png);background-position:-819px -637px;width:90px;height:90px}.customize-option.hair_bangs_3_hollygreen{background-image:url(spritesmith-main-1.png);background-position:-844px -652px;width:60px;height:60px}.hair_bangs_3_midnight{background-image:url(spritesmith-main-1.png);background-position:-819px -728px;width:90px;height:90px}.customize-option.hair_bangs_3_midnight{background-image:url(spritesmith-main-1.png);background-position:-844px -743px;width:60px;height:60px}.hair_bangs_3_pblue{background-image:url(spritesmith-main-1.png);background-position:0 -819px;width:90px;height:90px}.customize-option.hair_bangs_3_pblue{background-image:url(spritesmith-main-1.png);background-position:-25px -834px;width:60px;height:60px}.hair_bangs_3_pblue2{background-image:url(spritesmith-main-1.png);background-position:-91px -819px;width:90px;height:90px}.customize-option.hair_bangs_3_pblue2{background-image:url(spritesmith-main-1.png);background-position:-116px -834px;width:60px;height:60px}.hair_bangs_3_peppermint{background-image:url(spritesmith-main-1.png);background-position:-182px -819px;width:90px;height:90px}.customize-option.hair_bangs_3_peppermint{background-image:url(spritesmith-main-1.png);background-position:-207px -834px;width:60px;height:60px}.hair_bangs_3_pgreen{background-image:url(spritesmith-main-1.png);background-position:-273px -819px;width:90px;height:90px}.customize-option.hair_bangs_3_pgreen{background-image:url(spritesmith-main-1.png);background-position:-298px -834px;width:60px;height:60px}.hair_bangs_3_pgreen2{background-image:url(spritesmith-main-1.png);background-position:-364px -819px;width:90px;height:90px}.customize-option.hair_bangs_3_pgreen2{background-image:url(spritesmith-main-1.png);background-position:-389px -834px;width:60px;height:60px}.hair_bangs_3_porange{background-image:url(spritesmith-main-1.png);background-position:-455px -819px;width:90px;height:90px}.customize-option.hair_bangs_3_porange{background-image:url(spritesmith-main-1.png);background-position:-480px -834px;width:60px;height:60px}.hair_bangs_3_porange2{background-image:url(spritesmith-main-1.png);background-position:-546px -819px;width:90px;height:90px}.customize-option.hair_bangs_3_porange2{background-image:url(spritesmith-main-1.png);background-position:-571px -834px;width:60px;height:60px}.hair_bangs_3_ppink{background-image:url(spritesmith-main-1.png);background-position:-637px -819px;width:90px;height:90px}.customize-option.hair_bangs_3_ppink{background-image:url(spritesmith-main-1.png);background-position:-662px -834px;width:60px;height:60px}.hair_bangs_3_ppink2{background-image:url(spritesmith-main-1.png);background-position:-728px -819px;width:90px;height:90px}.customize-option.hair_bangs_3_ppink2{background-image:url(spritesmith-main-1.png);background-position:-753px -834px;width:60px;height:60px}.hair_bangs_3_ppurple{background-image:url(spritesmith-main-1.png);background-position:-819px -819px;width:90px;height:90px}.customize-option.hair_bangs_3_ppurple{background-image:url(spritesmith-main-1.png);background-position:-844px -834px;width:60px;height:60px}.hair_bangs_3_ppurple2{background-image:url(spritesmith-main-1.png);background-position:-910px 0;width:90px;height:90px}.customize-option.hair_bangs_3_ppurple2{background-image:url(spritesmith-main-1.png);background-position:-935px -15px;width:60px;height:60px}.hair_bangs_3_pumpkin{background-image:url(spritesmith-main-1.png);background-position:-910px -91px;width:90px;height:90px}.customize-option.hair_bangs_3_pumpkin{background-image:url(spritesmith-main-1.png);background-position:-935px -106px;width:60px;height:60px}.hair_bangs_3_purple{background-image:url(spritesmith-main-1.png);background-position:-910px -182px;width:90px;height:90px}.customize-option.hair_bangs_3_purple{background-image:url(spritesmith-main-1.png);background-position:-935px -197px;width:60px;height:60px}.hair_bangs_3_pyellow{background-image:url(spritesmith-main-1.png);background-position:-910px -273px;width:90px;height:90px}.customize-option.hair_bangs_3_pyellow{background-image:url(spritesmith-main-1.png);background-position:-935px -288px;width:60px;height:60px}.hair_bangs_3_pyellow2{background-image:url(spritesmith-main-1.png);background-position:-910px -364px;width:90px;height:90px}.customize-option.hair_bangs_3_pyellow2{background-image:url(spritesmith-main-1.png);background-position:-935px -379px;width:60px;height:60px}.hair_bangs_3_rainbow{background-image:url(spritesmith-main-1.png);background-position:-910px -455px;width:90px;height:90px}.customize-option.hair_bangs_3_rainbow{background-image:url(spritesmith-main-1.png);background-position:-935px -470px;width:60px;height:60px}.hair_bangs_3_red{background-image:url(spritesmith-main-1.png);background-position:-910px -546px;width:90px;height:90px}.customize-option.hair_bangs_3_red{background-image:url(spritesmith-main-1.png);background-position:-935px -561px;width:60px;height:60px}.hair_bangs_3_snowy{background-image:url(spritesmith-main-1.png);background-position:-910px -637px;width:90px;height:90px}.customize-option.hair_bangs_3_snowy{background-image:url(spritesmith-main-1.png);background-position:-935px -652px;width:60px;height:60px}.hair_bangs_3_white{background-image:url(spritesmith-main-1.png);background-position:-910px -728px;width:90px;height:90px}.customize-option.hair_bangs_3_white{background-image:url(spritesmith-main-1.png);background-position:-935px -743px;width:60px;height:60px}.hair_bangs_3_winternight{background-image:url(spritesmith-main-1.png);background-position:-910px -819px;width:90px;height:90px}.customize-option.hair_bangs_3_winternight{background-image:url(spritesmith-main-1.png);background-position:-935px -834px;width:60px;height:60px}.hair_bangs_3_winterstar{background-image:url(spritesmith-main-1.png);background-position:0 -910px;width:90px;height:90px}.customize-option.hair_bangs_3_winterstar{background-image:url(spritesmith-main-1.png);background-position:-25px -925px;width:60px;height:60px}.hair_bangs_3_yellow{background-image:url(spritesmith-main-1.png);background-position:-91px -910px;width:90px;height:90px}.customize-option.hair_bangs_3_yellow{background-image:url(spritesmith-main-1.png);background-position:-116px -925px;width:60px;height:60px}.hair_bangs_3_zombie{background-image:url(spritesmith-main-1.png);background-position:-182px -910px;width:90px;height:90px}.customize-option.hair_bangs_3_zombie{background-image:url(spritesmith-main-1.png);background-position:-207px -925px;width:60px;height:60px}.hair_base_10_TRUred{background-image:url(spritesmith-main-1.png);background-position:-273px -910px;width:90px;height:90px}.customize-option.hair_base_10_TRUred{background-image:url(spritesmith-main-1.png);background-position:-298px -925px;width:60px;height:60px}.hair_base_10_aurora{background-image:url(spritesmith-main-1.png);background-position:-364px -910px;width:90px;height:90px}.customize-option.hair_base_10_aurora{background-image:url(spritesmith-main-1.png);background-position:-389px -925px;width:60px;height:60px}.hair_base_10_black{background-image:url(spritesmith-main-1.png);background-position:-455px -910px;width:90px;height:90px}.customize-option.hair_base_10_black{background-image:url(spritesmith-main-1.png);background-position:-480px -925px;width:60px;height:60px}.hair_base_10_blond{background-image:url(spritesmith-main-1.png);background-position:-546px -910px;width:90px;height:90px}.customize-option.hair_base_10_blond{background-image:url(spritesmith-main-1.png);background-position:-571px -925px;width:60px;height:60px}.hair_base_10_blue{background-image:url(spritesmith-main-1.png);background-position:-637px -910px;width:90px;height:90px}.customize-option.hair_base_10_blue{background-image:url(spritesmith-main-1.png);background-position:-662px -925px;width:60px;height:60px}.hair_base_10_brown{background-image:url(spritesmith-main-1.png);background-position:-728px -910px;width:90px;height:90px}.customize-option.hair_base_10_brown{background-image:url(spritesmith-main-1.png);background-position:-753px -925px;width:60px;height:60px}.hair_base_10_candycane{background-image:url(spritesmith-main-1.png);background-position:-819px -910px;width:90px;height:90px}.customize-option.hair_base_10_candycane{background-image:url(spritesmith-main-1.png);background-position:-844px -925px;width:60px;height:60px}.hair_base_10_candycorn{background-image:url(spritesmith-main-1.png);background-position:-910px -910px;width:90px;height:90px}.customize-option.hair_base_10_candycorn{background-image:url(spritesmith-main-1.png);background-position:-935px -925px;width:60px;height:60px}.hair_base_10_festive{background-image:url(spritesmith-main-1.png);background-position:-1001px 0;width:90px;height:90px}.customize-option.hair_base_10_festive{background-image:url(spritesmith-main-1.png);background-position:-1026px -15px;width:60px;height:60px}.hair_base_10_frost{background-image:url(spritesmith-main-1.png);background-position:-1001px -91px;width:90px;height:90px}.customize-option.hair_base_10_frost{background-image:url(spritesmith-main-1.png);background-position:-1026px -106px;width:60px;height:60px}.hair_base_10_ghostwhite{background-image:url(spritesmith-main-1.png);background-position:-1001px -182px;width:90px;height:90px}.customize-option.hair_base_10_ghostwhite{background-image:url(spritesmith-main-1.png);background-position:-1026px -197px;width:60px;height:60px}.hair_base_10_green{background-image:url(spritesmith-main-1.png);background-position:-1001px -273px;width:90px;height:90px}.customize-option.hair_base_10_green{background-image:url(spritesmith-main-1.png);background-position:-1026px -288px;width:60px;height:60px}.hair_base_10_halloween{background-image:url(spritesmith-main-1.png);background-position:-1001px -364px;width:90px;height:90px}.customize-option.hair_base_10_halloween{background-image:url(spritesmith-main-1.png);background-position:-1026px -379px;width:60px;height:60px}.hair_base_10_holly{background-image:url(spritesmith-main-1.png);background-position:-1001px -455px;width:90px;height:90px}.customize-option.hair_base_10_holly{background-image:url(spritesmith-main-1.png);background-position:-1026px -470px;width:60px;height:60px}.hair_base_10_hollygreen{background-image:url(spritesmith-main-1.png);background-position:-1001px -546px;width:90px;height:90px}.customize-option.hair_base_10_hollygreen{background-image:url(spritesmith-main-1.png);background-position:-1026px -561px;width:60px;height:60px}.hair_base_10_midnight{background-image:url(spritesmith-main-1.png);background-position:-1001px -637px;width:90px;height:90px}.customize-option.hair_base_10_midnight{background-image:url(spritesmith-main-1.png);background-position:-1026px -652px;width:60px;height:60px}.hair_base_10_pblue{background-image:url(spritesmith-main-1.png);background-position:-1001px -728px;width:90px;height:90px}.customize-option.hair_base_10_pblue{background-image:url(spritesmith-main-1.png);background-position:-1026px -743px;width:60px;height:60px}.hair_base_10_pblue2{background-image:url(spritesmith-main-1.png);background-position:-1001px -819px;width:90px;height:90px}.customize-option.hair_base_10_pblue2{background-image:url(spritesmith-main-1.png);background-position:-1026px -834px;width:60px;height:60px}.hair_base_10_peppermint{background-image:url(spritesmith-main-1.png);background-position:-1001px -910px;width:90px;height:90px}.customize-option.hair_base_10_peppermint{background-image:url(spritesmith-main-1.png);background-position:-1026px -925px;width:60px;height:60px}.hair_base_10_pgreen{background-image:url(spritesmith-main-1.png);background-position:0 -1001px;width:90px;height:90px}.customize-option.hair_base_10_pgreen{background-image:url(spritesmith-main-1.png);background-position:-25px -1016px;width:60px;height:60px}.hair_base_10_pgreen2{background-image:url(spritesmith-main-1.png);background-position:-91px -1001px;width:90px;height:90px}.customize-option.hair_base_10_pgreen2{background-image:url(spritesmith-main-1.png);background-position:-116px -1016px;width:60px;height:60px}.hair_base_10_porange{background-image:url(spritesmith-main-1.png);background-position:-182px -1001px;width:90px;height:90px}.customize-option.hair_base_10_porange{background-image:url(spritesmith-main-1.png);background-position:-207px -1016px;width:60px;height:60px}.hair_base_10_porange2{background-image:url(spritesmith-main-1.png);background-position:-273px -1001px;width:90px;height:90px}.customize-option.hair_base_10_porange2{background-image:url(spritesmith-main-1.png);background-position:-298px -1016px;width:60px;height:60px}.hair_base_10_ppink{background-image:url(spritesmith-main-1.png);background-position:-364px -1001px;width:90px;height:90px}.customize-option.hair_base_10_ppink{background-image:url(spritesmith-main-1.png);background-position:-389px -1016px;width:60px;height:60px}.hair_base_10_ppink2{background-image:url(spritesmith-main-1.png);background-position:-455px -1001px;width:90px;height:90px}.customize-option.hair_base_10_ppink2{background-image:url(spritesmith-main-1.png);background-position:-480px -1016px;width:60px;height:60px}.hair_base_10_ppurple{background-image:url(spritesmith-main-1.png);background-position:-546px -1001px;width:90px;height:90px}.customize-option.hair_base_10_ppurple{background-image:url(spritesmith-main-1.png);background-position:-571px -1016px;width:60px;height:60px}.hair_base_10_ppurple2{background-image:url(spritesmith-main-1.png);background-position:-637px -1001px;width:90px;height:90px}.customize-option.hair_base_10_ppurple2{background-image:url(spritesmith-main-1.png);background-position:-662px -1016px;width:60px;height:60px}.hair_base_10_pumpkin{background-image:url(spritesmith-main-1.png);background-position:-728px -1001px;width:90px;height:90px}.customize-option.hair_base_10_pumpkin{background-image:url(spritesmith-main-1.png);background-position:-753px -1016px;width:60px;height:60px}.hair_base_10_purple{background-image:url(spritesmith-main-1.png);background-position:-819px -1001px;width:90px;height:90px}.customize-option.hair_base_10_purple{background-image:url(spritesmith-main-1.png);background-position:-844px -1016px;width:60px;height:60px}.hair_base_10_pyellow{background-image:url(spritesmith-main-1.png);background-position:-910px -1001px;width:90px;height:90px}.customize-option.hair_base_10_pyellow{background-image:url(spritesmith-main-1.png);background-position:-935px -1016px;width:60px;height:60px}.hair_base_10_pyellow2{background-image:url(spritesmith-main-1.png);background-position:-1001px -1001px;width:90px;height:90px}.customize-option.hair_base_10_pyellow2{background-image:url(spritesmith-main-1.png);background-position:-1026px -1016px;width:60px;height:60px}.hair_base_10_rainbow{background-image:url(spritesmith-main-1.png);background-position:-1092px 0;width:90px;height:90px}.customize-option.hair_base_10_rainbow{background-image:url(spritesmith-main-1.png);background-position:-1117px -15px;width:60px;height:60px}.hair_base_10_red{background-image:url(spritesmith-main-1.png);background-position:-1092px -91px;width:90px;height:90px}.customize-option.hair_base_10_red{background-image:url(spritesmith-main-1.png);background-position:-1117px -106px;width:60px;height:60px}.hair_base_10_snowy{background-image:url(spritesmith-main-1.png);background-position:-1092px -182px;width:90px;height:90px}.customize-option.hair_base_10_snowy{background-image:url(spritesmith-main-1.png);background-position:-1117px -197px;width:60px;height:60px}.hair_base_10_white{background-image:url(spritesmith-main-1.png);background-position:-1092px -273px;width:90px;height:90px}.customize-option.hair_base_10_white{background-image:url(spritesmith-main-1.png);background-position:-1117px -288px;width:60px;height:60px}.hair_base_10_winternight{background-image:url(spritesmith-main-1.png);background-position:-1092px -364px;width:90px;height:90px}.customize-option.hair_base_10_winternight{background-image:url(spritesmith-main-1.png);background-position:-1117px -379px;width:60px;height:60px}.hair_base_10_winterstar{background-image:url(spritesmith-main-1.png);background-position:-1092px -455px;width:90px;height:90px}.customize-option.hair_base_10_winterstar{background-image:url(spritesmith-main-1.png);background-position:-1117px -470px;width:60px;height:60px}.hair_base_10_yellow{background-image:url(spritesmith-main-1.png);background-position:-1092px -546px;width:90px;height:90px}.customize-option.hair_base_10_yellow{background-image:url(spritesmith-main-1.png);background-position:-1117px -561px;width:60px;height:60px}.hair_base_10_zombie{background-image:url(spritesmith-main-1.png);background-position:-1092px -637px;width:90px;height:90px}.customize-option.hair_base_10_zombie{background-image:url(spritesmith-main-1.png);background-position:-1117px -652px;width:60px;height:60px}.hair_base_11_TRUred{background-image:url(spritesmith-main-1.png);background-position:-1092px -728px;width:90px;height:90px}.customize-option.hair_base_11_TRUred{background-image:url(spritesmith-main-1.png);background-position:-1117px -743px;width:60px;height:60px}.hair_base_11_aurora{background-image:url(spritesmith-main-1.png);background-position:-1092px -819px;width:90px;height:90px}.customize-option.hair_base_11_aurora{background-image:url(spritesmith-main-1.png);background-position:-1117px -834px;width:60px;height:60px}.hair_base_11_black{background-image:url(spritesmith-main-1.png);background-position:-1092px -910px;width:90px;height:90px}.customize-option.hair_base_11_black{background-image:url(spritesmith-main-1.png);background-position:-1117px -925px;width:60px;height:60px}.hair_base_11_blond{background-image:url(spritesmith-main-1.png);background-position:-1092px -1001px;width:90px;height:90px}.customize-option.hair_base_11_blond{background-image:url(spritesmith-main-1.png);background-position:-1117px -1016px;width:60px;height:60px}.hair_base_11_blue{background-image:url(spritesmith-main-1.png);background-position:0 -1092px;width:90px;height:90px}.customize-option.hair_base_11_blue{background-image:url(spritesmith-main-1.png);background-position:-25px -1107px;width:60px;height:60px}.hair_base_11_brown{background-image:url(spritesmith-main-1.png);background-position:-91px -1092px;width:90px;height:90px}.customize-option.hair_base_11_brown{background-image:url(spritesmith-main-1.png);background-position:-116px -1107px;width:60px;height:60px}.hair_base_11_candycane{background-image:url(spritesmith-main-1.png);background-position:-182px -1092px;width:90px;height:90px}.customize-option.hair_base_11_candycane{background-image:url(spritesmith-main-1.png);background-position:-207px -1107px;width:60px;height:60px}.hair_base_11_candycorn{background-image:url(spritesmith-main-1.png);background-position:-273px -1092px;width:90px;height:90px}.customize-option.hair_base_11_candycorn{background-image:url(spritesmith-main-1.png);background-position:-298px -1107px;width:60px;height:60px}.hair_base_11_festive{background-image:url(spritesmith-main-1.png);background-position:-364px -1092px;width:90px;height:90px}.customize-option.hair_base_11_festive{background-image:url(spritesmith-main-1.png);background-position:-389px -1107px;width:60px;height:60px}.hair_base_11_frost{background-image:url(spritesmith-main-1.png);background-position:-455px -1092px;width:90px;height:90px}.customize-option.hair_base_11_frost{background-image:url(spritesmith-main-1.png);background-position:-480px -1107px;width:60px;height:60px}.hair_base_11_ghostwhite{background-image:url(spritesmith-main-1.png);background-position:-546px -1092px;width:90px;height:90px}.customize-option.hair_base_11_ghostwhite{background-image:url(spritesmith-main-1.png);background-position:-571px -1107px;width:60px;height:60px}.hair_base_11_green{background-image:url(spritesmith-main-1.png);background-position:-637px -1092px;width:90px;height:90px}.customize-option.hair_base_11_green{background-image:url(spritesmith-main-1.png);background-position:-662px -1107px;width:60px;height:60px}.hair_base_11_halloween{background-image:url(spritesmith-main-1.png);background-position:0 0;width:90px;height:90px}.customize-option.hair_base_11_halloween{background-image:url(spritesmith-main-1.png);background-position:-25px -15px;width:60px;height:60px}.hair_base_11_holly{background-image:url(spritesmith-main-1.png);background-position:-819px -1092px;width:90px;height:90px}.customize-option.hair_base_11_holly{background-image:url(spritesmith-main-1.png);background-position:-844px -1107px;width:60px;height:60px}.hair_base_11_hollygreen{background-image:url(spritesmith-main-1.png);background-position:-910px -1092px;width:90px;height:90px}.customize-option.hair_base_11_hollygreen{background-image:url(spritesmith-main-1.png);background-position:-935px -1107px;width:60px;height:60px}.hair_base_11_midnight{background-image:url(spritesmith-main-1.png);background-position:-1001px -1092px;width:90px;height:90px}.customize-option.hair_base_11_midnight{background-image:url(spritesmith-main-1.png);background-position:-1026px -1107px;width:60px;height:60px}.hair_base_11_pblue{background-image:url(spritesmith-main-1.png);background-position:-1092px -1092px;width:90px;height:90px}.customize-option.hair_base_11_pblue{background-image:url(spritesmith-main-1.png);background-position:-1117px -1107px;width:60px;height:60px}.hair_base_11_pblue2{background-image:url(spritesmith-main-1.png);background-position:-1183px 0;width:90px;height:90px}.customize-option.hair_base_11_pblue2{background-image:url(spritesmith-main-1.png);background-position:-1208px -15px;width:60px;height:60px}.hair_base_11_peppermint{background-image:url(spritesmith-main-1.png);background-position:-1183px -91px;width:90px;height:90px}.customize-option.hair_base_11_peppermint{background-image:url(spritesmith-main-1.png);background-position:-1208px -106px;width:60px;height:60px}.hair_base_11_pgreen{background-image:url(spritesmith-main-1.png);background-position:-1183px -182px;width:90px;height:90px}.customize-option.hair_base_11_pgreen{background-image:url(spritesmith-main-1.png);background-position:-1208px -197px;width:60px;height:60px}.hair_base_11_pgreen2{background-image:url(spritesmith-main-1.png);background-position:-1183px -273px;width:90px;height:90px}.customize-option.hair_base_11_pgreen2{background-image:url(spritesmith-main-1.png);background-position:-1208px -288px;width:60px;height:60px}.hair_base_11_porange{background-image:url(spritesmith-main-1.png);background-position:-1183px -364px;width:90px;height:90px}.customize-option.hair_base_11_porange{background-image:url(spritesmith-main-1.png);background-position:-1208px -379px;width:60px;height:60px}.hair_base_11_porange2{background-image:url(spritesmith-main-1.png);background-position:-1183px -455px;width:90px;height:90px}.customize-option.hair_base_11_porange2{background-image:url(spritesmith-main-1.png);background-position:-1208px -470px;width:60px;height:60px}.hair_base_11_ppink{background-image:url(spritesmith-main-1.png);background-position:-1183px -546px;width:90px;height:90px}.customize-option.hair_base_11_ppink{background-image:url(spritesmith-main-1.png);background-position:-1208px -561px;width:60px;height:60px}.hair_base_11_ppink2{background-image:url(spritesmith-main-1.png);background-position:-1183px -637px;width:90px;height:90px}.customize-option.hair_base_11_ppink2{background-image:url(spritesmith-main-1.png);background-position:-1208px -652px;width:60px;height:60px}.hair_base_11_ppurple{background-image:url(spritesmith-main-1.png);background-position:-1183px -728px;width:90px;height:90px}.customize-option.hair_base_11_ppurple{background-image:url(spritesmith-main-1.png);background-position:-1208px -743px;width:60px;height:60px}.hair_base_11_ppurple2{background-image:url(spritesmith-main-1.png);background-position:-1183px -819px;width:90px;height:90px}.customize-option.hair_base_11_ppurple2{background-image:url(spritesmith-main-1.png);background-position:-1208px -834px;width:60px;height:60px}.hair_base_11_pumpkin{background-image:url(spritesmith-main-1.png);background-position:-1183px -910px;width:90px;height:90px}.customize-option.hair_base_11_pumpkin{background-image:url(spritesmith-main-1.png);background-position:-1208px -925px;width:60px;height:60px}.hair_base_11_purple{background-image:url(spritesmith-main-1.png);background-position:-1183px -1001px;width:90px;height:90px}.customize-option.hair_base_11_purple{background-image:url(spritesmith-main-1.png);background-position:-1208px -1016px;width:60px;height:60px}.hair_base_11_pyellow{background-image:url(spritesmith-main-1.png);background-position:-1183px -1092px;width:90px;height:90px}.customize-option.hair_base_11_pyellow{background-image:url(spritesmith-main-1.png);background-position:-1208px -1107px;width:60px;height:60px}.hair_base_11_pyellow2{background-image:url(spritesmith-main-1.png);background-position:0 -1183px;width:90px;height:90px}.customize-option.hair_base_11_pyellow2{background-image:url(spritesmith-main-1.png);background-position:-25px -1198px;width:60px;height:60px}.hair_base_11_rainbow{background-image:url(spritesmith-main-1.png);background-position:-91px -1183px;width:90px;height:90px}.customize-option.hair_base_11_rainbow{background-image:url(spritesmith-main-1.png);background-position:-116px -1198px;width:60px;height:60px}.hair_base_11_red{background-image:url(spritesmith-main-1.png);background-position:-182px -1183px;width:90px;height:90px}.customize-option.hair_base_11_red{background-image:url(spritesmith-main-1.png);background-position:-207px -1198px;width:60px;height:60px}.hair_base_11_snowy{background-image:url(spritesmith-main-1.png);background-position:-273px -1183px;width:90px;height:90px}.customize-option.hair_base_11_snowy{background-image:url(spritesmith-main-1.png);background-position:-298px -1198px;width:60px;height:60px}.hair_base_11_white{background-image:url(spritesmith-main-1.png);background-position:-364px -1183px;width:90px;height:90px}.customize-option.hair_base_11_white{background-image:url(spritesmith-main-1.png);background-position:-389px -1198px;width:60px;height:60px}.hair_base_11_winternight{background-image:url(spritesmith-main-1.png);background-position:-455px -1183px;width:90px;height:90px}.customize-option.hair_base_11_winternight{background-image:url(spritesmith-main-1.png);background-position:-480px -1198px;width:60px;height:60px}.hair_base_11_winterstar{background-image:url(spritesmith-main-1.png);background-position:-546px -1183px;width:90px;height:90px}.customize-option.hair_base_11_winterstar{background-image:url(spritesmith-main-1.png);background-position:-571px -1198px;width:60px;height:60px}.hair_base_11_yellow{background-image:url(spritesmith-main-1.png);background-position:-637px -1183px;width:90px;height:90px}.customize-option.hair_base_11_yellow{background-image:url(spritesmith-main-1.png);background-position:-662px -1198px;width:60px;height:60px}.hair_base_11_zombie{background-image:url(spritesmith-main-1.png);background-position:-728px -1183px;width:90px;height:90px}.customize-option.hair_base_11_zombie{background-image:url(spritesmith-main-1.png);background-position:-753px -1198px;width:60px;height:60px}.hair_base_12_TRUred{background-image:url(spritesmith-main-1.png);background-position:-819px -1183px;width:90px;height:90px}.customize-option.hair_base_12_TRUred{background-image:url(spritesmith-main-1.png);background-position:-844px -1198px;width:60px;height:60px}.hair_base_12_aurora{background-image:url(spritesmith-main-1.png);background-position:-910px -1183px;width:90px;height:90px}.customize-option.hair_base_12_aurora{background-image:url(spritesmith-main-1.png);background-position:-935px -1198px;width:60px;height:60px}.hair_base_12_black{background-image:url(spritesmith-main-1.png);background-position:-1001px -1183px;width:90px;height:90px}.customize-option.hair_base_12_black{background-image:url(spritesmith-main-1.png);background-position:-1026px -1198px;width:60px;height:60px}.hair_base_12_blond{background-image:url(spritesmith-main-1.png);background-position:-1092px -1183px;width:90px;height:90px}.customize-option.hair_base_12_blond{background-image:url(spritesmith-main-1.png);background-position:-1117px -1198px;width:60px;height:60px}.hair_base_12_blue{background-image:url(spritesmith-main-1.png);background-position:-1183px -1183px;width:90px;height:90px}.customize-option.hair_base_12_blue{background-image:url(spritesmith-main-1.png);background-position:-1208px -1198px;width:60px;height:60px}.hair_base_12_brown{background-image:url(spritesmith-main-1.png);background-position:-1274px 0;width:90px;height:90px}.customize-option.hair_base_12_brown{background-image:url(spritesmith-main-1.png);background-position:-1299px -15px;width:60px;height:60px}.hair_base_12_candycane{background-image:url(spritesmith-main-1.png);background-position:-1274px -91px;width:90px;height:90px}.customize-option.hair_base_12_candycane{background-image:url(spritesmith-main-1.png);background-position:-1299px -106px;width:60px;height:60px}.hair_base_12_candycorn{background-image:url(spritesmith-main-1.png);background-position:-1274px -182px;width:90px;height:90px}.customize-option.hair_base_12_candycorn{background-image:url(spritesmith-main-1.png);background-position:-1299px -197px;width:60px;height:60px}.hair_base_12_festive{background-image:url(spritesmith-main-1.png);background-position:-1274px -273px;width:90px;height:90px}.customize-option.hair_base_12_festive{background-image:url(spritesmith-main-1.png);background-position:-1299px -288px;width:60px;height:60px}.hair_base_12_frost{background-image:url(spritesmith-main-1.png);background-position:-1274px -364px;width:90px;height:90px}.customize-option.hair_base_12_frost{background-image:url(spritesmith-main-1.png);background-position:-1299px -379px;width:60px;height:60px}.hair_base_12_ghostwhite{background-image:url(spritesmith-main-1.png);background-position:-1274px -455px;width:90px;height:90px}.customize-option.hair_base_12_ghostwhite{background-image:url(spritesmith-main-1.png);background-position:-1299px -470px;width:60px;height:60px}.hair_base_12_green{background-image:url(spritesmith-main-1.png);background-position:-1274px -546px;width:90px;height:90px}.customize-option.hair_base_12_green{background-image:url(spritesmith-main-1.png);background-position:-1299px -561px;width:60px;height:60px}.hair_base_12_halloween{background-image:url(spritesmith-main-1.png);background-position:-1274px -637px;width:90px;height:90px}.customize-option.hair_base_12_halloween{background-image:url(spritesmith-main-1.png);background-position:-1299px -652px;width:60px;height:60px}.hair_base_12_holly{background-image:url(spritesmith-main-1.png);background-position:-1274px -728px;width:90px;height:90px}.customize-option.hair_base_12_holly{background-image:url(spritesmith-main-1.png);background-position:-1299px -743px;width:60px;height:60px}.hair_base_12_hollygreen{background-image:url(spritesmith-main-1.png);background-position:-1274px -819px;width:90px;height:90px}.customize-option.hair_base_12_hollygreen{background-image:url(spritesmith-main-1.png);background-position:-1299px -834px;width:60px;height:60px}.hair_base_12_midnight{background-image:url(spritesmith-main-1.png);background-position:-1274px -910px;width:90px;height:90px}.customize-option.hair_base_12_midnight{background-image:url(spritesmith-main-1.png);background-position:-1299px -925px;width:60px;height:60px}.hair_base_12_pblue{background-image:url(spritesmith-main-1.png);background-position:-1274px -1001px;width:90px;height:90px}.customize-option.hair_base_12_pblue{background-image:url(spritesmith-main-1.png);background-position:-1299px -1016px;width:60px;height:60px}.hair_base_12_pblue2{background-image:url(spritesmith-main-1.png);background-position:-1274px -1092px;width:90px;height:90px}.customize-option.hair_base_12_pblue2{background-image:url(spritesmith-main-1.png);background-position:-1299px -1107px;width:60px;height:60px}.hair_base_12_peppermint{background-image:url(spritesmith-main-1.png);background-position:-1274px -1183px;width:90px;height:90px}.customize-option.hair_base_12_peppermint{background-image:url(spritesmith-main-1.png);background-position:-1299px -1198px;width:60px;height:60px}.hair_base_12_pgreen{background-image:url(spritesmith-main-1.png);background-position:0 -1274px;width:90px;height:90px}.customize-option.hair_base_12_pgreen{background-image:url(spritesmith-main-1.png);background-position:-25px -1289px;width:60px;height:60px}.hair_base_12_pgreen2{background-image:url(spritesmith-main-1.png);background-position:-91px -1274px;width:90px;height:90px}.customize-option.hair_base_12_pgreen2{background-image:url(spritesmith-main-1.png);background-position:-116px -1289px;width:60px;height:60px}.hair_base_12_porange{background-image:url(spritesmith-main-1.png);background-position:-182px -1274px;width:90px;height:90px}.customize-option.hair_base_12_porange{background-image:url(spritesmith-main-1.png);background-position:-207px -1289px;width:60px;height:60px}.hair_base_12_porange2{background-image:url(spritesmith-main-1.png);background-position:-273px -1274px;width:90px;height:90px}.customize-option.hair_base_12_porange2{background-image:url(spritesmith-main-1.png);background-position:-298px -1289px;width:60px;height:60px}.hair_base_12_ppink{background-image:url(spritesmith-main-1.png);background-position:-364px -1274px;width:90px;height:90px}.customize-option.hair_base_12_ppink{background-image:url(spritesmith-main-1.png);background-position:-389px -1289px;width:60px;height:60px}.hair_base_12_ppink2{background-image:url(spritesmith-main-1.png);background-position:-455px -1274px;width:90px;height:90px}.customize-option.hair_base_12_ppink2{background-image:url(spritesmith-main-1.png);background-position:-480px -1289px;width:60px;height:60px}.hair_base_12_ppurple{background-image:url(spritesmith-main-1.png);background-position:-546px -1274px;width:90px;height:90px}.customize-option.hair_base_12_ppurple{background-image:url(spritesmith-main-1.png);background-position:-571px -1289px;width:60px;height:60px}.hair_base_12_ppurple2{background-image:url(spritesmith-main-1.png);background-position:-637px -1274px;width:90px;height:90px}.customize-option.hair_base_12_ppurple2{background-image:url(spritesmith-main-1.png);background-position:-662px -1289px;width:60px;height:60px}.hair_base_12_pumpkin{background-image:url(spritesmith-main-1.png);background-position:-728px -1274px;width:90px;height:90px}.customize-option.hair_base_12_pumpkin{background-image:url(spritesmith-main-1.png);background-position:-753px -1289px;width:60px;height:60px}.hair_base_12_purple{background-image:url(spritesmith-main-1.png);background-position:-819px -1274px;width:90px;height:90px}.customize-option.hair_base_12_purple{background-image:url(spritesmith-main-1.png);background-position:-844px -1289px;width:60px;height:60px}.hair_base_12_pyellow{background-image:url(spritesmith-main-1.png);background-position:-910px -1274px;width:90px;height:90px}.customize-option.hair_base_12_pyellow{background-image:url(spritesmith-main-1.png);background-position:-935px -1289px;width:60px;height:60px}.hair_base_12_pyellow2{background-image:url(spritesmith-main-1.png);background-position:-1001px -1274px;width:90px;height:90px}.customize-option.hair_base_12_pyellow2{background-image:url(spritesmith-main-1.png);background-position:-1026px -1289px;width:60px;height:60px}.hair_base_12_rainbow{background-image:url(spritesmith-main-1.png);background-position:-1092px -1274px;width:90px;height:90px}.customize-option.hair_base_12_rainbow{background-image:url(spritesmith-main-1.png);background-position:-1117px -1289px;width:60px;height:60px}.hair_base_12_red{background-image:url(spritesmith-main-1.png);background-position:-1183px -1274px;width:90px;height:90px}.customize-option.hair_base_12_red{background-image:url(spritesmith-main-1.png);background-position:-1208px -1289px;width:60px;height:60px}.hair_base_12_snowy{background-image:url(spritesmith-main-1.png);background-position:-1274px -1274px;width:90px;height:90px}.customize-option.hair_base_12_snowy{background-image:url(spritesmith-main-1.png);background-position:-1299px -1289px;width:60px;height:60px}.hair_base_12_white{background-image:url(spritesmith-main-1.png);background-position:-1365px 0;width:90px;height:90px}.customize-option.hair_base_12_white{background-image:url(spritesmith-main-1.png);background-position:-1390px -15px;width:60px;height:60px}.hair_base_12_winternight{background-image:url(spritesmith-main-1.png);background-position:-1365px -91px;width:90px;height:90px}.customize-option.hair_base_12_winternight{background-image:url(spritesmith-main-1.png);background-position:-1390px -106px;width:60px;height:60px}.hair_base_12_winterstar{background-image:url(spritesmith-main-1.png);background-position:-1365px -182px;width:90px;height:90px}.customize-option.hair_base_12_winterstar{background-image:url(spritesmith-main-1.png);background-position:-1390px -197px;width:60px;height:60px}.hair_base_12_yellow{background-image:url(spritesmith-main-1.png);background-position:-1365px -273px;width:90px;height:90px}.customize-option.hair_base_12_yellow{background-image:url(spritesmith-main-1.png);background-position:-1390px -288px;width:60px;height:60px}.hair_base_12_zombie{background-image:url(spritesmith-main-1.png);background-position:-1365px -364px;width:90px;height:90px}.customize-option.hair_base_12_zombie{background-image:url(spritesmith-main-1.png);background-position:-1390px -379px;width:60px;height:60px}.hair_base_13_TRUred{background-image:url(spritesmith-main-1.png);background-position:-1365px -455px;width:90px;height:90px}.customize-option.hair_base_13_TRUred{background-image:url(spritesmith-main-1.png);background-position:-1390px -470px;width:60px;height:60px}.hair_base_13_aurora{background-image:url(spritesmith-main-1.png);background-position:-1365px -546px;width:90px;height:90px}.customize-option.hair_base_13_aurora{background-image:url(spritesmith-main-1.png);background-position:-1390px -561px;width:60px;height:60px}.hair_base_13_black{background-image:url(spritesmith-main-1.png);background-position:-1365px -637px;width:90px;height:90px}.customize-option.hair_base_13_black{background-image:url(spritesmith-main-1.png);background-position:-1390px -652px;width:60px;height:60px}.hair_base_13_blond{background-image:url(spritesmith-main-1.png);background-position:-1365px -728px;width:90px;height:90px}.customize-option.hair_base_13_blond{background-image:url(spritesmith-main-1.png);background-position:-1390px -743px;width:60px;height:60px}.hair_base_13_blue{background-image:url(spritesmith-main-1.png);background-position:-1365px -819px;width:90px;height:90px}.customize-option.hair_base_13_blue{background-image:url(spritesmith-main-1.png);background-position:-1390px -834px;width:60px;height:60px}.hair_base_13_brown{background-image:url(spritesmith-main-1.png);background-position:-1365px -910px;width:90px;height:90px}.customize-option.hair_base_13_brown{background-image:url(spritesmith-main-1.png);background-position:-1390px -925px;width:60px;height:60px}.hair_base_13_candycane{background-image:url(spritesmith-main-1.png);background-position:-1365px -1001px;width:90px;height:90px}.customize-option.hair_base_13_candycane{background-image:url(spritesmith-main-1.png);background-position:-1390px -1016px;width:60px;height:60px}.hair_base_13_candycorn{background-image:url(spritesmith-main-1.png);background-position:-1365px -1092px;width:90px;height:90px}.customize-option.hair_base_13_candycorn{background-image:url(spritesmith-main-1.png);background-position:-1390px -1107px;width:60px;height:60px}.hair_base_13_festive{background-image:url(spritesmith-main-1.png);background-position:-1365px -1183px;width:90px;height:90px}.customize-option.hair_base_13_festive{background-image:url(spritesmith-main-1.png);background-position:-1390px -1198px;width:60px;height:60px}.hair_base_13_frost{background-image:url(spritesmith-main-1.png);background-position:-1365px -1274px;width:90px;height:90px}.customize-option.hair_base_13_frost{background-image:url(spritesmith-main-1.png);background-position:-1390px -1289px;width:60px;height:60px}.hair_base_13_ghostwhite{background-image:url(spritesmith-main-1.png);background-position:0 -1365px;width:90px;height:90px}.customize-option.hair_base_13_ghostwhite{background-image:url(spritesmith-main-1.png);background-position:-25px -1380px;width:60px;height:60px}.hair_base_13_green{background-image:url(spritesmith-main-1.png);background-position:-91px -1365px;width:90px;height:90px}.customize-option.hair_base_13_green{background-image:url(spritesmith-main-1.png);background-position:-116px -1380px;width:60px;height:60px}.hair_base_13_halloween{background-image:url(spritesmith-main-1.png);background-position:-182px -1365px;width:90px;height:90px}.customize-option.hair_base_13_halloween{background-image:url(spritesmith-main-1.png);background-position:-207px -1380px;width:60px;height:60px}.hair_base_13_holly{background-image:url(spritesmith-main-1.png);background-position:-273px -1365px;width:90px;height:90px}.customize-option.hair_base_13_holly{background-image:url(spritesmith-main-1.png);background-position:-298px -1380px;width:60px;height:60px}.hair_base_13_hollygreen{background-image:url(spritesmith-main-1.png);background-position:-364px -1365px;width:90px;height:90px}.customize-option.hair_base_13_hollygreen{background-image:url(spritesmith-main-1.png);background-position:-389px -1380px;width:60px;height:60px}.hair_base_13_midnight{background-image:url(spritesmith-main-1.png);background-position:-455px -1365px;width:90px;height:90px}.customize-option.hair_base_13_midnight{background-image:url(spritesmith-main-1.png);background-position:-480px -1380px;width:60px;height:60px}.hair_base_13_pblue{background-image:url(spritesmith-main-1.png);background-position:-546px -1365px;width:90px;height:90px}.customize-option.hair_base_13_pblue{background-image:url(spritesmith-main-1.png);background-position:-571px -1380px;width:60px;height:60px}.hair_base_13_pblue2{background-image:url(spritesmith-main-1.png);background-position:-637px -1365px;width:90px;height:90px}.customize-option.hair_base_13_pblue2{background-image:url(spritesmith-main-1.png);background-position:-662px -1380px;width:60px;height:60px}.hair_base_13_peppermint{background-image:url(spritesmith-main-1.png);background-position:-728px -1365px;width:90px;height:90px}.customize-option.hair_base_13_peppermint{background-image:url(spritesmith-main-1.png);background-position:-753px -1380px;width:60px;height:60px}.hair_base_13_pgreen{background-image:url(spritesmith-main-1.png);background-position:-819px -1365px;width:90px;height:90px}.customize-option.hair_base_13_pgreen{background-image:url(spritesmith-main-1.png);background-position:-844px -1380px;width:60px;height:60px}.hair_base_13_pgreen2{background-image:url(spritesmith-main-1.png);background-position:-910px -1365px;width:90px;height:90px}.customize-option.hair_base_13_pgreen2{background-image:url(spritesmith-main-1.png);background-position:-935px -1380px;width:60px;height:60px}.hair_base_13_porange{background-image:url(spritesmith-main-1.png);background-position:-1001px -1365px;width:90px;height:90px}.customize-option.hair_base_13_porange{background-image:url(spritesmith-main-1.png);background-position:-1026px -1380px;width:60px;height:60px}.hair_base_13_porange2{background-image:url(spritesmith-main-1.png);background-position:-1092px -1365px;width:90px;height:90px}.customize-option.hair_base_13_porange2{background-image:url(spritesmith-main-1.png);background-position:-1117px -1380px;width:60px;height:60px}.hair_base_13_ppink{background-image:url(spritesmith-main-1.png);background-position:-1183px -1365px;width:90px;height:90px}.customize-option.hair_base_13_ppink{background-image:url(spritesmith-main-1.png);background-position:-1208px -1380px;width:60px;height:60px}.hair_base_13_ppink2{background-image:url(spritesmith-main-1.png);background-position:-1274px -1365px;width:90px;height:90px}.customize-option.hair_base_13_ppink2{background-image:url(spritesmith-main-1.png);background-position:-1299px -1380px;width:60px;height:60px}.hair_base_13_ppurple{background-image:url(spritesmith-main-1.png);background-position:-1365px -1365px;width:90px;height:90px}.customize-option.hair_base_13_ppurple{background-image:url(spritesmith-main-1.png);background-position:-1390px -1380px;width:60px;height:60px}.hair_base_13_ppurple2{background-image:url(spritesmith-main-1.png);background-position:-1456px 0;width:90px;height:90px}.customize-option.hair_base_13_ppurple2{background-image:url(spritesmith-main-1.png);background-position:-1481px -15px;width:60px;height:60px}.hair_base_13_pumpkin{background-image:url(spritesmith-main-1.png);background-position:-1456px -91px;width:90px;height:90px}.customize-option.hair_base_13_pumpkin{background-image:url(spritesmith-main-1.png);background-position:-1481px -106px;width:60px;height:60px}.hair_base_13_purple{background-image:url(spritesmith-main-1.png);background-position:-1456px -182px;width:90px;height:90px}.customize-option.hair_base_13_purple{background-image:url(spritesmith-main-1.png);background-position:-1481px -197px;width:60px;height:60px}.hair_base_13_pyellow{background-image:url(spritesmith-main-1.png);background-position:-1456px -273px;width:90px;height:90px}.customize-option.hair_base_13_pyellow{background-image:url(spritesmith-main-1.png);background-position:-1481px -288px;width:60px;height:60px}.hair_base_13_pyellow2{background-image:url(spritesmith-main-1.png);background-position:-1456px -364px;width:90px;height:90px}.customize-option.hair_base_13_pyellow2{background-image:url(spritesmith-main-1.png);background-position:-1481px -379px;width:60px;height:60px}.hair_base_13_rainbow{background-image:url(spritesmith-main-1.png);background-position:-1456px -455px;width:90px;height:90px}.customize-option.hair_base_13_rainbow{background-image:url(spritesmith-main-1.png);background-position:-1481px -470px;width:60px;height:60px}.hair_base_13_red{background-image:url(spritesmith-main-1.png);background-position:-1456px -546px;width:90px;height:90px}.customize-option.hair_base_13_red{background-image:url(spritesmith-main-1.png);background-position:-1481px -561px;width:60px;height:60px}.hair_base_13_snowy{background-image:url(spritesmith-main-1.png);background-position:-1456px -637px;width:90px;height:90px}.customize-option.hair_base_13_snowy{background-image:url(spritesmith-main-1.png);background-position:-1481px -652px;width:60px;height:60px}.hair_base_13_white{background-image:url(spritesmith-main-1.png);background-position:-1456px -728px;width:90px;height:90px}.customize-option.hair_base_13_white{background-image:url(spritesmith-main-1.png);background-position:-1481px -743px;width:60px;height:60px}.hair_base_13_winternight{background-image:url(spritesmith-main-1.png);background-position:-1456px -819px;width:90px;height:90px}.customize-option.hair_base_13_winternight{background-image:url(spritesmith-main-1.png);background-position:-1481px -834px;width:60px;height:60px}.hair_base_13_winterstar{background-image:url(spritesmith-main-1.png);background-position:-1456px -910px;width:90px;height:90px}.customize-option.hair_base_13_winterstar{background-image:url(spritesmith-main-1.png);background-position:-1481px -925px;width:60px;height:60px}.hair_base_13_yellow{background-image:url(spritesmith-main-1.png);background-position:-1456px -1001px;width:90px;height:90px}.customize-option.hair_base_13_yellow{background-image:url(spritesmith-main-1.png);background-position:-1481px -1016px;width:60px;height:60px}.hair_base_13_zombie{background-image:url(spritesmith-main-1.png);background-position:-1456px -1092px;width:90px;height:90px}.customize-option.hair_base_13_zombie{background-image:url(spritesmith-main-1.png);background-position:-1481px -1107px;width:60px;height:60px}.hair_base_14_TRUred{background-image:url(spritesmith-main-1.png);background-position:-1456px -1183px;width:90px;height:90px}.customize-option.hair_base_14_TRUred{background-image:url(spritesmith-main-1.png);background-position:-1481px -1198px;width:60px;height:60px}.hair_base_14_aurora{background-image:url(spritesmith-main-1.png);background-position:-1456px -1274px;width:90px;height:90px}.customize-option.hair_base_14_aurora{background-image:url(spritesmith-main-1.png);background-position:-1481px -1289px;width:60px;height:60px}.hair_base_14_black{background-image:url(spritesmith-main-1.png);background-position:-1456px -1365px;width:90px;height:90px}.customize-option.hair_base_14_black{background-image:url(spritesmith-main-1.png);background-position:-1481px -1380px;width:60px;height:60px}.hair_base_14_blond{background-image:url(spritesmith-main-1.png);background-position:0 -1456px;width:90px;height:90px}.customize-option.hair_base_14_blond{background-image:url(spritesmith-main-1.png);background-position:-25px -1471px;width:60px;height:60px}.hair_base_14_blue{background-image:url(spritesmith-main-1.png);background-position:-91px -1456px;width:90px;height:90px}.customize-option.hair_base_14_blue{background-image:url(spritesmith-main-1.png);background-position:-116px -1471px;width:60px;height:60px}.hair_base_14_brown{background-image:url(spritesmith-main-1.png);background-position:-182px -1456px;width:90px;height:90px}.customize-option.hair_base_14_brown{background-image:url(spritesmith-main-1.png);background-position:-207px -1471px;width:60px;height:60px}.hair_base_14_candycane{background-image:url(spritesmith-main-1.png);background-position:-273px -1456px;width:90px;height:90px}.customize-option.hair_base_14_candycane{background-image:url(spritesmith-main-1.png);background-position:-298px -1471px;width:60px;height:60px}.hair_base_14_candycorn{background-image:url(spritesmith-main-1.png);background-position:-364px -1456px;width:90px;height:90px}.customize-option.hair_base_14_candycorn{background-image:url(spritesmith-main-1.png);background-position:-389px -1471px;width:60px;height:60px}.hair_base_14_festive{background-image:url(spritesmith-main-1.png);background-position:-455px -1456px;width:90px;height:90px}.customize-option.hair_base_14_festive{background-image:url(spritesmith-main-1.png);background-position:-480px -1471px;width:60px;height:60px}.hair_base_14_frost{background-image:url(spritesmith-main-1.png);background-position:-546px -1456px;width:90px;height:90px}.customize-option.hair_base_14_frost{background-image:url(spritesmith-main-1.png);background-position:-571px -1471px;width:60px;height:60px}.hair_base_14_ghostwhite{background-image:url(spritesmith-main-1.png);background-position:-637px -1456px;width:90px;height:90px}.customize-option.hair_base_14_ghostwhite{background-image:url(spritesmith-main-1.png);background-position:-662px -1471px;width:60px;height:60px}.hair_base_14_green{background-image:url(spritesmith-main-1.png);background-position:-728px -1456px;width:90px;height:90px}.customize-option.hair_base_14_green{background-image:url(spritesmith-main-1.png);background-position:-753px -1471px;width:60px;height:60px}.hair_base_14_halloween{background-image:url(spritesmith-main-1.png);background-position:-819px -1456px;width:90px;height:90px}.customize-option.hair_base_14_halloween{background-image:url(spritesmith-main-1.png);background-position:-844px -1471px;width:60px;height:60px}.hair_base_14_holly{background-image:url(spritesmith-main-1.png);background-position:-910px -1456px;width:90px;height:90px}.customize-option.hair_base_14_holly{background-image:url(spritesmith-main-1.png);background-position:-935px -1471px;width:60px;height:60px}.hair_base_14_hollygreen{background-image:url(spritesmith-main-1.png);background-position:-1001px -1456px;width:90px;height:90px}.customize-option.hair_base_14_hollygreen{background-image:url(spritesmith-main-1.png);background-position:-1026px -1471px;width:60px;height:60px}.hair_base_14_midnight{background-image:url(spritesmith-main-1.png);background-position:-1092px -1456px;width:90px;height:90px}.customize-option.hair_base_14_midnight{background-image:url(spritesmith-main-1.png);background-position:-1117px -1471px;width:60px;height:60px}.hair_base_14_pblue{background-image:url(spritesmith-main-1.png);background-position:-1183px -1456px;width:90px;height:90px}.customize-option.hair_base_14_pblue{background-image:url(spritesmith-main-1.png);background-position:-1208px -1471px;width:60px;height:60px}.hair_base_14_pblue2{background-image:url(spritesmith-main-1.png);background-position:-1274px -1456px;width:90px;height:90px}.customize-option.hair_base_14_pblue2{background-image:url(spritesmith-main-1.png);background-position:-1299px -1471px;width:60px;height:60px}.hair_base_14_peppermint{background-image:url(spritesmith-main-1.png);background-position:-1365px -1456px;width:90px;height:90px}.customize-option.hair_base_14_peppermint{background-image:url(spritesmith-main-1.png);background-position:-1390px -1471px;width:60px;height:60px}.hair_base_14_pgreen{background-image:url(spritesmith-main-1.png);background-position:-1456px -1456px;width:90px;height:90px}.customize-option.hair_base_14_pgreen{background-image:url(spritesmith-main-1.png);background-position:-1481px -1471px;width:60px;height:60px}.hair_base_14_pgreen2{background-image:url(spritesmith-main-1.png);background-position:-1547px 0;width:90px;height:90px}.customize-option.hair_base_14_pgreen2{background-image:url(spritesmith-main-1.png);background-position:-1572px -15px;width:60px;height:60px}.hair_base_14_porange{background-image:url(spritesmith-main-1.png);background-position:-1547px -91px;width:90px;height:90px}.customize-option.hair_base_14_porange{background-image:url(spritesmith-main-1.png);background-position:-1572px -106px;width:60px;height:60px}.hair_base_14_porange2{background-image:url(spritesmith-main-1.png);background-position:-1547px -182px;width:90px;height:90px}.customize-option.hair_base_14_porange2{background-image:url(spritesmith-main-1.png);background-position:-1572px -197px;width:60px;height:60px}.hair_base_14_ppink{background-image:url(spritesmith-main-1.png);background-position:-1547px -273px;width:90px;height:90px}.customize-option.hair_base_14_ppink{background-image:url(spritesmith-main-1.png);background-position:-1572px -288px;width:60px;height:60px}.hair_base_14_ppink2{background-image:url(spritesmith-main-1.png);background-position:-1547px -364px;width:90px;height:90px}.customize-option.hair_base_14_ppink2{background-image:url(spritesmith-main-1.png);background-position:-1572px -379px;width:60px;height:60px}.hair_base_14_ppurple{background-image:url(spritesmith-main-1.png);background-position:-1547px -455px;width:90px;height:90px}.customize-option.hair_base_14_ppurple{background-image:url(spritesmith-main-1.png);background-position:-1572px -470px;width:60px;height:60px}.hair_base_14_ppurple2{background-image:url(spritesmith-main-1.png);background-position:-1547px -546px;width:90px;height:90px}.customize-option.hair_base_14_ppurple2{background-image:url(spritesmith-main-1.png);background-position:-1572px -561px;width:60px;height:60px}.hair_base_14_pumpkin{background-image:url(spritesmith-main-1.png);background-position:-1547px -637px;width:90px;height:90px}.customize-option.hair_base_14_pumpkin{background-image:url(spritesmith-main-1.png);background-position:-1572px -652px;width:60px;height:60px}.hair_base_14_purple{background-image:url(spritesmith-main-1.png);background-position:-1547px -728px;width:90px;height:90px}.customize-option.hair_base_14_purple{background-image:url(spritesmith-main-1.png);background-position:-1572px -743px;width:60px;height:60px}.hair_base_14_pyellow{background-image:url(spritesmith-main-1.png);background-position:-1547px -819px;width:90px;height:90px}.customize-option.hair_base_14_pyellow{background-image:url(spritesmith-main-1.png);background-position:-1572px -834px;width:60px;height:60px}.hair_base_14_pyellow2{background-image:url(spritesmith-main-1.png);background-position:-1547px -910px;width:90px;height:90px}.customize-option.hair_base_14_pyellow2{background-image:url(spritesmith-main-1.png);background-position:-1572px -925px;width:60px;height:60px}.hair_base_14_rainbow{background-image:url(spritesmith-main-1.png);background-position:-1547px -1001px;width:90px;height:90px}.customize-option.hair_base_14_rainbow{background-image:url(spritesmith-main-1.png);background-position:-1572px -1016px;width:60px;height:60px}.hair_base_14_red{background-image:url(spritesmith-main-1.png);background-position:-1547px -1092px;width:90px;height:90px}.customize-option.hair_base_14_red{background-image:url(spritesmith-main-1.png);background-position:-1572px -1107px;width:60px;height:60px}.hair_base_14_snowy{background-image:url(spritesmith-main-1.png);background-position:-1547px -1183px;width:90px;height:90px}.customize-option.hair_base_14_snowy{background-image:url(spritesmith-main-1.png);background-position:-1572px -1198px;width:60px;height:60px}.hair_base_14_white{background-image:url(spritesmith-main-1.png);background-position:-1547px -1274px;width:90px;height:90px}.customize-option.hair_base_14_white{background-image:url(spritesmith-main-1.png);background-position:-1572px -1289px;width:60px;height:60px}.hair_base_14_winternight{background-image:url(spritesmith-main-1.png);background-position:-1547px -1365px;width:90px;height:90px}.customize-option.hair_base_14_winternight{background-image:url(spritesmith-main-1.png);background-position:-1572px -1380px;width:60px;height:60px}.hair_base_14_winterstar{background-image:url(spritesmith-main-1.png);background-position:-1547px -1456px;width:90px;height:90px}.customize-option.hair_base_14_winterstar{background-image:url(spritesmith-main-1.png);background-position:-1572px -1471px;width:60px;height:60px}.hair_base_14_yellow{background-image:url(spritesmith-main-1.png);background-position:0 -1547px;width:90px;height:90px}.customize-option.hair_base_14_yellow{background-image:url(spritesmith-main-1.png);background-position:-25px -1562px;width:60px;height:60px}.hair_base_14_zombie{background-image:url(spritesmith-main-1.png);background-position:-91px -1547px;width:90px;height:90px}.customize-option.hair_base_14_zombie{background-image:url(spritesmith-main-1.png);background-position:-116px -1562px;width:60px;height:60px}.hair_base_1_TRUred{background-image:url(spritesmith-main-1.png);background-position:-182px -1547px;width:90px;height:90px}.customize-option.hair_base_1_TRUred{background-image:url(spritesmith-main-1.png);background-position:-207px -1562px;width:60px;height:60px}.hair_base_1_aurora{background-image:url(spritesmith-main-1.png);background-position:-273px -1547px;width:90px;height:90px}.customize-option.hair_base_1_aurora{background-image:url(spritesmith-main-1.png);background-position:-298px -1562px;width:60px;height:60px}.hair_base_1_black{background-image:url(spritesmith-main-1.png);background-position:-364px -1547px;width:90px;height:90px}.customize-option.hair_base_1_black{background-image:url(spritesmith-main-1.png);background-position:-389px -1562px;width:60px;height:60px}.hair_base_1_blond{background-image:url(spritesmith-main-1.png);background-position:-455px -1547px;width:90px;height:90px}.customize-option.hair_base_1_blond{background-image:url(spritesmith-main-1.png);background-position:-480px -1562px;width:60px;height:60px}.hair_base_1_blue{background-image:url(spritesmith-main-1.png);background-position:-546px -1547px;width:90px;height:90px}.customize-option.hair_base_1_blue{background-image:url(spritesmith-main-1.png);background-position:-571px -1562px;width:60px;height:60px}.hair_base_1_brown{background-image:url(spritesmith-main-1.png);background-position:-637px -1547px;width:90px;height:90px}.customize-option.hair_base_1_brown{background-image:url(spritesmith-main-1.png);background-position:-662px -1562px;width:60px;height:60px}.hair_base_1_candycane{background-image:url(spritesmith-main-1.png);background-position:-728px -1547px;width:90px;height:90px}.customize-option.hair_base_1_candycane{background-image:url(spritesmith-main-1.png);background-position:-753px -1562px;width:60px;height:60px}.hair_base_1_candycorn{background-image:url(spritesmith-main-1.png);background-position:-819px -1547px;width:90px;height:90px}.customize-option.hair_base_1_candycorn{background-image:url(spritesmith-main-1.png);background-position:-844px -1562px;width:60px;height:60px}.hair_base_1_festive{background-image:url(spritesmith-main-1.png);background-position:-910px -1547px;width:90px;height:90px}.customize-option.hair_base_1_festive{background-image:url(spritesmith-main-1.png);background-position:-935px -1562px;width:60px;height:60px}.hair_base_1_frost{background-image:url(spritesmith-main-1.png);background-position:-1001px -1547px;width:90px;height:90px}.customize-option.hair_base_1_frost{background-image:url(spritesmith-main-1.png);background-position:-1026px -1562px;width:60px;height:60px}.hair_base_1_ghostwhite{background-image:url(spritesmith-main-1.png);background-position:-1092px -1547px;width:90px;height:90px}.customize-option.hair_base_1_ghostwhite{background-image:url(spritesmith-main-1.png);background-position:-1117px -1562px;width:60px;height:60px}.hair_base_1_green{background-image:url(spritesmith-main-1.png);background-position:-1183px -1547px;width:90px;height:90px}.customize-option.hair_base_1_green{background-image:url(spritesmith-main-1.png);background-position:-1208px -1562px;width:60px;height:60px}.hair_base_1_halloween{background-image:url(spritesmith-main-1.png);background-position:-1274px -1547px;width:90px;height:90px}.customize-option.hair_base_1_halloween{background-image:url(spritesmith-main-1.png);background-position:-1299px -1562px;width:60px;height:60px}.hair_base_1_holly{background-image:url(spritesmith-main-1.png);background-position:-1365px -1547px;width:90px;height:90px}.customize-option.hair_base_1_holly{background-image:url(spritesmith-main-1.png);background-position:-1390px -1562px;width:60px;height:60px}.hair_base_1_hollygreen{background-image:url(spritesmith-main-1.png);background-position:-1456px -1547px;width:90px;height:90px}.customize-option.hair_base_1_hollygreen{background-image:url(spritesmith-main-1.png);background-position:-1481px -1562px;width:60px;height:60px}.hair_base_1_midnight{background-image:url(spritesmith-main-1.png);background-position:-1547px -1547px;width:90px;height:90px}.customize-option.hair_base_1_midnight{background-image:url(spritesmith-main-1.png);background-position:-1572px -1562px;width:60px;height:60px}.hair_base_1_pblue{background-image:url(spritesmith-main-1.png);background-position:-1638px 0;width:90px;height:90px}.customize-option.hair_base_1_pblue{background-image:url(spritesmith-main-1.png);background-position:-1663px -15px;width:60px;height:60px}.hair_base_1_pblue2{background-image:url(spritesmith-main-1.png);background-position:-1638px -91px;width:90px;height:90px}.customize-option.hair_base_1_pblue2{background-image:url(spritesmith-main-1.png);background-position:-1663px -106px;width:60px;height:60px}.hair_base_1_peppermint{background-image:url(spritesmith-main-1.png);background-position:-1638px -182px;width:90px;height:90px}.customize-option.hair_base_1_peppermint{background-image:url(spritesmith-main-1.png);background-position:-1663px -197px;width:60px;height:60px}.hair_base_1_pgreen{background-image:url(spritesmith-main-1.png);background-position:-1638px -273px;width:90px;height:90px}.customize-option.hair_base_1_pgreen{background-image:url(spritesmith-main-1.png);background-position:-1663px -288px;width:60px;height:60px}.hair_base_1_pgreen2{background-image:url(spritesmith-main-1.png);background-position:-1638px -364px;width:90px;height:90px}.customize-option.hair_base_1_pgreen2{background-image:url(spritesmith-main-1.png);background-position:-1663px -379px;width:60px;height:60px}.Mount_Icon_Wolf-Red{background-image:url(spritesmith-main-10.png);background-position:-82px 0;width:81px;height:99px}.Mount_Icon_Wolf-Shade{background-image:url(spritesmith-main-10.png);background-position:-82px -1100px;width:81px;height:99px}.Mount_Icon_Wolf-Skeleton{background-image:url(spritesmith-main-10.png);background-position:-164px 0;width:81px;height:99px}.Mount_Icon_Wolf-Spooky{background-image:url(spritesmith-main-10.png);background-position:0 -100px;width:81px;height:99px}.Mount_Icon_Wolf-White{background-image:url(spritesmith-main-10.png);background-position:-82px -100px;width:81px;height:99px}.Mount_Icon_Wolf-Zombie{background-image:url(spritesmith-main-10.png);background-position:-164px -100px;width:81px;height:99px}.Pet-BearCub-Base{background-image:url(spritesmith-main-10.png);background-position:-246px 0;width:81px;height:99px}.Pet-BearCub-CottonCandyBlue{background-image:url(spritesmith-main-10.png);background-position:-246px -100px;width:81px;height:99px}.Pet-BearCub-CottonCandyPink{background-image:url(spritesmith-main-10.png);background-position:0 -200px;width:81px;height:99px}.Pet-BearCub-Desert{background-image:url(spritesmith-main-10.png);background-position:-82px -200px;width:81px;height:99px}.Pet-BearCub-Golden{background-image:url(spritesmith-main-10.png);background-position:-164px -200px;width:81px;height:99px}.Pet-BearCub-Peppermint{background-image:url(spritesmith-main-10.png);background-position:-246px -200px;width:81px;height:99px}.Pet-BearCub-Polar{background-image:url(spritesmith-main-10.png);background-position:-328px 0;width:81px;height:99px}.Pet-BearCub-Red{background-image:url(spritesmith-main-10.png);background-position:-328px -100px;width:81px;height:99px}.Pet-BearCub-Shade{background-image:url(spritesmith-main-10.png);background-position:-328px -200px;width:81px;height:99px}.Pet-BearCub-Skeleton{background-image:url(spritesmith-main-10.png);background-position:0 -300px;width:81px;height:99px}.Pet-BearCub-Spooky{background-image:url(spritesmith-main-10.png);background-position:-82px -300px;width:81px;height:99px}.Pet-BearCub-White{background-image:url(spritesmith-main-10.png);background-position:-164px -300px;width:81px;height:99px}.Pet-BearCub-Zombie{background-image:url(spritesmith-main-10.png);background-position:-246px -300px;width:81px;height:99px}.Pet-Bunny-Base{background-image:url(spritesmith-main-10.png);background-position:-328px -300px;width:81px;height:99px}.Pet-Bunny-CottonCandyBlue{background-image:url(spritesmith-main-10.png);background-position:-410px 0;width:81px;height:99px}.Pet-Bunny-CottonCandyPink{background-image:url(spritesmith-main-10.png);background-position:-410px -100px;width:81px;height:99px}.Pet-Bunny-Desert{background-image:url(spritesmith-main-10.png);background-position:-410px -200px;width:81px;height:99px}.Pet-Bunny-Golden{background-image:url(spritesmith-main-10.png);background-position:-410px -300px;width:81px;height:99px}.Pet-Bunny-Red{background-image:url(spritesmith-main-10.png);background-position:-492px 0;width:81px;height:99px}.Pet-Bunny-Shade{background-image:url(spritesmith-main-10.png);background-position:-492px -100px;width:81px;height:99px}.Pet-Bunny-Skeleton{background-image:url(spritesmith-main-10.png);background-position:-492px -200px;width:81px;height:99px}.Pet-Bunny-White{background-image:url(spritesmith-main-10.png);background-position:-492px -300px;width:81px;height:99px}.Pet-Bunny-Zombie{background-image:url(spritesmith-main-10.png);background-position:0 -400px;width:81px;height:99px}.Pet-Cactus-Base{background-image:url(spritesmith-main-10.png);background-position:-82px -400px;width:81px;height:99px}.Pet-Cactus-CottonCandyBlue{background-image:url(spritesmith-main-10.png);background-position:-164px -400px;width:81px;height:99px}.Pet-Cactus-CottonCandyPink{background-image:url(spritesmith-main-10.png);background-position:-246px -400px;width:81px;height:99px}.Pet-Cactus-Desert{background-image:url(spritesmith-main-10.png);background-position:-328px -400px;width:81px;height:99px}.Pet-Cactus-Golden{background-image:url(spritesmith-main-10.png);background-position:-410px -400px;width:81px;height:99px}.Pet-Cactus-Peppermint{background-image:url(spritesmith-main-10.png);background-position:-492px -400px;width:81px;height:99px}.Pet-Cactus-Red{background-image:url(spritesmith-main-10.png);background-position:-574px 0;width:81px;height:99px}.Pet-Cactus-Shade{background-image:url(spritesmith-main-10.png);background-position:-574px -100px;width:81px;height:99px}.Pet-Cactus-Skeleton{background-image:url(spritesmith-main-10.png);background-position:-574px -200px;width:81px;height:99px}.Pet-Cactus-Spooky{background-image:url(spritesmith-main-10.png);background-position:-574px -300px;width:81px;height:99px}.Pet-Cactus-White{background-image:url(spritesmith-main-10.png);background-position:-574px -400px;width:81px;height:99px}.Pet-Cactus-Zombie{background-image:url(spritesmith-main-10.png);background-position:0 -500px;width:81px;height:99px}.Pet-Cheetah-Base{background-image:url(spritesmith-main-10.png);background-position:-82px -500px;width:81px;height:99px}.Pet-Cheetah-CottonCandyBlue{background-image:url(spritesmith-main-10.png);background-position:-164px -500px;width:81px;height:99px}.Pet-Cheetah-CottonCandyPink{background-image:url(spritesmith-main-10.png);background-position:-246px -500px;width:81px;height:99px}.Pet-Cheetah-Desert{background-image:url(spritesmith-main-10.png);background-position:-328px -500px;width:81px;height:99px}.Pet-Cheetah-Golden{background-image:url(spritesmith-main-10.png);background-position:-410px -500px;width:81px;height:99px}.Pet-Cheetah-Red{background-image:url(spritesmith-main-10.png);background-position:-492px -500px;width:81px;height:99px}.Pet-Cheetah-Shade{background-image:url(spritesmith-main-10.png);background-position:-574px -500px;width:81px;height:99px}.Pet-Cheetah-Skeleton{background-image:url(spritesmith-main-10.png);background-position:-656px 0;width:81px;height:99px}.Pet-Cheetah-White{background-image:url(spritesmith-main-10.png);background-position:-656px -100px;width:81px;height:99px}.Pet-Cheetah-Zombie{background-image:url(spritesmith-main-10.png);background-position:-656px -200px;width:81px;height:99px}.Pet-Cuttlefish-Base{background-image:url(spritesmith-main-10.png);background-position:-656px -300px;width:81px;height:99px}.Pet-Cuttlefish-CottonCandyBlue{background-image:url(spritesmith-main-10.png);background-position:-656px -400px;width:81px;height:99px}.Pet-Cuttlefish-CottonCandyPink{background-image:url(spritesmith-main-10.png);background-position:-656px -500px;width:81px;height:99px}.Pet-Cuttlefish-Desert{background-image:url(spritesmith-main-10.png);background-position:0 -600px;width:81px;height:99px}.Pet-Cuttlefish-Golden{background-image:url(spritesmith-main-10.png);background-position:-82px -600px;width:81px;height:99px}.Pet-Cuttlefish-Red{background-image:url(spritesmith-main-10.png);background-position:-164px -600px;width:81px;height:99px}.Pet-Cuttlefish-Shade{background-image:url(spritesmith-main-10.png);background-position:-246px -600px;width:81px;height:99px}.Pet-Cuttlefish-Skeleton{background-image:url(spritesmith-main-10.png);background-position:-328px -600px;width:81px;height:99px}.Pet-Cuttlefish-White{background-image:url(spritesmith-main-10.png);background-position:-410px -600px;width:81px;height:99px}.Pet-Cuttlefish-Zombie{background-image:url(spritesmith-main-10.png);background-position:-492px -600px;width:81px;height:99px}.Pet-Deer-Base{background-image:url(spritesmith-main-10.png);background-position:-574px -600px;width:81px;height:99px}.Pet-Deer-CottonCandyBlue{background-image:url(spritesmith-main-10.png);background-position:-656px -600px;width:81px;height:99px}.Pet-Deer-CottonCandyPink{background-image:url(spritesmith-main-10.png);background-position:-738px 0;width:81px;height:99px}.Pet-Deer-Desert{background-image:url(spritesmith-main-10.png);background-position:-738px -100px;width:81px;height:99px}.Pet-Deer-Golden{background-image:url(spritesmith-main-10.png);background-position:-738px -200px;width:81px;height:99px}.Pet-Deer-Red{background-image:url(spritesmith-main-10.png);background-position:-738px -300px;width:81px;height:99px}.Pet-Deer-Shade{background-image:url(spritesmith-main-10.png);background-position:-738px -400px;width:81px;height:99px}.Pet-Deer-Skeleton{background-image:url(spritesmith-main-10.png);background-position:-738px -500px;width:81px;height:99px}.Pet-Deer-White{background-image:url(spritesmith-main-10.png);background-position:-738px -600px;width:81px;height:99px}.Pet-Deer-Zombie{background-image:url(spritesmith-main-10.png);background-position:0 -700px;width:81px;height:99px}.Pet-Dragon-Base{background-image:url(spritesmith-main-10.png);background-position:-82px -700px;width:81px;height:99px}.Pet-Dragon-CottonCandyBlue{background-image:url(spritesmith-main-10.png);background-position:-164px -700px;width:81px;height:99px}.Pet-Dragon-CottonCandyPink{background-image:url(spritesmith-main-10.png);background-position:-246px -700px;width:81px;height:99px}.Pet-Dragon-Desert{background-image:url(spritesmith-main-10.png);background-position:-328px -700px;width:81px;height:99px}.Pet-Dragon-Golden{background-image:url(spritesmith-main-10.png);background-position:-410px -700px;width:81px;height:99px}.Pet-Dragon-Hydra{background-image:url(spritesmith-main-10.png);background-position:-492px -700px;width:81px;height:99px}.Pet-Dragon-Peppermint{background-image:url(spritesmith-main-10.png);background-position:-574px -700px;width:81px;height:99px}.Pet-Dragon-Red{background-image:url(spritesmith-main-10.png);background-position:-656px -700px;width:81px;height:99px}.Pet-Dragon-Shade{background-image:url(spritesmith-main-10.png);background-position:-738px -700px;width:81px;height:99px}.Pet-Dragon-Skeleton{background-image:url(spritesmith-main-10.png);background-position:-820px 0;width:81px;height:99px}.Pet-Dragon-Spooky{background-image:url(spritesmith-main-10.png);background-position:-820px -100px;width:81px;height:99px}.Pet-Dragon-White{background-image:url(spritesmith-main-10.png);background-position:-820px -200px;width:81px;height:99px}.Pet-Dragon-Zombie{background-image:url(spritesmith-main-10.png);background-position:-820px -300px;width:81px;height:99px}.Pet-Egg-Base{background-image:url(spritesmith-main-10.png);background-position:-820px -400px;width:81px;height:99px}.Pet-Egg-CottonCandyBlue{background-image:url(spritesmith-main-10.png);background-position:-820px -500px;width:81px;height:99px}.Pet-Egg-CottonCandyPink{background-image:url(spritesmith-main-10.png);background-position:-820px -600px;width:81px;height:99px}.Pet-Egg-Desert{background-image:url(spritesmith-main-10.png);background-position:-820px -700px;width:81px;height:99px}.Pet-Egg-Golden{background-image:url(spritesmith-main-10.png);background-position:0 -800px;width:81px;height:99px}.Pet-Egg-Red{background-image:url(spritesmith-main-10.png);background-position:-82px -800px;width:81px;height:99px}.Pet-Egg-Shade{background-image:url(spritesmith-main-10.png);background-position:-164px -800px;width:81px;height:99px}.Pet-Egg-Skeleton{background-image:url(spritesmith-main-10.png);background-position:-246px -800px;width:81px;height:99px}.Pet-Egg-White{background-image:url(spritesmith-main-10.png);background-position:-328px -800px;width:81px;height:99px}.Pet-Egg-Zombie{background-image:url(spritesmith-main-10.png);background-position:-410px -800px;width:81px;height:99px}.Pet-FlyingPig-Base{background-image:url(spritesmith-main-10.png);background-position:-492px -800px;width:81px;height:99px}.Pet-FlyingPig-CottonCandyBlue{background-image:url(spritesmith-main-10.png);background-position:-574px -800px;width:81px;height:99px}.Pet-FlyingPig-CottonCandyPink{background-image:url(spritesmith-main-10.png);background-position:-656px -800px;width:81px;height:99px}.Pet-FlyingPig-Desert{background-image:url(spritesmith-main-10.png);background-position:-738px -800px;width:81px;height:99px}.Pet-FlyingPig-Golden{background-image:url(spritesmith-main-10.png);background-position:-820px -800px;width:81px;height:99px}.Pet-FlyingPig-Peppermint{background-image:url(spritesmith-main-10.png);background-position:-902px 0;width:81px;height:99px}.Pet-FlyingPig-Red{background-image:url(spritesmith-main-10.png);background-position:-902px -100px;width:81px;height:99px}.Pet-FlyingPig-Shade{background-image:url(spritesmith-main-10.png);background-position:-902px -200px;width:81px;height:99px}.Pet-FlyingPig-Skeleton{background-image:url(spritesmith-main-10.png);background-position:-902px -300px;width:81px;height:99px}.Pet-FlyingPig-Spooky{background-image:url(spritesmith-main-10.png);background-position:-902px -400px;width:81px;height:99px}.Pet-FlyingPig-White{background-image:url(spritesmith-main-10.png);background-position:-902px -500px;width:81px;height:99px}.Pet-FlyingPig-Zombie{background-image:url(spritesmith-main-10.png);background-position:-902px -600px;width:81px;height:99px}.Pet-Fox-Base{background-image:url(spritesmith-main-10.png);background-position:-902px -700px;width:81px;height:99px}.Pet-Fox-CottonCandyBlue{background-image:url(spritesmith-main-10.png);background-position:-902px -800px;width:81px;height:99px}.Pet-Fox-CottonCandyPink{background-image:url(spritesmith-main-10.png);background-position:-984px 0;width:81px;height:99px}.Pet-Fox-Desert{background-image:url(spritesmith-main-10.png);background-position:-984px -100px;width:81px;height:99px}.Pet-Fox-Golden{background-image:url(spritesmith-main-10.png);background-position:-984px -200px;width:81px;height:99px}.Pet-Fox-Peppermint{background-image:url(spritesmith-main-10.png);background-position:-984px -300px;width:81px;height:99px}.Pet-Fox-Red{background-image:url(spritesmith-main-10.png);background-position:-984px -400px;width:81px;height:99px}.Pet-Fox-Shade{background-image:url(spritesmith-main-10.png);background-position:-984px -500px;width:81px;height:99px}.Pet-Fox-Skeleton{background-image:url(spritesmith-main-10.png);background-position:-984px -600px;width:81px;height:99px}.Pet-Fox-Spooky{background-image:url(spritesmith-main-10.png);background-position:-984px -700px;width:81px;height:99px}.Pet-Fox-White{background-image:url(spritesmith-main-10.png);background-position:-984px -800px;width:81px;height:99px}.Pet-Fox-Zombie{background-image:url(spritesmith-main-10.png);background-position:0 -900px;width:81px;height:99px}.Pet-Frog-Base{background-image:url(spritesmith-main-10.png);background-position:-82px -900px;width:81px;height:99px}.Pet-Frog-CottonCandyBlue{background-image:url(spritesmith-main-10.png);background-position:-164px -900px;width:81px;height:99px}.Pet-Frog-CottonCandyPink{background-image:url(spritesmith-main-10.png);background-position:-246px -900px;width:81px;height:99px}.Pet-Frog-Desert{background-image:url(spritesmith-main-10.png);background-position:-328px -900px;width:81px;height:99px}.Pet-Frog-Golden{background-image:url(spritesmith-main-10.png);background-position:-410px -900px;width:81px;height:99px}.Pet-Frog-Red{background-image:url(spritesmith-main-10.png);background-position:-492px -900px;width:81px;height:99px}.Pet-Frog-Shade{background-image:url(spritesmith-main-10.png);background-position:-574px -900px;width:81px;height:99px}.Pet-Frog-Skeleton{background-image:url(spritesmith-main-10.png);background-position:-656px -900px;width:81px;height:99px}.Pet-Frog-White{background-image:url(spritesmith-main-10.png);background-position:-738px -900px;width:81px;height:99px}.Pet-Frog-Zombie{background-image:url(spritesmith-main-10.png);background-position:-820px -900px;width:81px;height:99px}.Pet-Gryphon-Base{background-image:url(spritesmith-main-10.png);background-position:-902px -900px;width:81px;height:99px}.Pet-Gryphon-CottonCandyBlue{background-image:url(spritesmith-main-10.png);background-position:-984px -900px;width:81px;height:99px}.Pet-Gryphon-CottonCandyPink{background-image:url(spritesmith-main-10.png);background-position:-1066px 0;width:81px;height:99px}.Pet-Gryphon-Desert{background-image:url(spritesmith-main-10.png);background-position:-1066px -100px;width:81px;height:99px}.Pet-Gryphon-Golden{background-image:url(spritesmith-main-10.png);background-position:-1066px -200px;width:81px;height:99px}.Pet-Gryphon-Red{background-image:url(spritesmith-main-10.png);background-position:-1066px -300px;width:81px;height:99px}.Pet-Gryphon-Shade{background-image:url(spritesmith-main-10.png);background-position:-1066px -400px;width:81px;height:99px}.Pet-Gryphon-Skeleton{background-image:url(spritesmith-main-10.png);background-position:-1066px -500px;width:81px;height:99px}.Pet-Gryphon-White{background-image:url(spritesmith-main-10.png);background-position:-1066px -600px;width:81px;height:99px}.Pet-Gryphon-Zombie{background-image:url(spritesmith-main-10.png);background-position:-1066px -700px;width:81px;height:99px}.Pet-Hedgehog-Base{background-image:url(spritesmith-main-10.png);background-position:-1066px -800px;width:81px;height:99px}.Pet-Hedgehog-CottonCandyBlue{background-image:url(spritesmith-main-10.png);background-position:-1066px -900px;width:81px;height:99px}.Pet-Hedgehog-CottonCandyPink{background-image:url(spritesmith-main-10.png);background-position:0 -1000px;width:81px;height:99px}.Pet-Hedgehog-Desert{background-image:url(spritesmith-main-10.png);background-position:-82px -1000px;width:81px;height:99px}.Pet-Hedgehog-Golden{background-image:url(spritesmith-main-10.png);background-position:-164px -1000px;width:81px;height:99px}.Pet-Hedgehog-Red{background-image:url(spritesmith-main-10.png);background-position:-246px -1000px;width:81px;height:99px}.Pet-Hedgehog-Shade{background-image:url(spritesmith-main-10.png);background-position:-328px -1000px;width:81px;height:99px}.Pet-Hedgehog-Skeleton{background-image:url(spritesmith-main-10.png);background-position:-410px -1000px;width:81px;height:99px}.Pet-Hedgehog-White{background-image:url(spritesmith-main-10.png);background-position:-492px -1000px;width:81px;height:99px}.Pet-Hedgehog-Zombie{background-image:url(spritesmith-main-10.png);background-position:-574px -1000px;width:81px;height:99px}.Pet-Horse-Base{background-image:url(spritesmith-main-10.png);background-position:-656px -1000px;width:81px;height:99px}.Pet-Horse-CottonCandyBlue{background-image:url(spritesmith-main-10.png);background-position:-738px -1000px;width:81px;height:99px}.Pet-Horse-CottonCandyPink{background-image:url(spritesmith-main-10.png);background-position:-820px -1000px;width:81px;height:99px}.Pet-Horse-Desert{background-image:url(spritesmith-main-10.png);background-position:-902px -1000px;width:81px;height:99px}.Pet-Horse-Golden{background-image:url(spritesmith-main-10.png);background-position:-984px -1000px;width:81px;height:99px}.Pet-Horse-Red{background-image:url(spritesmith-main-10.png);background-position:-1066px -1000px;width:81px;height:99px}.Pet-Horse-Shade{background-image:url(spritesmith-main-10.png);background-position:-1148px 0;width:81px;height:99px}.Pet-Horse-Skeleton{background-image:url(spritesmith-main-10.png);background-position:-1148px -100px;width:81px;height:99px}.Pet-Horse-White{background-image:url(spritesmith-main-10.png);background-position:-1148px -200px;width:81px;height:99px}.Pet-Horse-Zombie{background-image:url(spritesmith-main-10.png);background-position:-1148px -300px;width:81px;height:99px}.Pet-JackOLantern-Base{background-image:url(spritesmith-main-10.png);background-position:-1148px -400px;width:81px;height:99px}.Pet-LionCub-Base{background-image:url(spritesmith-main-10.png);background-position:-1148px -500px;width:81px;height:99px}.Pet-LionCub-CottonCandyBlue{background-image:url(spritesmith-main-10.png);background-position:-1148px -600px;width:81px;height:99px}.Pet-LionCub-CottonCandyPink{background-image:url(spritesmith-main-10.png);background-position:-1148px -700px;width:81px;height:99px}.Pet-LionCub-Desert{background-image:url(spritesmith-main-10.png);background-position:-1148px -800px;width:81px;height:99px}.Pet-LionCub-Golden{background-image:url(spritesmith-main-10.png);background-position:-1148px -900px;width:81px;height:99px}.Pet-LionCub-Peppermint{background-image:url(spritesmith-main-10.png);background-position:-1148px -1000px;width:81px;height:99px}.Pet-LionCub-Red{background-image:url(spritesmith-main-10.png);background-position:0 -1100px;width:81px;height:99px}.Pet-LionCub-Shade{background-image:url(spritesmith-main-10.png);background-position:0 0;width:81px;height:99px}.Pet-LionCub-Skeleton{background-image:url(spritesmith-main-10.png);background-position:-164px -1100px;width:81px;height:99px}.Pet-LionCub-Spooky{background-image:url(spritesmith-main-10.png);background-position:-246px -1100px;width:81px;height:99px}.Pet-LionCub-White{background-image:url(spritesmith-main-10.png);background-position:-328px -1100px;width:81px;height:99px}.Pet-LionCub-Zombie{background-image:url(spritesmith-main-10.png);background-position:-410px -1100px;width:81px;height:99px}.Pet-Mammoth-Base{background-image:url(spritesmith-main-10.png);background-position:-492px -1100px;width:81px;height:99px}.Pet-MantisShrimp-Base{background-image:url(spritesmith-main-10.png);background-position:-574px -1100px;width:81px;height:99px}.Pet-Octopus-Base{background-image:url(spritesmith-main-10.png);background-position:-656px -1100px;width:81px;height:99px}.Pet-Octopus-CottonCandyBlue{background-image:url(spritesmith-main-10.png);background-position:-738px -1100px;width:81px;height:99px}.Pet-Octopus-CottonCandyPink{background-image:url(spritesmith-main-10.png);background-position:-820px -1100px;width:81px;height:99px}.Pet-Octopus-Desert{background-image:url(spritesmith-main-10.png);background-position:-902px -1100px;width:81px;height:99px}.Pet-Octopus-Golden{background-image:url(spritesmith-main-10.png);background-position:-984px -1100px;width:81px;height:99px}.Pet-Octopus-Red{background-image:url(spritesmith-main-10.png);background-position:-1066px -1100px;width:81px;height:99px}.Pet-Octopus-Shade{background-image:url(spritesmith-main-10.png);background-position:-1148px -1100px;width:81px;height:99px}.Pet-Octopus-Skeleton{background-image:url(spritesmith-main-10.png);background-position:-1230px 0;width:81px;height:99px}.Pet-Octopus-White{background-image:url(spritesmith-main-10.png);background-position:-1230px -100px;width:81px;height:99px}.Pet-Octopus-Zombie{background-image:url(spritesmith-main-10.png);background-position:-1230px -200px;width:81px;height:99px}.Pet-Owl-Base{background-image:url(spritesmith-main-10.png);background-position:-1230px -300px;width:81px;height:99px}.Pet-Owl-CottonCandyBlue{background-image:url(spritesmith-main-10.png);background-position:-1230px -400px;width:81px;height:99px}.Pet-Owl-CottonCandyPink{background-image:url(spritesmith-main-10.png);background-position:-1230px -500px;width:81px;height:99px}.Pet-Owl-Desert{background-image:url(spritesmith-main-10.png);background-position:-1230px -600px;width:81px;height:99px}.Pet-Owl-Golden{background-image:url(spritesmith-main-10.png);background-position:-1230px -700px;width:81px;height:99px}.Pet-Owl-Red{background-image:url(spritesmith-main-10.png);background-position:-1230px -800px;width:81px;height:99px}.Pet-Owl-Shade{background-image:url(spritesmith-main-10.png);background-position:-1230px -900px;width:81px;height:99px}.Pet-Owl-Skeleton{background-image:url(spritesmith-main-10.png);background-position:-1230px -1000px;width:81px;height:99px}.Pet-Owl-White{background-image:url(spritesmith-main-10.png);background-position:-1230px -1100px;width:81px;height:99px}.Pet-Owl-Zombie{background-image:url(spritesmith-main-10.png);background-position:0 -1200px;width:81px;height:99px}.Pet-PandaCub-Base{background-image:url(spritesmith-main-10.png);background-position:-82px -1200px;width:81px;height:99px}.Pet-PandaCub-CottonCandyBlue{background-image:url(spritesmith-main-10.png);background-position:-164px -1200px;width:81px;height:99px}.Pet-PandaCub-CottonCandyPink{background-image:url(spritesmith-main-10.png);background-position:-246px -1200px;width:81px;height:99px}.Pet-PandaCub-Desert{background-image:url(spritesmith-main-10.png);background-position:-328px -1200px;width:81px;height:99px}.Pet-PandaCub-Golden{background-image:url(spritesmith-main-10.png);background-position:-410px -1200px;width:81px;height:99px}.Pet-PandaCub-Peppermint{background-image:url(spritesmith-main-10.png);background-position:-492px -1200px;width:81px;height:99px}.Pet-PandaCub-Red{background-image:url(spritesmith-main-10.png);background-position:-574px -1200px;width:81px;height:99px}.Pet-PandaCub-Shade{background-image:url(spritesmith-main-10.png);background-position:-656px -1200px;width:81px;height:99px}.Pet-PandaCub-Skeleton{background-image:url(spritesmith-main-10.png);background-position:-738px -1200px;width:81px;height:99px}.Pet-PandaCub-Spooky{background-image:url(spritesmith-main-10.png);background-position:-820px -1200px;width:81px;height:99px}.Pet-PandaCub-White{background-image:url(spritesmith-main-10.png);background-position:-902px -1200px;width:81px;height:99px}.Pet-PandaCub-Zombie{background-image:url(spritesmith-main-10.png);background-position:-984px -1200px;width:81px;height:99px}.Pet-Parrot-Base{background-image:url(spritesmith-main-10.png);background-position:-1066px -1200px;width:81px;height:99px}.Pet-Parrot-CottonCandyBlue{background-image:url(spritesmith-main-10.png);background-position:-1148px -1200px;width:81px;height:99px}.Pet-Parrot-CottonCandyPink{background-image:url(spritesmith-main-10.png);background-position:-1230px -1200px;width:81px;height:99px}.Pet-Parrot-Desert{background-image:url(spritesmith-main-10.png);background-position:-1312px 0;width:81px;height:99px}.Pet-Parrot-Golden{background-image:url(spritesmith-main-10.png);background-position:-1312px -100px;width:81px;height:99px}.Pet-Parrot-Red{background-image:url(spritesmith-main-10.png);background-position:-1312px -200px;width:81px;height:99px}.Pet-Parrot-Shade{background-image:url(spritesmith-main-10.png);background-position:-1312px -300px;width:81px;height:99px}.Pet-Parrot-Skeleton{background-image:url(spritesmith-main-10.png);background-position:-1312px -400px;width:81px;height:99px}.Pet-Parrot-White{background-image:url(spritesmith-main-10.png);background-position:-1312px -500px;width:81px;height:99px}.Pet-Parrot-Zombie{background-image:url(spritesmith-main-10.png);background-position:-1312px -600px;width:81px;height:99px}.Pet-Penguin-Base{background-image:url(spritesmith-main-10.png);background-position:-1312px -700px;width:81px;height:99px}.Pet-Penguin-CottonCandyBlue{background-image:url(spritesmith-main-10.png);background-position:-1312px -800px;width:81px;height:99px}.Pet-Penguin-CottonCandyPink{background-image:url(spritesmith-main-10.png);background-position:-1312px -900px;width:81px;height:99px}.Pet-Penguin-Desert{background-image:url(spritesmith-main-10.png);background-position:-1312px -1000px;width:81px;height:99px}.Pet-Penguin-Golden{background-image:url(spritesmith-main-10.png);background-position:-1312px -1100px;width:81px;height:99px}.Pet-Penguin-Red{background-image:url(spritesmith-main-10.png);background-position:-1312px -1200px;width:81px;height:99px}.Pet-Penguin-Shade{background-image:url(spritesmith-main-10.png);background-position:-1394px 0;width:81px;height:99px}.Pet-Penguin-Skeleton{background-image:url(spritesmith-main-10.png);background-position:-1394px -100px;width:81px;height:99px}.Pet-Penguin-White{background-image:url(spritesmith-main-10.png);background-position:-1394px -200px;width:81px;height:99px}.Pet-Penguin-Zombie{background-image:url(spritesmith-main-10.png);background-position:-1394px -300px;width:81px;height:99px}.Pet-Phoenix-Base{background-image:url(spritesmith-main-10.png);background-position:-1394px -400px;width:81px;height:99px}.Pet-Rat-Base{background-image:url(spritesmith-main-10.png);background-position:-1394px -500px;width:81px;height:99px}.Pet-Rat-CottonCandyBlue{background-image:url(spritesmith-main-10.png);background-position:-1394px -600px;width:81px;height:99px}.Pet-Rat-CottonCandyPink{background-image:url(spritesmith-main-10.png);background-position:-1394px -700px;width:81px;height:99px}.Pet-Rat-Desert{background-image:url(spritesmith-main-10.png);background-position:-1394px -800px;width:81px;height:99px}.Pet-Rat-Golden{background-image:url(spritesmith-main-10.png);background-position:-1394px -900px;width:81px;height:99px}.Pet-Rat-Red{background-image:url(spritesmith-main-10.png);background-position:-1394px -1000px;width:81px;height:99px}.Pet-Rat-Shade{background-image:url(spritesmith-main-10.png);background-position:-1394px -1100px;width:81px;height:99px}.Pet-Rat-Skeleton{background-image:url(spritesmith-main-10.png);background-position:-1394px -1200px;width:81px;height:99px}.Pet-Rat-White{background-image:url(spritesmith-main-10.png);background-position:0 -1300px;width:81px;height:99px}.Pet-Rat-Zombie{background-image:url(spritesmith-main-10.png);background-position:-82px -1300px;width:81px;height:99px}.Pet-Rock-Base{background-image:url(spritesmith-main-10.png);background-position:-164px -1300px;width:81px;height:99px}.Pet-Rock-CottonCandyBlue{background-image:url(spritesmith-main-10.png);background-position:-246px -1300px;width:81px;height:99px}.Pet-Rock-CottonCandyPink{background-image:url(spritesmith-main-10.png);background-position:-328px -1300px;width:81px;height:99px}.Pet-Rock-Desert{background-image:url(spritesmith-main-10.png);background-position:-410px -1300px;width:81px;height:99px}.Pet-Rock-Golden{background-image:url(spritesmith-main-10.png);background-position:-492px -1300px;width:81px;height:99px}.Pet-Rock-Red{background-image:url(spritesmith-main-10.png);background-position:-574px -1300px;width:81px;height:99px}.Pet-Rock-Shade{background-image:url(spritesmith-main-10.png);background-position:-656px -1300px;width:81px;height:99px}.Pet-Rock-Skeleton{background-image:url(spritesmith-main-10.png);background-position:-738px -1300px;width:81px;height:99px}.Pet-Rock-White{background-image:url(spritesmith-main-10.png);background-position:-820px -1300px;width:81px;height:99px}.Pet-Rock-Zombie{background-image:url(spritesmith-main-10.png);background-position:-902px -1300px;width:81px;height:99px}.Pet-Rooster-Base{background-image:url(spritesmith-main-10.png);background-position:-984px -1300px;width:81px;height:99px}.Pet-Rooster-CottonCandyBlue{background-image:url(spritesmith-main-10.png);background-position:-1066px -1300px;width:81px;height:99px}.Pet-Rooster-CottonCandyPink{background-image:url(spritesmith-main-10.png);background-position:-1148px -1300px;width:81px;height:99px}.Pet-Rooster-Desert{background-image:url(spritesmith-main-10.png);background-position:-1230px -1300px;width:81px;height:99px}.Pet-Rooster-Golden{background-image:url(spritesmith-main-10.png);background-position:-1312px -1300px;width:81px;height:99px}.Pet-Rooster-Red{background-image:url(spritesmith-main-10.png);background-position:-1394px -1300px;width:81px;height:99px}.Pet-Rooster-Shade{background-image:url(spritesmith-main-10.png);background-position:-1476px 0;width:81px;height:99px}.Pet-Rooster-Skeleton{background-image:url(spritesmith-main-10.png);background-position:-1476px -100px;width:81px;height:99px}.Pet-Rooster-White{background-image:url(spritesmith-main-10.png);background-position:-1476px -200px;width:81px;height:99px}.Pet-Rooster-Zombie{background-image:url(spritesmith-main-10.png);background-position:-1476px -300px;width:81px;height:99px}.Pet-Seahorse-Base{background-image:url(spritesmith-main-10.png);background-position:-1476px -400px;width:81px;height:99px}.Pet-Seahorse-CottonCandyBlue{background-image:url(spritesmith-main-10.png);background-position:-1476px -500px;width:81px;height:99px}.Pet-Seahorse-CottonCandyPink{background-image:url(spritesmith-main-10.png);background-position:-1476px -600px;width:81px;height:99px}.Pet-Seahorse-Desert{background-image:url(spritesmith-main-10.png);background-position:-1476px -700px;width:81px;height:99px}.Pet-Seahorse-Golden{background-image:url(spritesmith-main-10.png);background-position:-1476px -800px;width:81px;height:99px}.Pet-Seahorse-Red{background-image:url(spritesmith-main-10.png);background-position:-1476px -900px;width:81px;height:99px}.Pet-Seahorse-Shade{background-image:url(spritesmith-main-10.png);background-position:-1476px -1000px;width:81px;height:99px}.Pet-Seahorse-Skeleton{background-image:url(spritesmith-main-10.png);background-position:-1476px -1100px;width:81px;height:99px}.Pet-Seahorse-White{background-image:url(spritesmith-main-10.png);background-position:-1476px -1200px;width:81px;height:99px}.Pet-Seahorse-Zombie{background-image:url(spritesmith-main-10.png);background-position:-1476px -1300px;width:81px;height:99px}.Pet-Sheep-Base{background-image:url(spritesmith-main-10.png);background-position:0 -1400px;width:81px;height:99px}.Pet-Sheep-CottonCandyBlue{background-image:url(spritesmith-main-10.png);background-position:-82px -1400px;width:81px;height:99px}.Pet-Sheep-CottonCandyPink{background-image:url(spritesmith-main-10.png);background-position:-164px -1400px;width:81px;height:99px}.Pet-Sheep-Desert{background-image:url(spritesmith-main-10.png);background-position:-246px -1400px;width:81px;height:99px}.Pet-Sheep-Golden{background-image:url(spritesmith-main-10.png);background-position:-328px -1400px;width:81px;height:99px}.Pet-Sheep-Red{background-image:url(spritesmith-main-10.png);background-position:-410px -1400px;width:81px;height:99px}.Pet-Sheep-Shade{background-image:url(spritesmith-main-10.png);background-position:-492px -1400px;width:81px;height:99px}.Pet-Sheep-Skeleton{background-image:url(spritesmith-main-10.png);background-position:-574px -1400px;width:81px;height:99px}.Pet-Sheep-White{background-image:url(spritesmith-main-10.png);background-position:-656px -1400px;width:81px;height:99px}.Pet-Sheep-Zombie{background-image:url(spritesmith-main-10.png);background-position:-738px -1400px;width:81px;height:99px}.Pet-Slime-Base{background-image:url(spritesmith-main-10.png);background-position:-820px -1400px;width:81px;height:99px}.Pet-Slime-CottonCandyBlue{background-image:url(spritesmith-main-10.png);background-position:-902px -1400px;width:81px;height:99px}.Pet-Slime-CottonCandyPink{background-image:url(spritesmith-main-10.png);background-position:-984px -1400px;width:81px;height:99px}.Pet-Slime-Desert{background-image:url(spritesmith-main-10.png);background-position:-1066px -1400px;width:81px;height:99px}.Pet-Slime-Golden{background-image:url(spritesmith-main-10.png);background-position:-1148px -1400px;width:81px;height:99px}.Pet-Slime-Red{background-image:url(spritesmith-main-10.png);background-position:-1230px -1400px;width:81px;height:99px}.Pet-Slime-Shade{background-image:url(spritesmith-main-10.png);background-position:-1312px -1400px;width:81px;height:99px}.Pet-Slime-Skeleton{background-image:url(spritesmith-main-10.png);background-position:-1394px -1400px;width:81px;height:99px}.Pet-Slime-White{background-image:url(spritesmith-main-10.png);background-position:-1476px -1400px;width:81px;height:99px}.Pet-Slime-Zombie{background-image:url(spritesmith-main-10.png);background-position:-1558px 0;width:81px;height:99px}.Pet-Snake-Base{background-image:url(spritesmith-main-10.png);background-position:-1558px -100px;width:81px;height:99px}.Pet-Snake-CottonCandyBlue{background-image:url(spritesmith-main-10.png);background-position:-1558px -200px;width:81px;height:99px}.Pet-Snake-CottonCandyPink{background-image:url(spritesmith-main-10.png);background-position:-1558px -300px;width:81px;height:99px}.Pet-Snake-Desert{background-image:url(spritesmith-main-10.png);background-position:-1558px -400px;width:81px;height:99px}.Pet-Snake-Golden{background-image:url(spritesmith-main-10.png);background-position:-1558px -500px;width:81px;height:99px}.Pet-Snake-Red{background-image:url(spritesmith-main-10.png);background-position:-1558px -600px;width:81px;height:99px}.Pet-Snake-Shade{background-image:url(spritesmith-main-10.png);background-position:-1558px -700px;width:81px;height:99px}.Pet-Snake-Skeleton{background-image:url(spritesmith-main-10.png);background-position:-1558px -800px;width:81px;height:99px}.Pet-Snake-White{background-image:url(spritesmith-main-10.png);background-position:-1558px -900px;width:81px;height:99px}.Pet-Snake-Zombie{background-image:url(spritesmith-main-10.png);background-position:-1558px -1000px;width:81px;height:99px}.Pet-Spider-Base{background-image:url(spritesmith-main-10.png);background-position:-1558px -1100px;width:81px;height:99px}.Pet-Spider-CottonCandyBlue{background-image:url(spritesmith-main-10.png);background-position:-1558px -1200px;width:81px;height:99px}.Pet-Spider-CottonCandyPink{background-image:url(spritesmith-main-10.png);background-position:-1558px -1300px;width:81px;height:99px}.Pet-Spider-Desert{background-image:url(spritesmith-main-10.png);background-position:-1558px -1400px;width:81px;height:99px}.Pet-Spider-Golden{background-image:url(spritesmith-main-10.png);background-position:0 -1500px;width:81px;height:99px}.Pet-Spider-Red{background-image:url(spritesmith-main-10.png);background-position:-82px -1500px;width:81px;height:99px}.Pet-Spider-Shade{background-image:url(spritesmith-main-10.png);background-position:-164px -1500px;width:81px;height:99px}.Pet-Spider-Skeleton{background-image:url(spritesmith-main-10.png);background-position:-246px -1500px;width:81px;height:99px}.Pet-Spider-White{background-image:url(spritesmith-main-10.png);background-position:-328px -1500px;width:81px;height:99px}.Pet-Spider-Zombie{background-image:url(spritesmith-main-10.png);background-position:-410px -1500px;width:81px;height:99px}.Pet-TRex-Base{background-image:url(spritesmith-main-10.png);background-position:-492px -1500px;width:81px;height:99px}.Pet-TRex-CottonCandyBlue{background-image:url(spritesmith-main-10.png);background-position:-574px -1500px;width:81px;height:99px}.Pet-TRex-CottonCandyPink{background-image:url(spritesmith-main-10.png);background-position:-656px -1500px;width:81px;height:99px}.Pet-TRex-Desert{background-image:url(spritesmith-main-10.png);background-position:-738px -1500px;width:81px;height:99px}.Pet-TRex-Golden{background-image:url(spritesmith-main-10.png);background-position:-820px -1500px;width:81px;height:99px}.Pet-TRex-Red{background-image:url(spritesmith-main-10.png);background-position:-902px -1500px;width:81px;height:99px}.Pet-TRex-Shade{background-image:url(spritesmith-main-10.png);background-position:-984px -1500px;width:81px;height:99px}.Pet-TRex-Skeleton{background-image:url(spritesmith-main-10.png);background-position:-1066px -1500px;width:81px;height:99px}.Pet-TRex-White{background-image:url(spritesmith-main-10.png);background-position:-1148px -1500px;width:81px;height:99px}.Pet-TRex-Zombie{background-image:url(spritesmith-main-10.png);background-position:-1230px -1500px;width:81px;height:99px}.Pet-Tiger-Veteran{background-image:url(spritesmith-main-10.png);background-position:-1312px -1500px;width:81px;height:99px}.Pet-TigerCub-Base{background-image:url(spritesmith-main-10.png);background-position:-1394px -1500px;width:81px;height:99px}.Pet-TigerCub-CottonCandyBlue{background-image:url(spritesmith-main-10.png);background-position:-1476px -1500px;width:81px;height:99px}.Pet-TigerCub-CottonCandyPink{background-image:url(spritesmith-main-10.png);background-position:-1558px -1500px;width:81px;height:99px}.Pet-TigerCub-Desert{background-image:url(spritesmith-main-10.png);background-position:-1640px 0;width:81px;height:99px}.Pet-TigerCub-Golden{background-image:url(spritesmith-main-10.png);background-position:-1640px -100px;width:81px;height:99px}.Pet-TigerCub-Peppermint{background-image:url(spritesmith-main-10.png);background-position:-1640px -200px;width:81px;height:99px}.Pet-TigerCub-Red{background-image:url(spritesmith-main-10.png);background-position:-1640px -300px;width:81px;height:99px}.Pet-TigerCub-Shade{background-image:url(spritesmith-main-10.png);background-position:-1640px -400px;width:81px;height:99px}.Pet-TigerCub-Skeleton{background-image:url(spritesmith-main-10.png);background-position:-1640px -500px;width:81px;height:99px}.Pet-TigerCub-Spooky{background-image:url(spritesmith-main-10.png);background-position:-1640px -600px;width:81px;height:99px}.Pet-TigerCub-White{background-image:url(spritesmith-main-10.png);background-position:-1640px -700px;width:81px;height:99px}.Pet-TigerCub-Zombie{background-image:url(spritesmith-main-10.png);background-position:-1640px -800px;width:81px;height:99px}.Pet-Turkey-Base{background-image:url(spritesmith-main-10.png);background-position:-1640px -900px;width:81px;height:99px}.Pet-Turkey-Gilded{background-image:url(spritesmith-main-10.png);background-position:-1640px -1000px;width:81px;height:99px}.Pet-Whale-Base{background-image:url(spritesmith-main-10.png);background-position:-1640px -1100px;width:81px;height:99px}.Pet-Whale-CottonCandyBlue{background-image:url(spritesmith-main-11.png);background-position:-82px 0;width:81px;height:99px}.Pet-Whale-CottonCandyPink{background-image:url(spritesmith-main-11.png);background-position:-164px -300px;width:81px;height:99px}.Pet-Whale-Desert{background-image:url(spritesmith-main-11.png);background-position:-164px 0;width:81px;height:99px}.Pet-Whale-Golden{background-image:url(spritesmith-main-11.png);background-position:0 -100px;width:81px;height:99px}.Pet-Whale-Red{background-image:url(spritesmith-main-11.png);background-position:-82px -100px;width:81px;height:99px}.Pet-Whale-Shade{background-image:url(spritesmith-main-11.png);background-position:-164px -100px;width:81px;height:99px}.Pet-Whale-Skeleton{background-image:url(spritesmith-main-11.png);background-position:-246px 0;width:81px;height:99px}.Pet-Whale-White{background-image:url(spritesmith-main-11.png);background-position:-246px -100px;width:81px;height:99px}.Pet-Whale-Zombie{background-image:url(spritesmith-main-11.png);background-position:0 -200px;width:81px;height:99px}.Pet-Wolf-Base{background-image:url(spritesmith-main-11.png);background-position:-82px -200px;width:81px;height:99px}.Pet-Wolf-CottonCandyBlue{background-image:url(spritesmith-main-11.png);background-position:-164px -200px;width:81px;height:99px}.Pet-Wolf-CottonCandyPink{background-image:url(spritesmith-main-11.png);background-position:-246px -200px;width:81px;height:99px}.Pet-Wolf-Desert{background-image:url(spritesmith-main-11.png);background-position:-328px 0;width:81px;height:99px}.Pet-Wolf-Golden{background-image:url(spritesmith-main-11.png);background-position:-328px -100px;width:81px;height:99px}.Pet-Wolf-Peppermint{background-image:url(spritesmith-main-11.png);background-position:-328px -200px;width:81px;height:99px}.Pet-Wolf-Red{background-image:url(spritesmith-main-11.png);background-position:0 -300px;width:81px;height:99px}.Pet-Wolf-Shade{background-image:url(spritesmith-main-11.png);background-position:-82px -300px;width:81px;height:99px}.Pet-Wolf-Skeleton{background-image:url(spritesmith-main-11.png);background-position:0 0;width:81px;height:99px}.Pet-Wolf-Spooky{background-image:url(spritesmith-main-11.png);background-position:-246px -300px;width:81px;height:99px}.Pet-Wolf-Veteran{background-image:url(spritesmith-main-11.png);background-position:-328px -300px;width:81px;height:99px}.Pet-Wolf-White{background-image:url(spritesmith-main-11.png);background-position:-410px 0;width:81px;height:99px}.Pet-Wolf-Zombie{background-image:url(spritesmith-main-11.png);background-position:-410px -100px;width:81px;height:99px}.Pet_HatchingPotion_Base{background-image:url(spritesmith-main-11.png);background-position:-410px -252px;width:48px;height:51px}.Pet_HatchingPotion_CottonCandyBlue{background-image:url(spritesmith-main-11.png);background-position:-147px -400px;width:48px;height:51px}.Pet_HatchingPotion_CottonCandyPink{background-image:url(spritesmith-main-11.png);background-position:-410px -304px;width:48px;height:51px}.Pet_HatchingPotion_Desert{background-image:url(spritesmith-main-11.png);background-position:0 -400px;width:48px;height:51px}.Pet_HatchingPotion_Golden{background-image:url(spritesmith-main-11.png);background-position:-49px -400px;width:48px;height:51px}.Pet_HatchingPotion_Peppermint{background-image:url(spritesmith-main-11.png);background-position:-98px -400px;width:48px;height:51px}.Pet_HatchingPotion_Red{background-image:url(spritesmith-main-11.png);background-position:-410px -200px;width:48px;height:51px}.Pet_HatchingPotion_Shade{background-image:url(spritesmith-main-11.png);background-position:-196px -400px;width:48px;height:51px}.Pet_HatchingPotion_Skeleton{background-image:url(spritesmith-main-11.png);background-position:-245px -400px;width:48px;height:51px}.Pet_HatchingPotion_Spooky{background-image:url(spritesmith-main-11.png);background-position:-294px -400px;width:48px;height:51px}.Pet_HatchingPotion_White{background-image:url(spritesmith-main-11.png);background-position:-343px -400px;width:48px;height:51px}.Pet_HatchingPotion_Zombie{background-image:url(spritesmith-main-11.png);background-position:-392px -400px;width:48px;height:51px}.hair_base_1_porange{background-image:url(spritesmith-main-2.png);background-position:-91px 0;width:90px;height:90px}.customize-option.hair_base_1_porange{background-image:url(spritesmith-main-2.png);background-position:-116px -15px;width:60px;height:60px}.hair_base_1_porange2{background-image:url(spritesmith-main-2.png);background-position:-728px -1092px;width:90px;height:90px}.customize-option.hair_base_1_porange2{background-image:url(spritesmith-main-2.png);background-position:-753px -1107px;width:60px;height:60px}.hair_base_1_ppink{background-image:url(spritesmith-main-2.png);background-position:0 -91px;width:90px;height:90px}.customize-option.hair_base_1_ppink{background-image:url(spritesmith-main-2.png);background-position:-25px -106px;width:60px;height:60px}.hair_base_1_ppink2{background-image:url(spritesmith-main-2.png);background-position:-91px -91px;width:90px;height:90px}.customize-option.hair_base_1_ppink2{background-image:url(spritesmith-main-2.png);background-position:-116px -106px;width:60px;height:60px}.hair_base_1_ppurple{background-image:url(spritesmith-main-2.png);background-position:-182px 0;width:90px;height:90px}.customize-option.hair_base_1_ppurple{background-image:url(spritesmith-main-2.png);background-position:-207px -15px;width:60px;height:60px}.hair_base_1_ppurple2{background-image:url(spritesmith-main-2.png);background-position:-182px -91px;width:90px;height:90px}.customize-option.hair_base_1_ppurple2{background-image:url(spritesmith-main-2.png);background-position:-207px -106px;width:60px;height:60px}.hair_base_1_pumpkin{background-image:url(spritesmith-main-2.png);background-position:0 -182px;width:90px;height:90px}.customize-option.hair_base_1_pumpkin{background-image:url(spritesmith-main-2.png);background-position:-25px -197px;width:60px;height:60px}.hair_base_1_purple{background-image:url(spritesmith-main-2.png);background-position:-91px -182px;width:90px;height:90px}.customize-option.hair_base_1_purple{background-image:url(spritesmith-main-2.png);background-position:-116px -197px;width:60px;height:60px}.hair_base_1_pyellow{background-image:url(spritesmith-main-2.png);background-position:-182px -182px;width:90px;height:90px}.customize-option.hair_base_1_pyellow{background-image:url(spritesmith-main-2.png);background-position:-207px -197px;width:60px;height:60px}.hair_base_1_pyellow2{background-image:url(spritesmith-main-2.png);background-position:-273px 0;width:90px;height:90px}.customize-option.hair_base_1_pyellow2{background-image:url(spritesmith-main-2.png);background-position:-298px -15px;width:60px;height:60px}.hair_base_1_rainbow{background-image:url(spritesmith-main-2.png);background-position:-273px -91px;width:90px;height:90px}.customize-option.hair_base_1_rainbow{background-image:url(spritesmith-main-2.png);background-position:-298px -106px;width:60px;height:60px}.hair_base_1_red{background-image:url(spritesmith-main-2.png);background-position:-273px -182px;width:90px;height:90px}.customize-option.hair_base_1_red{background-image:url(spritesmith-main-2.png);background-position:-298px -197px;width:60px;height:60px}.hair_base_1_snowy{background-image:url(spritesmith-main-2.png);background-position:0 -273px;width:90px;height:90px}.customize-option.hair_base_1_snowy{background-image:url(spritesmith-main-2.png);background-position:-25px -288px;width:60px;height:60px}.hair_base_1_white{background-image:url(spritesmith-main-2.png);background-position:-91px -273px;width:90px;height:90px}.customize-option.hair_base_1_white{background-image:url(spritesmith-main-2.png);background-position:-116px -288px;width:60px;height:60px}.hair_base_1_winternight{background-image:url(spritesmith-main-2.png);background-position:-182px -273px;width:90px;height:90px}.customize-option.hair_base_1_winternight{background-image:url(spritesmith-main-2.png);background-position:-207px -288px;width:60px;height:60px}.hair_base_1_winterstar{background-image:url(spritesmith-main-2.png);background-position:-273px -273px;width:90px;height:90px}.customize-option.hair_base_1_winterstar{background-image:url(spritesmith-main-2.png);background-position:-298px -288px;width:60px;height:60px}.hair_base_1_yellow{background-image:url(spritesmith-main-2.png);background-position:-364px 0;width:90px;height:90px}.customize-option.hair_base_1_yellow{background-image:url(spritesmith-main-2.png);background-position:-389px -15px;width:60px;height:60px}.hair_base_1_zombie{background-image:url(spritesmith-main-2.png);background-position:-364px -91px;width:90px;height:90px}.customize-option.hair_base_1_zombie{background-image:url(spritesmith-main-2.png);background-position:-389px -106px;width:60px;height:60px}.hair_base_2_TRUred{background-image:url(spritesmith-main-2.png);background-position:-364px -182px;width:90px;height:90px}.customize-option.hair_base_2_TRUred{background-image:url(spritesmith-main-2.png);background-position:-389px -197px;width:60px;height:60px}.hair_base_2_aurora{background-image:url(spritesmith-main-2.png);background-position:-364px -273px;width:90px;height:90px}.customize-option.hair_base_2_aurora{background-image:url(spritesmith-main-2.png);background-position:-389px -288px;width:60px;height:60px}.hair_base_2_black{background-image:url(spritesmith-main-2.png);background-position:0 -364px;width:90px;height:90px}.customize-option.hair_base_2_black{background-image:url(spritesmith-main-2.png);background-position:-25px -379px;width:60px;height:60px}.hair_base_2_blond{background-image:url(spritesmith-main-2.png);background-position:-91px -364px;width:90px;height:90px}.customize-option.hair_base_2_blond{background-image:url(spritesmith-main-2.png);background-position:-116px -379px;width:60px;height:60px}.hair_base_2_blue{background-image:url(spritesmith-main-2.png);background-position:-182px -364px;width:90px;height:90px}.customize-option.hair_base_2_blue{background-image:url(spritesmith-main-2.png);background-position:-207px -379px;width:60px;height:60px}.hair_base_2_brown{background-image:url(spritesmith-main-2.png);background-position:-273px -364px;width:90px;height:90px}.customize-option.hair_base_2_brown{background-image:url(spritesmith-main-2.png);background-position:-298px -379px;width:60px;height:60px}.hair_base_2_candycane{background-image:url(spritesmith-main-2.png);background-position:-364px -364px;width:90px;height:90px}.customize-option.hair_base_2_candycane{background-image:url(spritesmith-main-2.png);background-position:-389px -379px;width:60px;height:60px}.hair_base_2_candycorn{background-image:url(spritesmith-main-2.png);background-position:-455px 0;width:90px;height:90px}.customize-option.hair_base_2_candycorn{background-image:url(spritesmith-main-2.png);background-position:-480px -15px;width:60px;height:60px}.hair_base_2_festive{background-image:url(spritesmith-main-2.png);background-position:-455px -91px;width:90px;height:90px}.customize-option.hair_base_2_festive{background-image:url(spritesmith-main-2.png);background-position:-480px -106px;width:60px;height:60px}.hair_base_2_frost{background-image:url(spritesmith-main-2.png);background-position:-455px -182px;width:90px;height:90px}.customize-option.hair_base_2_frost{background-image:url(spritesmith-main-2.png);background-position:-480px -197px;width:60px;height:60px}.hair_base_2_ghostwhite{background-image:url(spritesmith-main-2.png);background-position:-455px -273px;width:90px;height:90px}.customize-option.hair_base_2_ghostwhite{background-image:url(spritesmith-main-2.png);background-position:-480px -288px;width:60px;height:60px}.hair_base_2_green{background-image:url(spritesmith-main-2.png);background-position:-455px -364px;width:90px;height:90px}.customize-option.hair_base_2_green{background-image:url(spritesmith-main-2.png);background-position:-480px -379px;width:60px;height:60px}.hair_base_2_halloween{background-image:url(spritesmith-main-2.png);background-position:0 -455px;width:90px;height:90px}.customize-option.hair_base_2_halloween{background-image:url(spritesmith-main-2.png);background-position:-25px -470px;width:60px;height:60px}.hair_base_2_holly{background-image:url(spritesmith-main-2.png);background-position:-91px -455px;width:90px;height:90px}.customize-option.hair_base_2_holly{background-image:url(spritesmith-main-2.png);background-position:-116px -470px;width:60px;height:60px}.hair_base_2_hollygreen{background-image:url(spritesmith-main-2.png);background-position:-182px -455px;width:90px;height:90px}.customize-option.hair_base_2_hollygreen{background-image:url(spritesmith-main-2.png);background-position:-207px -470px;width:60px;height:60px}.hair_base_2_midnight{background-image:url(spritesmith-main-2.png);background-position:-273px -455px;width:90px;height:90px}.customize-option.hair_base_2_midnight{background-image:url(spritesmith-main-2.png);background-position:-298px -470px;width:60px;height:60px}.hair_base_2_pblue{background-image:url(spritesmith-main-2.png);background-position:-364px -455px;width:90px;height:90px}.customize-option.hair_base_2_pblue{background-image:url(spritesmith-main-2.png);background-position:-389px -470px;width:60px;height:60px}.hair_base_2_pblue2{background-image:url(spritesmith-main-2.png);background-position:-455px -455px;width:90px;height:90px}.customize-option.hair_base_2_pblue2{background-image:url(spritesmith-main-2.png);background-position:-480px -470px;width:60px;height:60px}.hair_base_2_peppermint{background-image:url(spritesmith-main-2.png);background-position:-546px 0;width:90px;height:90px}.customize-option.hair_base_2_peppermint{background-image:url(spritesmith-main-2.png);background-position:-571px -15px;width:60px;height:60px}.hair_base_2_pgreen{background-image:url(spritesmith-main-2.png);background-position:-546px -91px;width:90px;height:90px}.customize-option.hair_base_2_pgreen{background-image:url(spritesmith-main-2.png);background-position:-571px -106px;width:60px;height:60px}.hair_base_2_pgreen2{background-image:url(spritesmith-main-2.png);background-position:-546px -182px;width:90px;height:90px}.customize-option.hair_base_2_pgreen2{background-image:url(spritesmith-main-2.png);background-position:-571px -197px;width:60px;height:60px}.hair_base_2_porange{background-image:url(spritesmith-main-2.png);background-position:-546px -273px;width:90px;height:90px}.customize-option.hair_base_2_porange{background-image:url(spritesmith-main-2.png);background-position:-571px -288px;width:60px;height:60px}.hair_base_2_porange2{background-image:url(spritesmith-main-2.png);background-position:-546px -364px;width:90px;height:90px}.customize-option.hair_base_2_porange2{background-image:url(spritesmith-main-2.png);background-position:-571px -379px;width:60px;height:60px}.hair_base_2_ppink{background-image:url(spritesmith-main-2.png);background-position:-546px -455px;width:90px;height:90px}.customize-option.hair_base_2_ppink{background-image:url(spritesmith-main-2.png);background-position:-571px -470px;width:60px;height:60px}.hair_base_2_ppink2{background-image:url(spritesmith-main-2.png);background-position:0 -546px;width:90px;height:90px}.customize-option.hair_base_2_ppink2{background-image:url(spritesmith-main-2.png);background-position:-25px -561px;width:60px;height:60px}.hair_base_2_ppurple{background-image:url(spritesmith-main-2.png);background-position:-91px -546px;width:90px;height:90px}.customize-option.hair_base_2_ppurple{background-image:url(spritesmith-main-2.png);background-position:-116px -561px;width:60px;height:60px}.hair_base_2_ppurple2{background-image:url(spritesmith-main-2.png);background-position:-182px -546px;width:90px;height:90px}.customize-option.hair_base_2_ppurple2{background-image:url(spritesmith-main-2.png);background-position:-207px -561px;width:60px;height:60px}.hair_base_2_pumpkin{background-image:url(spritesmith-main-2.png);background-position:-273px -546px;width:90px;height:90px}.customize-option.hair_base_2_pumpkin{background-image:url(spritesmith-main-2.png);background-position:-298px -561px;width:60px;height:60px}.hair_base_2_purple{background-image:url(spritesmith-main-2.png);background-position:-364px -546px;width:90px;height:90px}.customize-option.hair_base_2_purple{background-image:url(spritesmith-main-2.png);background-position:-389px -561px;width:60px;height:60px}.hair_base_2_pyellow{background-image:url(spritesmith-main-2.png);background-position:-455px -546px;width:90px;height:90px}.customize-option.hair_base_2_pyellow{background-image:url(spritesmith-main-2.png);background-position:-480px -561px;width:60px;height:60px}.hair_base_2_pyellow2{background-image:url(spritesmith-main-2.png);background-position:-546px -546px;width:90px;height:90px}.customize-option.hair_base_2_pyellow2{background-image:url(spritesmith-main-2.png);background-position:-571px -561px;width:60px;height:60px}.hair_base_2_rainbow{background-image:url(spritesmith-main-2.png);background-position:-637px 0;width:90px;height:90px}.customize-option.hair_base_2_rainbow{background-image:url(spritesmith-main-2.png);background-position:-662px -15px;width:60px;height:60px}.hair_base_2_red{background-image:url(spritesmith-main-2.png);background-position:-637px -91px;width:90px;height:90px}.customize-option.hair_base_2_red{background-image:url(spritesmith-main-2.png);background-position:-662px -106px;width:60px;height:60px}.hair_base_2_snowy{background-image:url(spritesmith-main-2.png);background-position:-637px -182px;width:90px;height:90px}.customize-option.hair_base_2_snowy{background-image:url(spritesmith-main-2.png);background-position:-662px -197px;width:60px;height:60px}.hair_base_2_white{background-image:url(spritesmith-main-2.png);background-position:-637px -273px;width:90px;height:90px}.customize-option.hair_base_2_white{background-image:url(spritesmith-main-2.png);background-position:-662px -288px;width:60px;height:60px}.hair_base_2_winternight{background-image:url(spritesmith-main-2.png);background-position:-637px -364px;width:90px;height:90px}.customize-option.hair_base_2_winternight{background-image:url(spritesmith-main-2.png);background-position:-662px -379px;width:60px;height:60px}.hair_base_2_winterstar{background-image:url(spritesmith-main-2.png);background-position:-637px -455px;width:90px;height:90px}.customize-option.hair_base_2_winterstar{background-image:url(spritesmith-main-2.png);background-position:-662px -470px;width:60px;height:60px}.hair_base_2_yellow{background-image:url(spritesmith-main-2.png);background-position:-637px -546px;width:90px;height:90px}.customize-option.hair_base_2_yellow{background-image:url(spritesmith-main-2.png);background-position:-662px -561px;width:60px;height:60px}.hair_base_2_zombie{background-image:url(spritesmith-main-2.png);background-position:0 -637px;width:90px;height:90px}.customize-option.hair_base_2_zombie{background-image:url(spritesmith-main-2.png);background-position:-25px -652px;width:60px;height:60px}.hair_base_3_TRUred{background-image:url(spritesmith-main-2.png);background-position:-91px -637px;width:90px;height:90px}.customize-option.hair_base_3_TRUred{background-image:url(spritesmith-main-2.png);background-position:-116px -652px;width:60px;height:60px}.hair_base_3_aurora{background-image:url(spritesmith-main-2.png);background-position:-182px -637px;width:90px;height:90px}.customize-option.hair_base_3_aurora{background-image:url(spritesmith-main-2.png);background-position:-207px -652px;width:60px;height:60px}.hair_base_3_black{background-image:url(spritesmith-main-2.png);background-position:-273px -637px;width:90px;height:90px}.customize-option.hair_base_3_black{background-image:url(spritesmith-main-2.png);background-position:-298px -652px;width:60px;height:60px}.hair_base_3_blond{background-image:url(spritesmith-main-2.png);background-position:-364px -637px;width:90px;height:90px}.customize-option.hair_base_3_blond{background-image:url(spritesmith-main-2.png);background-position:-389px -652px;width:60px;height:60px}.hair_base_3_blue{background-image:url(spritesmith-main-2.png);background-position:-455px -637px;width:90px;height:90px}.customize-option.hair_base_3_blue{background-image:url(spritesmith-main-2.png);background-position:-480px -652px;width:60px;height:60px}.hair_base_3_brown{background-image:url(spritesmith-main-2.png);background-position:-546px -637px;width:90px;height:90px}.customize-option.hair_base_3_brown{background-image:url(spritesmith-main-2.png);background-position:-571px -652px;width:60px;height:60px}.hair_base_3_candycane{background-image:url(spritesmith-main-2.png);background-position:-637px -637px;width:90px;height:90px}.customize-option.hair_base_3_candycane{background-image:url(spritesmith-main-2.png);background-position:-662px -652px;width:60px;height:60px}.hair_base_3_candycorn{background-image:url(spritesmith-main-2.png);background-position:-728px 0;width:90px;height:90px}.customize-option.hair_base_3_candycorn{background-image:url(spritesmith-main-2.png);background-position:-753px -15px;width:60px;height:60px}.hair_base_3_festive{background-image:url(spritesmith-main-2.png);background-position:-728px -91px;width:90px;height:90px}.customize-option.hair_base_3_festive{background-image:url(spritesmith-main-2.png);background-position:-753px -106px;width:60px;height:60px}.hair_base_3_frost{background-image:url(spritesmith-main-2.png);background-position:-728px -182px;width:90px;height:90px}.customize-option.hair_base_3_frost{background-image:url(spritesmith-main-2.png);background-position:-753px -197px;width:60px;height:60px}.hair_base_3_ghostwhite{background-image:url(spritesmith-main-2.png);background-position:-728px -273px;width:90px;height:90px}.customize-option.hair_base_3_ghostwhite{background-image:url(spritesmith-main-2.png);background-position:-753px -288px;width:60px;height:60px}.hair_base_3_green{background-image:url(spritesmith-main-2.png);background-position:-728px -364px;width:90px;height:90px}.customize-option.hair_base_3_green{background-image:url(spritesmith-main-2.png);background-position:-753px -379px;width:60px;height:60px}.hair_base_3_halloween{background-image:url(spritesmith-main-2.png);background-position:-728px -455px;width:90px;height:90px}.customize-option.hair_base_3_halloween{background-image:url(spritesmith-main-2.png);background-position:-753px -470px;width:60px;height:60px}.hair_base_3_holly{background-image:url(spritesmith-main-2.png);background-position:-728px -546px;width:90px;height:90px}.customize-option.hair_base_3_holly{background-image:url(spritesmith-main-2.png);background-position:-753px -561px;width:60px;height:60px}.hair_base_3_hollygreen{background-image:url(spritesmith-main-2.png);background-position:-728px -637px;width:90px;height:90px}.customize-option.hair_base_3_hollygreen{background-image:url(spritesmith-main-2.png);background-position:-753px -652px;width:60px;height:60px}.hair_base_3_midnight{background-image:url(spritesmith-main-2.png);background-position:0 -728px;width:90px;height:90px}.customize-option.hair_base_3_midnight{background-image:url(spritesmith-main-2.png);background-position:-25px -743px;width:60px;height:60px}.hair_base_3_pblue{background-image:url(spritesmith-main-2.png);background-position:-91px -728px;width:90px;height:90px}.customize-option.hair_base_3_pblue{background-image:url(spritesmith-main-2.png);background-position:-116px -743px;width:60px;height:60px}.hair_base_3_pblue2{background-image:url(spritesmith-main-2.png);background-position:-182px -728px;width:90px;height:90px}.customize-option.hair_base_3_pblue2{background-image:url(spritesmith-main-2.png);background-position:-207px -743px;width:60px;height:60px}.hair_base_3_peppermint{background-image:url(spritesmith-main-2.png);background-position:-273px -728px;width:90px;height:90px}.customize-option.hair_base_3_peppermint{background-image:url(spritesmith-main-2.png);background-position:-298px -743px;width:60px;height:60px}.hair_base_3_pgreen{background-image:url(spritesmith-main-2.png);background-position:-364px -728px;width:90px;height:90px}.customize-option.hair_base_3_pgreen{background-image:url(spritesmith-main-2.png);background-position:-389px -743px;width:60px;height:60px}.hair_base_3_pgreen2{background-image:url(spritesmith-main-2.png);background-position:-455px -728px;width:90px;height:90px}.customize-option.hair_base_3_pgreen2{background-image:url(spritesmith-main-2.png);background-position:-480px -743px;width:60px;height:60px}.hair_base_3_porange{background-image:url(spritesmith-main-2.png);background-position:-546px -728px;width:90px;height:90px}.customize-option.hair_base_3_porange{background-image:url(spritesmith-main-2.png);background-position:-571px -743px;width:60px;height:60px}.hair_base_3_porange2{background-image:url(spritesmith-main-2.png);background-position:-637px -728px;width:90px;height:90px}.customize-option.hair_base_3_porange2{background-image:url(spritesmith-main-2.png);background-position:-662px -743px;width:60px;height:60px}.hair_base_3_ppink{background-image:url(spritesmith-main-2.png);background-position:-728px -728px;width:90px;height:90px}.customize-option.hair_base_3_ppink{background-image:url(spritesmith-main-2.png);background-position:-753px -743px;width:60px;height:60px}.hair_base_3_ppink2{background-image:url(spritesmith-main-2.png);background-position:-819px 0;width:90px;height:90px}.customize-option.hair_base_3_ppink2{background-image:url(spritesmith-main-2.png);background-position:-844px -15px;width:60px;height:60px}.hair_base_3_ppurple{background-image:url(spritesmith-main-2.png);background-position:-819px -91px;width:90px;height:90px}.customize-option.hair_base_3_ppurple{background-image:url(spritesmith-main-2.png);background-position:-844px -106px;width:60px;height:60px}.hair_base_3_ppurple2{background-image:url(spritesmith-main-2.png);background-position:-819px -182px;width:90px;height:90px}.customize-option.hair_base_3_ppurple2{background-image:url(spritesmith-main-2.png);background-position:-844px -197px;width:60px;height:60px}.hair_base_3_pumpkin{background-image:url(spritesmith-main-2.png);background-position:-819px -273px;width:90px;height:90px}.customize-option.hair_base_3_pumpkin{background-image:url(spritesmith-main-2.png);background-position:-844px -288px;width:60px;height:60px}.hair_base_3_purple{background-image:url(spritesmith-main-2.png);background-position:-819px -364px;width:90px;height:90px}.customize-option.hair_base_3_purple{background-image:url(spritesmith-main-2.png);background-position:-844px -379px;width:60px;height:60px}.hair_base_3_pyellow{background-image:url(spritesmith-main-2.png);background-position:-819px -455px;width:90px;height:90px}.customize-option.hair_base_3_pyellow{background-image:url(spritesmith-main-2.png);background-position:-844px -470px;width:60px;height:60px}.hair_base_3_pyellow2{background-image:url(spritesmith-main-2.png);background-position:-819px -546px;width:90px;height:90px}.customize-option.hair_base_3_pyellow2{background-image:url(spritesmith-main-2.png);background-position:-844px -561px;width:60px;height:60px}.hair_base_3_rainbow{background-image:url(spritesmith-main-2.png);background-position:-819px -637px;width:90px;height:90px}.customize-option.hair_base_3_rainbow{background-image:url(spritesmith-main-2.png);background-position:-844px -652px;width:60px;height:60px}.hair_base_3_red{background-image:url(spritesmith-main-2.png);background-position:-819px -728px;width:90px;height:90px}.customize-option.hair_base_3_red{background-image:url(spritesmith-main-2.png);background-position:-844px -743px;width:60px;height:60px}.hair_base_3_snowy{background-image:url(spritesmith-main-2.png);background-position:0 -819px;width:90px;height:90px}.customize-option.hair_base_3_snowy{background-image:url(spritesmith-main-2.png);background-position:-25px -834px;width:60px;height:60px}.hair_base_3_white{background-image:url(spritesmith-main-2.png);background-position:-91px -819px;width:90px;height:90px}.customize-option.hair_base_3_white{background-image:url(spritesmith-main-2.png);background-position:-116px -834px;width:60px;height:60px}.hair_base_3_winternight{background-image:url(spritesmith-main-2.png);background-position:-182px -819px;width:90px;height:90px}.customize-option.hair_base_3_winternight{background-image:url(spritesmith-main-2.png);background-position:-207px -834px;width:60px;height:60px}.hair_base_3_winterstar{background-image:url(spritesmith-main-2.png);background-position:-273px -819px;width:90px;height:90px}.customize-option.hair_base_3_winterstar{background-image:url(spritesmith-main-2.png);background-position:-298px -834px;width:60px;height:60px}.hair_base_3_yellow{background-image:url(spritesmith-main-2.png);background-position:-364px -819px;width:90px;height:90px}.customize-option.hair_base_3_yellow{background-image:url(spritesmith-main-2.png);background-position:-389px -834px;width:60px;height:60px}.hair_base_3_zombie{background-image:url(spritesmith-main-2.png);background-position:-455px -819px;width:90px;height:90px}.customize-option.hair_base_3_zombie{background-image:url(spritesmith-main-2.png);background-position:-480px -834px;width:60px;height:60px}.hair_base_4_TRUred{background-image:url(spritesmith-main-2.png);background-position:-546px -819px;width:90px;height:90px}.customize-option.hair_base_4_TRUred{background-image:url(spritesmith-main-2.png);background-position:-571px -834px;width:60px;height:60px}.hair_base_4_aurora{background-image:url(spritesmith-main-2.png);background-position:-637px -819px;width:90px;height:90px}.customize-option.hair_base_4_aurora{background-image:url(spritesmith-main-2.png);background-position:-662px -834px;width:60px;height:60px}.hair_base_4_black{background-image:url(spritesmith-main-2.png);background-position:-728px -819px;width:90px;height:90px}.customize-option.hair_base_4_black{background-image:url(spritesmith-main-2.png);background-position:-753px -834px;width:60px;height:60px}.hair_base_4_blond{background-image:url(spritesmith-main-2.png);background-position:-819px -819px;width:90px;height:90px}.customize-option.hair_base_4_blond{background-image:url(spritesmith-main-2.png);background-position:-844px -834px;width:60px;height:60px}.hair_base_4_blue{background-image:url(spritesmith-main-2.png);background-position:-910px 0;width:90px;height:90px}.customize-option.hair_base_4_blue{background-image:url(spritesmith-main-2.png);background-position:-935px -15px;width:60px;height:60px}.hair_base_4_brown{background-image:url(spritesmith-main-2.png);background-position:-910px -91px;width:90px;height:90px}.customize-option.hair_base_4_brown{background-image:url(spritesmith-main-2.png);background-position:-935px -106px;width:60px;height:60px}.hair_base_4_candycane{background-image:url(spritesmith-main-2.png);background-position:-910px -182px;width:90px;height:90px}.customize-option.hair_base_4_candycane{background-image:url(spritesmith-main-2.png);background-position:-935px -197px;width:60px;height:60px}.hair_base_4_candycorn{background-image:url(spritesmith-main-2.png);background-position:-910px -273px;width:90px;height:90px}.customize-option.hair_base_4_candycorn{background-image:url(spritesmith-main-2.png);background-position:-935px -288px;width:60px;height:60px}.hair_base_4_festive{background-image:url(spritesmith-main-2.png);background-position:-910px -364px;width:90px;height:90px}.customize-option.hair_base_4_festive{background-image:url(spritesmith-main-2.png);background-position:-935px -379px;width:60px;height:60px}.hair_base_4_frost{background-image:url(spritesmith-main-2.png);background-position:-910px -455px;width:90px;height:90px}.customize-option.hair_base_4_frost{background-image:url(spritesmith-main-2.png);background-position:-935px -470px;width:60px;height:60px}.hair_base_4_ghostwhite{background-image:url(spritesmith-main-2.png);background-position:-910px -546px;width:90px;height:90px}.customize-option.hair_base_4_ghostwhite{background-image:url(spritesmith-main-2.png);background-position:-935px -561px;width:60px;height:60px}.hair_base_4_green{background-image:url(spritesmith-main-2.png);background-position:-910px -637px;width:90px;height:90px}.customize-option.hair_base_4_green{background-image:url(spritesmith-main-2.png);background-position:-935px -652px;width:60px;height:60px}.hair_base_4_halloween{background-image:url(spritesmith-main-2.png);background-position:-910px -728px;width:90px;height:90px}.customize-option.hair_base_4_halloween{background-image:url(spritesmith-main-2.png);background-position:-935px -743px;width:60px;height:60px}.hair_base_4_holly{background-image:url(spritesmith-main-2.png);background-position:-910px -819px;width:90px;height:90px}.customize-option.hair_base_4_holly{background-image:url(spritesmith-main-2.png);background-position:-935px -834px;width:60px;height:60px}.hair_base_4_hollygreen{background-image:url(spritesmith-main-2.png);background-position:0 -910px;width:90px;height:90px}.customize-option.hair_base_4_hollygreen{background-image:url(spritesmith-main-2.png);background-position:-25px -925px;width:60px;height:60px}.hair_base_4_midnight{background-image:url(spritesmith-main-2.png);background-position:-91px -910px;width:90px;height:90px}.customize-option.hair_base_4_midnight{background-image:url(spritesmith-main-2.png);background-position:-116px -925px;width:60px;height:60px}.hair_base_4_pblue{background-image:url(spritesmith-main-2.png);background-position:-182px -910px;width:90px;height:90px}.customize-option.hair_base_4_pblue{background-image:url(spritesmith-main-2.png);background-position:-207px -925px;width:60px;height:60px}.hair_base_4_pblue2{background-image:url(spritesmith-main-2.png);background-position:-273px -910px;width:90px;height:90px}.customize-option.hair_base_4_pblue2{background-image:url(spritesmith-main-2.png);background-position:-298px -925px;width:60px;height:60px}.hair_base_4_peppermint{background-image:url(spritesmith-main-2.png);background-position:-364px -910px;width:90px;height:90px}.customize-option.hair_base_4_peppermint{background-image:url(spritesmith-main-2.png);background-position:-389px -925px;width:60px;height:60px}.hair_base_4_pgreen{background-image:url(spritesmith-main-2.png);background-position:-455px -910px;width:90px;height:90px}.customize-option.hair_base_4_pgreen{background-image:url(spritesmith-main-2.png);background-position:-480px -925px;width:60px;height:60px}.hair_base_4_pgreen2{background-image:url(spritesmith-main-2.png);background-position:-546px -910px;width:90px;height:90px}.customize-option.hair_base_4_pgreen2{background-image:url(spritesmith-main-2.png);background-position:-571px -925px;width:60px;height:60px}.hair_base_4_porange{background-image:url(spritesmith-main-2.png);background-position:-637px -910px;width:90px;height:90px}.customize-option.hair_base_4_porange{background-image:url(spritesmith-main-2.png);background-position:-662px -925px;width:60px;height:60px}.hair_base_4_porange2{background-image:url(spritesmith-main-2.png);background-position:-728px -910px;width:90px;height:90px}.customize-option.hair_base_4_porange2{background-image:url(spritesmith-main-2.png);background-position:-753px -925px;width:60px;height:60px}.hair_base_4_ppink{background-image:url(spritesmith-main-2.png);background-position:-819px -910px;width:90px;height:90px}.customize-option.hair_base_4_ppink{background-image:url(spritesmith-main-2.png);background-position:-844px -925px;width:60px;height:60px}.hair_base_4_ppink2{background-image:url(spritesmith-main-2.png);background-position:-910px -910px;width:90px;height:90px}.customize-option.hair_base_4_ppink2{background-image:url(spritesmith-main-2.png);background-position:-935px -925px;width:60px;height:60px}.hair_base_4_ppurple{background-image:url(spritesmith-main-2.png);background-position:-1001px 0;width:90px;height:90px}.customize-option.hair_base_4_ppurple{background-image:url(spritesmith-main-2.png);background-position:-1026px -15px;width:60px;height:60px}.hair_base_4_ppurple2{background-image:url(spritesmith-main-2.png);background-position:-1001px -91px;width:90px;height:90px}.customize-option.hair_base_4_ppurple2{background-image:url(spritesmith-main-2.png);background-position:-1026px -106px;width:60px;height:60px}.hair_base_4_pumpkin{background-image:url(spritesmith-main-2.png);background-position:-1001px -182px;width:90px;height:90px}.customize-option.hair_base_4_pumpkin{background-image:url(spritesmith-main-2.png);background-position:-1026px -197px;width:60px;height:60px}.hair_base_4_purple{background-image:url(spritesmith-main-2.png);background-position:-1001px -273px;width:90px;height:90px}.customize-option.hair_base_4_purple{background-image:url(spritesmith-main-2.png);background-position:-1026px -288px;width:60px;height:60px}.hair_base_4_pyellow{background-image:url(spritesmith-main-2.png);background-position:-1001px -364px;width:90px;height:90px}.customize-option.hair_base_4_pyellow{background-image:url(spritesmith-main-2.png);background-position:-1026px -379px;width:60px;height:60px}.hair_base_4_pyellow2{background-image:url(spritesmith-main-2.png);background-position:-1001px -455px;width:90px;height:90px}.customize-option.hair_base_4_pyellow2{background-image:url(spritesmith-main-2.png);background-position:-1026px -470px;width:60px;height:60px}.hair_base_4_rainbow{background-image:url(spritesmith-main-2.png);background-position:-1001px -546px;width:90px;height:90px}.customize-option.hair_base_4_rainbow{background-image:url(spritesmith-main-2.png);background-position:-1026px -561px;width:60px;height:60px}.hair_base_4_red{background-image:url(spritesmith-main-2.png);background-position:-1001px -637px;width:90px;height:90px}.customize-option.hair_base_4_red{background-image:url(spritesmith-main-2.png);background-position:-1026px -652px;width:60px;height:60px}.hair_base_4_snowy{background-image:url(spritesmith-main-2.png);background-position:-1001px -728px;width:90px;height:90px}.customize-option.hair_base_4_snowy{background-image:url(spritesmith-main-2.png);background-position:-1026px -743px;width:60px;height:60px}.hair_base_4_white{background-image:url(spritesmith-main-2.png);background-position:-1001px -819px;width:90px;height:90px}.customize-option.hair_base_4_white{background-image:url(spritesmith-main-2.png);background-position:-1026px -834px;width:60px;height:60px}.hair_base_4_winternight{background-image:url(spritesmith-main-2.png);background-position:-1001px -910px;width:90px;height:90px}.customize-option.hair_base_4_winternight{background-image:url(spritesmith-main-2.png);background-position:-1026px -925px;width:60px;height:60px}.hair_base_4_winterstar{background-image:url(spritesmith-main-2.png);background-position:0 -1001px;width:90px;height:90px}.customize-option.hair_base_4_winterstar{background-image:url(spritesmith-main-2.png);background-position:-25px -1016px;width:60px;height:60px}.hair_base_4_yellow{background-image:url(spritesmith-main-2.png);background-position:-91px -1001px;width:90px;height:90px}.customize-option.hair_base_4_yellow{background-image:url(spritesmith-main-2.png);background-position:-116px -1016px;width:60px;height:60px}.hair_base_4_zombie{background-image:url(spritesmith-main-2.png);background-position:-182px -1001px;width:90px;height:90px}.customize-option.hair_base_4_zombie{background-image:url(spritesmith-main-2.png);background-position:-207px -1016px;width:60px;height:60px}.hair_base_5_TRUred{background-image:url(spritesmith-main-2.png);background-position:-273px -1001px;width:90px;height:90px}.customize-option.hair_base_5_TRUred{background-image:url(spritesmith-main-2.png);background-position:-298px -1016px;width:60px;height:60px}.hair_base_5_aurora{background-image:url(spritesmith-main-2.png);background-position:-364px -1001px;width:90px;height:90px}.customize-option.hair_base_5_aurora{background-image:url(spritesmith-main-2.png);background-position:-389px -1016px;width:60px;height:60px}.hair_base_5_black{background-image:url(spritesmith-main-2.png);background-position:-455px -1001px;width:90px;height:90px}.customize-option.hair_base_5_black{background-image:url(spritesmith-main-2.png);background-position:-480px -1016px;width:60px;height:60px}.hair_base_5_blond{background-image:url(spritesmith-main-2.png);background-position:-546px -1001px;width:90px;height:90px}.customize-option.hair_base_5_blond{background-image:url(spritesmith-main-2.png);background-position:-571px -1016px;width:60px;height:60px}.hair_base_5_blue{background-image:url(spritesmith-main-2.png);background-position:-637px -1001px;width:90px;height:90px}.customize-option.hair_base_5_blue{background-image:url(spritesmith-main-2.png);background-position:-662px -1016px;width:60px;height:60px}.hair_base_5_brown{background-image:url(spritesmith-main-2.png);background-position:-728px -1001px;width:90px;height:90px}.customize-option.hair_base_5_brown{background-image:url(spritesmith-main-2.png);background-position:-753px -1016px;width:60px;height:60px}.hair_base_5_candycane{background-image:url(spritesmith-main-2.png);background-position:-819px -1001px;width:90px;height:90px}.customize-option.hair_base_5_candycane{background-image:url(spritesmith-main-2.png);background-position:-844px -1016px;width:60px;height:60px}.hair_base_5_candycorn{background-image:url(spritesmith-main-2.png);background-position:-910px -1001px;width:90px;height:90px}.customize-option.hair_base_5_candycorn{background-image:url(spritesmith-main-2.png);background-position:-935px -1016px;width:60px;height:60px}.hair_base_5_festive{background-image:url(spritesmith-main-2.png);background-position:-1001px -1001px;width:90px;height:90px}.customize-option.hair_base_5_festive{background-image:url(spritesmith-main-2.png);background-position:-1026px -1016px;width:60px;height:60px}.hair_base_5_frost{background-image:url(spritesmith-main-2.png);background-position:-1092px 0;width:90px;height:90px}.customize-option.hair_base_5_frost{background-image:url(spritesmith-main-2.png);background-position:-1117px -15px;width:60px;height:60px}.hair_base_5_ghostwhite{background-image:url(spritesmith-main-2.png);background-position:-1092px -91px;width:90px;height:90px}.customize-option.hair_base_5_ghostwhite{background-image:url(spritesmith-main-2.png);background-position:-1117px -106px;width:60px;height:60px}.hair_base_5_green{background-image:url(spritesmith-main-2.png);background-position:-1092px -182px;width:90px;height:90px}.customize-option.hair_base_5_green{background-image:url(spritesmith-main-2.png);background-position:-1117px -197px;width:60px;height:60px}.hair_base_5_halloween{background-image:url(spritesmith-main-2.png);background-position:-1092px -273px;width:90px;height:90px}.customize-option.hair_base_5_halloween{background-image:url(spritesmith-main-2.png);background-position:-1117px -288px;width:60px;height:60px}.hair_base_5_holly{background-image:url(spritesmith-main-2.png);background-position:-1092px -364px;width:90px;height:90px}.customize-option.hair_base_5_holly{background-image:url(spritesmith-main-2.png);background-position:-1117px -379px;width:60px;height:60px}.hair_base_5_hollygreen{background-image:url(spritesmith-main-2.png);background-position:-1092px -455px;width:90px;height:90px}.customize-option.hair_base_5_hollygreen{background-image:url(spritesmith-main-2.png);background-position:-1117px -470px;width:60px;height:60px}.hair_base_5_midnight{background-image:url(spritesmith-main-2.png);background-position:-1092px -546px;width:90px;height:90px}.customize-option.hair_base_5_midnight{background-image:url(spritesmith-main-2.png);background-position:-1117px -561px;width:60px;height:60px}.hair_base_5_pblue{background-image:url(spritesmith-main-2.png);background-position:-1092px -637px;width:90px;height:90px}.customize-option.hair_base_5_pblue{background-image:url(spritesmith-main-2.png);background-position:-1117px -652px;width:60px;height:60px}.hair_base_5_pblue2{background-image:url(spritesmith-main-2.png);background-position:-1092px -728px;width:90px;height:90px}.customize-option.hair_base_5_pblue2{background-image:url(spritesmith-main-2.png);background-position:-1117px -743px;width:60px;height:60px}.hair_base_5_peppermint{background-image:url(spritesmith-main-2.png);background-position:-1092px -819px;width:90px;height:90px}.customize-option.hair_base_5_peppermint{background-image:url(spritesmith-main-2.png);background-position:-1117px -834px;width:60px;height:60px}.hair_base_5_pgreen{background-image:url(spritesmith-main-2.png);background-position:-1092px -910px;width:90px;height:90px}.customize-option.hair_base_5_pgreen{background-image:url(spritesmith-main-2.png);background-position:-1117px -925px;width:60px;height:60px}.hair_base_5_pgreen2{background-image:url(spritesmith-main-2.png);background-position:-1092px -1001px;width:90px;height:90px}.customize-option.hair_base_5_pgreen2{background-image:url(spritesmith-main-2.png);background-position:-1117px -1016px;width:60px;height:60px}.hair_base_5_porange{background-image:url(spritesmith-main-2.png);background-position:0 -1092px;width:90px;height:90px}.customize-option.hair_base_5_porange{background-image:url(spritesmith-main-2.png);background-position:-25px -1107px;width:60px;height:60px}.hair_base_5_porange2{background-image:url(spritesmith-main-2.png);background-position:-91px -1092px;width:90px;height:90px}.customize-option.hair_base_5_porange2{background-image:url(spritesmith-main-2.png);background-position:-116px -1107px;width:60px;height:60px}.hair_base_5_ppink{background-image:url(spritesmith-main-2.png);background-position:-182px -1092px;width:90px;height:90px}.customize-option.hair_base_5_ppink{background-image:url(spritesmith-main-2.png);background-position:-207px -1107px;width:60px;height:60px}.hair_base_5_ppink2{background-image:url(spritesmith-main-2.png);background-position:-273px -1092px;width:90px;height:90px}.customize-option.hair_base_5_ppink2{background-image:url(spritesmith-main-2.png);background-position:-298px -1107px;width:60px;height:60px}.hair_base_5_ppurple{background-image:url(spritesmith-main-2.png);background-position:-364px -1092px;width:90px;height:90px}.customize-option.hair_base_5_ppurple{background-image:url(spritesmith-main-2.png);background-position:-389px -1107px;width:60px;height:60px}.hair_base_5_ppurple2{background-image:url(spritesmith-main-2.png);background-position:-455px -1092px;width:90px;height:90px}.customize-option.hair_base_5_ppurple2{background-image:url(spritesmith-main-2.png);background-position:-480px -1107px;width:60px;height:60px}.hair_base_5_pumpkin{background-image:url(spritesmith-main-2.png);background-position:-546px -1092px;width:90px;height:90px}.customize-option.hair_base_5_pumpkin{background-image:url(spritesmith-main-2.png);background-position:-571px -1107px;width:60px;height:60px}.hair_base_5_purple{background-image:url(spritesmith-main-2.png);background-position:-637px -1092px;width:90px;height:90px}.customize-option.hair_base_5_purple{background-image:url(spritesmith-main-2.png);background-position:-662px -1107px;width:60px;height:60px}.hair_base_5_pyellow{background-image:url(spritesmith-main-2.png);background-position:0 0;width:90px;height:90px}.customize-option.hair_base_5_pyellow{background-image:url(spritesmith-main-2.png);background-position:-25px -15px;width:60px;height:60px}.hair_base_5_pyellow2{background-image:url(spritesmith-main-2.png);background-position:-819px -1092px;width:90px;height:90px}.customize-option.hair_base_5_pyellow2{background-image:url(spritesmith-main-2.png);background-position:-844px -1107px;width:60px;height:60px}.hair_base_5_rainbow{background-image:url(spritesmith-main-2.png);background-position:-910px -1092px;width:90px;height:90px}.customize-option.hair_base_5_rainbow{background-image:url(spritesmith-main-2.png);background-position:-935px -1107px;width:60px;height:60px}.hair_base_5_red{background-image:url(spritesmith-main-2.png);background-position:-1001px -1092px;width:90px;height:90px}.customize-option.hair_base_5_red{background-image:url(spritesmith-main-2.png);background-position:-1026px -1107px;width:60px;height:60px}.hair_base_5_snowy{background-image:url(spritesmith-main-2.png);background-position:-1092px -1092px;width:90px;height:90px}.customize-option.hair_base_5_snowy{background-image:url(spritesmith-main-2.png);background-position:-1117px -1107px;width:60px;height:60px}.hair_base_5_white{background-image:url(spritesmith-main-2.png);background-position:-1183px 0;width:90px;height:90px}.customize-option.hair_base_5_white{background-image:url(spritesmith-main-2.png);background-position:-1208px -15px;width:60px;height:60px}.hair_base_5_winternight{background-image:url(spritesmith-main-2.png);background-position:-1183px -91px;width:90px;height:90px}.customize-option.hair_base_5_winternight{background-image:url(spritesmith-main-2.png);background-position:-1208px -106px;width:60px;height:60px}.hair_base_5_winterstar{background-image:url(spritesmith-main-2.png);background-position:-1183px -182px;width:90px;height:90px}.customize-option.hair_base_5_winterstar{background-image:url(spritesmith-main-2.png);background-position:-1208px -197px;width:60px;height:60px}.hair_base_5_yellow{background-image:url(spritesmith-main-2.png);background-position:-1183px -273px;width:90px;height:90px}.customize-option.hair_base_5_yellow{background-image:url(spritesmith-main-2.png);background-position:-1208px -288px;width:60px;height:60px}.hair_base_5_zombie{background-image:url(spritesmith-main-2.png);background-position:-1183px -364px;width:90px;height:90px}.customize-option.hair_base_5_zombie{background-image:url(spritesmith-main-2.png);background-position:-1208px -379px;width:60px;height:60px}.hair_base_6_TRUred{background-image:url(spritesmith-main-2.png);background-position:-1183px -455px;width:90px;height:90px}.customize-option.hair_base_6_TRUred{background-image:url(spritesmith-main-2.png);background-position:-1208px -470px;width:60px;height:60px}.hair_base_6_aurora{background-image:url(spritesmith-main-2.png);background-position:-1183px -546px;width:90px;height:90px}.customize-option.hair_base_6_aurora{background-image:url(spritesmith-main-2.png);background-position:-1208px -561px;width:60px;height:60px}.hair_base_6_black{background-image:url(spritesmith-main-2.png);background-position:-1183px -637px;width:90px;height:90px}.customize-option.hair_base_6_black{background-image:url(spritesmith-main-2.png);background-position:-1208px -652px;width:60px;height:60px}.hair_base_6_blond{background-image:url(spritesmith-main-2.png);background-position:-1183px -728px;width:90px;height:90px}.customize-option.hair_base_6_blond{background-image:url(spritesmith-main-2.png);background-position:-1208px -743px;width:60px;height:60px}.hair_base_6_blue{background-image:url(spritesmith-main-2.png);background-position:-1183px -819px;width:90px;height:90px}.customize-option.hair_base_6_blue{background-image:url(spritesmith-main-2.png);background-position:-1208px -834px;width:60px;height:60px}.hair_base_6_brown{background-image:url(spritesmith-main-2.png);background-position:-1183px -910px;width:90px;height:90px}.customize-option.hair_base_6_brown{background-image:url(spritesmith-main-2.png);background-position:-1208px -925px;width:60px;height:60px}.hair_base_6_candycane{background-image:url(spritesmith-main-2.png);background-position:-1183px -1001px;width:90px;height:90px}.customize-option.hair_base_6_candycane{background-image:url(spritesmith-main-2.png);background-position:-1208px -1016px;width:60px;height:60px}.hair_base_6_candycorn{background-image:url(spritesmith-main-2.png);background-position:-1183px -1092px;width:90px;height:90px}.customize-option.hair_base_6_candycorn{background-image:url(spritesmith-main-2.png);background-position:-1208px -1107px;width:60px;height:60px}.hair_base_6_festive{background-image:url(spritesmith-main-2.png);background-position:0 -1183px;width:90px;height:90px}.customize-option.hair_base_6_festive{background-image:url(spritesmith-main-2.png);background-position:-25px -1198px;width:60px;height:60px}.hair_base_6_frost{background-image:url(spritesmith-main-2.png);background-position:-91px -1183px;width:90px;height:90px}.customize-option.hair_base_6_frost{background-image:url(spritesmith-main-2.png);background-position:-116px -1198px;width:60px;height:60px}.hair_base_6_ghostwhite{background-image:url(spritesmith-main-2.png);background-position:-182px -1183px;width:90px;height:90px}.customize-option.hair_base_6_ghostwhite{background-image:url(spritesmith-main-2.png);background-position:-207px -1198px;width:60px;height:60px}.hair_base_6_green{background-image:url(spritesmith-main-2.png);background-position:-273px -1183px;width:90px;height:90px}.customize-option.hair_base_6_green{background-image:url(spritesmith-main-2.png);background-position:-298px -1198px;width:60px;height:60px}.hair_base_6_halloween{background-image:url(spritesmith-main-2.png);background-position:-364px -1183px;width:90px;height:90px}.customize-option.hair_base_6_halloween{background-image:url(spritesmith-main-2.png);background-position:-389px -1198px;width:60px;height:60px}.hair_base_6_holly{background-image:url(spritesmith-main-2.png);background-position:-455px -1183px;width:90px;height:90px}.customize-option.hair_base_6_holly{background-image:url(spritesmith-main-2.png);background-position:-480px -1198px;width:60px;height:60px}.hair_base_6_hollygreen{background-image:url(spritesmith-main-2.png);background-position:-546px -1183px;width:90px;height:90px}.customize-option.hair_base_6_hollygreen{background-image:url(spritesmith-main-2.png);background-position:-571px -1198px;width:60px;height:60px}.hair_base_6_midnight{background-image:url(spritesmith-main-2.png);background-position:-637px -1183px;width:90px;height:90px}.customize-option.hair_base_6_midnight{background-image:url(spritesmith-main-2.png);background-position:-662px -1198px;width:60px;height:60px}.hair_base_6_pblue{background-image:url(spritesmith-main-2.png);background-position:-728px -1183px;width:90px;height:90px}.customize-option.hair_base_6_pblue{background-image:url(spritesmith-main-2.png);background-position:-753px -1198px;width:60px;height:60px}.hair_base_6_pblue2{background-image:url(spritesmith-main-2.png);background-position:-819px -1183px;width:90px;height:90px}.customize-option.hair_base_6_pblue2{background-image:url(spritesmith-main-2.png);background-position:-844px -1198px;width:60px;height:60px}.hair_base_6_peppermint{background-image:url(spritesmith-main-2.png);background-position:-910px -1183px;width:90px;height:90px}.customize-option.hair_base_6_peppermint{background-image:url(spritesmith-main-2.png);background-position:-935px -1198px;width:60px;height:60px}.hair_base_6_pgreen{background-image:url(spritesmith-main-2.png);background-position:-1001px -1183px;width:90px;height:90px}.customize-option.hair_base_6_pgreen{background-image:url(spritesmith-main-2.png);background-position:-1026px -1198px;width:60px;height:60px}.hair_base_6_pgreen2{background-image:url(spritesmith-main-2.png);background-position:-1092px -1183px;width:90px;height:90px}.customize-option.hair_base_6_pgreen2{background-image:url(spritesmith-main-2.png);background-position:-1117px -1198px;width:60px;height:60px}.hair_base_6_porange{background-image:url(spritesmith-main-2.png);background-position:-1183px -1183px;width:90px;height:90px}.customize-option.hair_base_6_porange{background-image:url(spritesmith-main-2.png);background-position:-1208px -1198px;width:60px;height:60px}.hair_base_6_porange2{background-image:url(spritesmith-main-2.png);background-position:-1274px 0;width:90px;height:90px}.customize-option.hair_base_6_porange2{background-image:url(spritesmith-main-2.png);background-position:-1299px -15px;width:60px;height:60px}.hair_base_6_ppink{background-image:url(spritesmith-main-2.png);background-position:-1274px -91px;width:90px;height:90px}.customize-option.hair_base_6_ppink{background-image:url(spritesmith-main-2.png);background-position:-1299px -106px;width:60px;height:60px}.hair_base_6_ppink2{background-image:url(spritesmith-main-2.png);background-position:-1274px -182px;width:90px;height:90px}.customize-option.hair_base_6_ppink2{background-image:url(spritesmith-main-2.png);background-position:-1299px -197px;width:60px;height:60px}.hair_base_6_ppurple{background-image:url(spritesmith-main-2.png);background-position:-1274px -273px;width:90px;height:90px}.customize-option.hair_base_6_ppurple{background-image:url(spritesmith-main-2.png);background-position:-1299px -288px;width:60px;height:60px}.hair_base_6_ppurple2{background-image:url(spritesmith-main-2.png);background-position:-1274px -364px;width:90px;height:90px}.customize-option.hair_base_6_ppurple2{background-image:url(spritesmith-main-2.png);background-position:-1299px -379px;width:60px;height:60px}.hair_base_6_pumpkin{background-image:url(spritesmith-main-2.png);background-position:-1274px -455px;width:90px;height:90px}.customize-option.hair_base_6_pumpkin{background-image:url(spritesmith-main-2.png);background-position:-1299px -470px;width:60px;height:60px}.hair_base_6_purple{background-image:url(spritesmith-main-2.png);background-position:-1274px -546px;width:90px;height:90px}.customize-option.hair_base_6_purple{background-image:url(spritesmith-main-2.png);background-position:-1299px -561px;width:60px;height:60px}.hair_base_6_pyellow{background-image:url(spritesmith-main-2.png);background-position:-1274px -637px;width:90px;height:90px}.customize-option.hair_base_6_pyellow{background-image:url(spritesmith-main-2.png);background-position:-1299px -652px;width:60px;height:60px}.hair_base_6_pyellow2{background-image:url(spritesmith-main-2.png);background-position:-1274px -728px;width:90px;height:90px}.customize-option.hair_base_6_pyellow2{background-image:url(spritesmith-main-2.png);background-position:-1299px -743px;width:60px;height:60px}.hair_base_6_rainbow{background-image:url(spritesmith-main-2.png);background-position:-1274px -819px;width:90px;height:90px}.customize-option.hair_base_6_rainbow{background-image:url(spritesmith-main-2.png);background-position:-1299px -834px;width:60px;height:60px}.hair_base_6_red{background-image:url(spritesmith-main-2.png);background-position:-1274px -910px;width:90px;height:90px}.customize-option.hair_base_6_red{background-image:url(spritesmith-main-2.png);background-position:-1299px -925px;width:60px;height:60px}.hair_base_6_snowy{background-image:url(spritesmith-main-2.png);background-position:-1274px -1001px;width:90px;height:90px}.customize-option.hair_base_6_snowy{background-image:url(spritesmith-main-2.png);background-position:-1299px -1016px;width:60px;height:60px}.hair_base_6_white{background-image:url(spritesmith-main-2.png);background-position:-1274px -1092px;width:90px;height:90px}.customize-option.hair_base_6_white{background-image:url(spritesmith-main-2.png);background-position:-1299px -1107px;width:60px;height:60px}.hair_base_6_winternight{background-image:url(spritesmith-main-2.png);background-position:-1274px -1183px;width:90px;height:90px}.customize-option.hair_base_6_winternight{background-image:url(spritesmith-main-2.png);background-position:-1299px -1198px;width:60px;height:60px}.hair_base_6_winterstar{background-image:url(spritesmith-main-2.png);background-position:0 -1274px;width:90px;height:90px}.customize-option.hair_base_6_winterstar{background-image:url(spritesmith-main-2.png);background-position:-25px -1289px;width:60px;height:60px}.hair_base_6_yellow{background-image:url(spritesmith-main-2.png);background-position:-91px -1274px;width:90px;height:90px}.customize-option.hair_base_6_yellow{background-image:url(spritesmith-main-2.png);background-position:-116px -1289px;width:60px;height:60px}.hair_base_6_zombie{background-image:url(spritesmith-main-2.png);background-position:-182px -1274px;width:90px;height:90px}.customize-option.hair_base_6_zombie{background-image:url(spritesmith-main-2.png);background-position:-207px -1289px;width:60px;height:60px}.hair_base_7_TRUred{background-image:url(spritesmith-main-2.png);background-position:-273px -1274px;width:90px;height:90px}.customize-option.hair_base_7_TRUred{background-image:url(spritesmith-main-2.png);background-position:-298px -1289px;width:60px;height:60px}.hair_base_7_aurora{background-image:url(spritesmith-main-2.png);background-position:-364px -1274px;width:90px;height:90px}.customize-option.hair_base_7_aurora{background-image:url(spritesmith-main-2.png);background-position:-389px -1289px;width:60px;height:60px}.hair_base_7_black{background-image:url(spritesmith-main-2.png);background-position:-455px -1274px;width:90px;height:90px}.customize-option.hair_base_7_black{background-image:url(spritesmith-main-2.png);background-position:-480px -1289px;width:60px;height:60px}.hair_base_7_blond{background-image:url(spritesmith-main-2.png);background-position:-546px -1274px;width:90px;height:90px}.customize-option.hair_base_7_blond{background-image:url(spritesmith-main-2.png);background-position:-571px -1289px;width:60px;height:60px}.hair_base_7_blue{background-image:url(spritesmith-main-2.png);background-position:-637px -1274px;width:90px;height:90px}.customize-option.hair_base_7_blue{background-image:url(spritesmith-main-2.png);background-position:-662px -1289px;width:60px;height:60px}.hair_base_7_brown{background-image:url(spritesmith-main-2.png);background-position:-728px -1274px;width:90px;height:90px}.customize-option.hair_base_7_brown{background-image:url(spritesmith-main-2.png);background-position:-753px -1289px;width:60px;height:60px}.hair_base_7_candycane{background-image:url(spritesmith-main-2.png);background-position:-819px -1274px;width:90px;height:90px}.customize-option.hair_base_7_candycane{background-image:url(spritesmith-main-2.png);background-position:-844px -1289px;width:60px;height:60px}.hair_base_7_candycorn{background-image:url(spritesmith-main-2.png);background-position:-910px -1274px;width:90px;height:90px}.customize-option.hair_base_7_candycorn{background-image:url(spritesmith-main-2.png);background-position:-935px -1289px;width:60px;height:60px}.hair_base_7_festive{background-image:url(spritesmith-main-2.png);background-position:-1001px -1274px;width:90px;height:90px}.customize-option.hair_base_7_festive{background-image:url(spritesmith-main-2.png);background-position:-1026px -1289px;width:60px;height:60px}.hair_base_7_frost{background-image:url(spritesmith-main-2.png);background-position:-1092px -1274px;width:90px;height:90px}.customize-option.hair_base_7_frost{background-image:url(spritesmith-main-2.png);background-position:-1117px -1289px;width:60px;height:60px}.hair_base_7_ghostwhite{background-image:url(spritesmith-main-2.png);background-position:-1183px -1274px;width:90px;height:90px}.customize-option.hair_base_7_ghostwhite{background-image:url(spritesmith-main-2.png);background-position:-1208px -1289px;width:60px;height:60px}.hair_base_7_green{background-image:url(spritesmith-main-2.png);background-position:-1274px -1274px;width:90px;height:90px}.customize-option.hair_base_7_green{background-image:url(spritesmith-main-2.png);background-position:-1299px -1289px;width:60px;height:60px}.hair_base_7_halloween{background-image:url(spritesmith-main-2.png);background-position:-1365px 0;width:90px;height:90px}.customize-option.hair_base_7_halloween{background-image:url(spritesmith-main-2.png);background-position:-1390px -15px;width:60px;height:60px}.hair_base_7_holly{background-image:url(spritesmith-main-2.png);background-position:-1365px -91px;width:90px;height:90px}.customize-option.hair_base_7_holly{background-image:url(spritesmith-main-2.png);background-position:-1390px -106px;width:60px;height:60px}.hair_base_7_hollygreen{background-image:url(spritesmith-main-2.png);background-position:-1365px -182px;width:90px;height:90px}.customize-option.hair_base_7_hollygreen{background-image:url(spritesmith-main-2.png);background-position:-1390px -197px;width:60px;height:60px}.hair_base_7_midnight{background-image:url(spritesmith-main-2.png);background-position:-1365px -273px;width:90px;height:90px}.customize-option.hair_base_7_midnight{background-image:url(spritesmith-main-2.png);background-position:-1390px -288px;width:60px;height:60px}.hair_base_7_pblue{background-image:url(spritesmith-main-2.png);background-position:-1365px -364px;width:90px;height:90px}.customize-option.hair_base_7_pblue{background-image:url(spritesmith-main-2.png);background-position:-1390px -379px;width:60px;height:60px}.hair_base_7_pblue2{background-image:url(spritesmith-main-2.png);background-position:-1365px -455px;width:90px;height:90px}.customize-option.hair_base_7_pblue2{background-image:url(spritesmith-main-2.png);background-position:-1390px -470px;width:60px;height:60px}.hair_base_7_peppermint{background-image:url(spritesmith-main-2.png);background-position:-1365px -546px;width:90px;height:90px}.customize-option.hair_base_7_peppermint{background-image:url(spritesmith-main-2.png);background-position:-1390px -561px;width:60px;height:60px}.hair_base_7_pgreen{background-image:url(spritesmith-main-2.png);background-position:-1365px -637px;width:90px;height:90px}.customize-option.hair_base_7_pgreen{background-image:url(spritesmith-main-2.png);background-position:-1390px -652px;width:60px;height:60px}.hair_base_7_pgreen2{background-image:url(spritesmith-main-2.png);background-position:-1365px -728px;width:90px;height:90px}.customize-option.hair_base_7_pgreen2{background-image:url(spritesmith-main-2.png);background-position:-1390px -743px;width:60px;height:60px}.hair_base_7_porange{background-image:url(spritesmith-main-2.png);background-position:-1365px -819px;width:90px;height:90px}.customize-option.hair_base_7_porange{background-image:url(spritesmith-main-2.png);background-position:-1390px -834px;width:60px;height:60px}.hair_base_7_porange2{background-image:url(spritesmith-main-2.png);background-position:-1365px -910px;width:90px;height:90px}.customize-option.hair_base_7_porange2{background-image:url(spritesmith-main-2.png);background-position:-1390px -925px;width:60px;height:60px}.hair_base_7_ppink{background-image:url(spritesmith-main-2.png);background-position:-1365px -1001px;width:90px;height:90px}.customize-option.hair_base_7_ppink{background-image:url(spritesmith-main-2.png);background-position:-1390px -1016px;width:60px;height:60px}.hair_base_7_ppink2{background-image:url(spritesmith-main-2.png);background-position:-1365px -1092px;width:90px;height:90px}.customize-option.hair_base_7_ppink2{background-image:url(spritesmith-main-2.png);background-position:-1390px -1107px;width:60px;height:60px}.hair_base_7_ppurple{background-image:url(spritesmith-main-2.png);background-position:-1365px -1183px;width:90px;height:90px}.customize-option.hair_base_7_ppurple{background-image:url(spritesmith-main-2.png);background-position:-1390px -1198px;width:60px;height:60px}.hair_base_7_ppurple2{background-image:url(spritesmith-main-2.png);background-position:-1365px -1274px;width:90px;height:90px}.customize-option.hair_base_7_ppurple2{background-image:url(spritesmith-main-2.png);background-position:-1390px -1289px;width:60px;height:60px}.hair_base_7_pumpkin{background-image:url(spritesmith-main-2.png);background-position:0 -1365px;width:90px;height:90px}.customize-option.hair_base_7_pumpkin{background-image:url(spritesmith-main-2.png);background-position:-25px -1380px;width:60px;height:60px}.hair_base_7_purple{background-image:url(spritesmith-main-2.png);background-position:-91px -1365px;width:90px;height:90px}.customize-option.hair_base_7_purple{background-image:url(spritesmith-main-2.png);background-position:-116px -1380px;width:60px;height:60px}.hair_base_7_pyellow{background-image:url(spritesmith-main-2.png);background-position:-182px -1365px;width:90px;height:90px}.customize-option.hair_base_7_pyellow{background-image:url(spritesmith-main-2.png);background-position:-207px -1380px;width:60px;height:60px}.hair_base_7_pyellow2{background-image:url(spritesmith-main-2.png);background-position:-273px -1365px;width:90px;height:90px}.customize-option.hair_base_7_pyellow2{background-image:url(spritesmith-main-2.png);background-position:-298px -1380px;width:60px;height:60px}.hair_base_7_rainbow{background-image:url(spritesmith-main-2.png);background-position:-364px -1365px;width:90px;height:90px}.customize-option.hair_base_7_rainbow{background-image:url(spritesmith-main-2.png);background-position:-389px -1380px;width:60px;height:60px}.hair_base_7_red{background-image:url(spritesmith-main-2.png);background-position:-455px -1365px;width:90px;height:90px}.customize-option.hair_base_7_red{background-image:url(spritesmith-main-2.png);background-position:-480px -1380px;width:60px;height:60px}.hair_base_7_snowy{background-image:url(spritesmith-main-2.png);background-position:-546px -1365px;width:90px;height:90px}.customize-option.hair_base_7_snowy{background-image:url(spritesmith-main-2.png);background-position:-571px -1380px;width:60px;height:60px}.hair_base_7_white{background-image:url(spritesmith-main-2.png);background-position:-637px -1365px;width:90px;height:90px}.customize-option.hair_base_7_white{background-image:url(spritesmith-main-2.png);background-position:-662px -1380px;width:60px;height:60px}.hair_base_7_winternight{background-image:url(spritesmith-main-2.png);background-position:-728px -1365px;width:90px;height:90px}.customize-option.hair_base_7_winternight{background-image:url(spritesmith-main-2.png);background-position:-753px -1380px;width:60px;height:60px}.hair_base_7_winterstar{background-image:url(spritesmith-main-2.png);background-position:-819px -1365px;width:90px;height:90px}.customize-option.hair_base_7_winterstar{background-image:url(spritesmith-main-2.png);background-position:-844px -1380px;width:60px;height:60px}.hair_base_7_yellow{background-image:url(spritesmith-main-2.png);background-position:-910px -1365px;width:90px;height:90px}.customize-option.hair_base_7_yellow{background-image:url(spritesmith-main-2.png);background-position:-935px -1380px;width:60px;height:60px}.hair_base_7_zombie{background-image:url(spritesmith-main-2.png);background-position:-1001px -1365px;width:90px;height:90px}.customize-option.hair_base_7_zombie{background-image:url(spritesmith-main-2.png);background-position:-1026px -1380px;width:60px;height:60px}.hair_base_8_TRUred{background-image:url(spritesmith-main-2.png);background-position:-1092px -1365px;width:90px;height:90px}.customize-option.hair_base_8_TRUred{background-image:url(spritesmith-main-2.png);background-position:-1117px -1380px;width:60px;height:60px}.hair_base_8_aurora{background-image:url(spritesmith-main-2.png);background-position:-1183px -1365px;width:90px;height:90px}.customize-option.hair_base_8_aurora{background-image:url(spritesmith-main-2.png);background-position:-1208px -1380px;width:60px;height:60px}.hair_base_8_black{background-image:url(spritesmith-main-2.png);background-position:-1274px -1365px;width:90px;height:90px}.customize-option.hair_base_8_black{background-image:url(spritesmith-main-2.png);background-position:-1299px -1380px;width:60px;height:60px}.hair_base_8_blond{background-image:url(spritesmith-main-2.png);background-position:-1365px -1365px;width:90px;height:90px}.customize-option.hair_base_8_blond{background-image:url(spritesmith-main-2.png);background-position:-1390px -1380px;width:60px;height:60px}.hair_base_8_blue{background-image:url(spritesmith-main-2.png);background-position:-1456px 0;width:90px;height:90px}.customize-option.hair_base_8_blue{background-image:url(spritesmith-main-2.png);background-position:-1481px -15px;width:60px;height:60px}.hair_base_8_brown{background-image:url(spritesmith-main-2.png);background-position:-1456px -91px;width:90px;height:90px}.customize-option.hair_base_8_brown{background-image:url(spritesmith-main-2.png);background-position:-1481px -106px;width:60px;height:60px}.hair_base_8_candycane{background-image:url(spritesmith-main-2.png);background-position:-1456px -182px;width:90px;height:90px}.customize-option.hair_base_8_candycane{background-image:url(spritesmith-main-2.png);background-position:-1481px -197px;width:60px;height:60px}.hair_base_8_candycorn{background-image:url(spritesmith-main-2.png);background-position:-1456px -273px;width:90px;height:90px}.customize-option.hair_base_8_candycorn{background-image:url(spritesmith-main-2.png);background-position:-1481px -288px;width:60px;height:60px}.hair_base_8_festive{background-image:url(spritesmith-main-2.png);background-position:-1456px -364px;width:90px;height:90px}.customize-option.hair_base_8_festive{background-image:url(spritesmith-main-2.png);background-position:-1481px -379px;width:60px;height:60px}.hair_base_8_frost{background-image:url(spritesmith-main-2.png);background-position:-1456px -455px;width:90px;height:90px}.customize-option.hair_base_8_frost{background-image:url(spritesmith-main-2.png);background-position:-1481px -470px;width:60px;height:60px}.hair_base_8_ghostwhite{background-image:url(spritesmith-main-2.png);background-position:-1456px -546px;width:90px;height:90px}.customize-option.hair_base_8_ghostwhite{background-image:url(spritesmith-main-2.png);background-position:-1481px -561px;width:60px;height:60px}.hair_base_8_green{background-image:url(spritesmith-main-2.png);background-position:-1456px -637px;width:90px;height:90px}.customize-option.hair_base_8_green{background-image:url(spritesmith-main-2.png);background-position:-1481px -652px;width:60px;height:60px}.hair_base_8_halloween{background-image:url(spritesmith-main-2.png);background-position:-1456px -728px;width:90px;height:90px}.customize-option.hair_base_8_halloween{background-image:url(spritesmith-main-2.png);background-position:-1481px -743px;width:60px;height:60px}.hair_base_8_holly{background-image:url(spritesmith-main-2.png);background-position:-1456px -819px;width:90px;height:90px}.customize-option.hair_base_8_holly{background-image:url(spritesmith-main-2.png);background-position:-1481px -834px;width:60px;height:60px}.hair_base_8_hollygreen{background-image:url(spritesmith-main-2.png);background-position:-1456px -910px;width:90px;height:90px}.customize-option.hair_base_8_hollygreen{background-image:url(spritesmith-main-2.png);background-position:-1481px -925px;width:60px;height:60px}.hair_base_8_midnight{background-image:url(spritesmith-main-2.png);background-position:-1456px -1001px;width:90px;height:90px}.customize-option.hair_base_8_midnight{background-image:url(spritesmith-main-2.png);background-position:-1481px -1016px;width:60px;height:60px}.hair_base_8_pblue{background-image:url(spritesmith-main-2.png);background-position:-1456px -1092px;width:90px;height:90px}.customize-option.hair_base_8_pblue{background-image:url(spritesmith-main-2.png);background-position:-1481px -1107px;width:60px;height:60px}.hair_base_8_pblue2{background-image:url(spritesmith-main-2.png);background-position:-1456px -1183px;width:90px;height:90px}.customize-option.hair_base_8_pblue2{background-image:url(spritesmith-main-2.png);background-position:-1481px -1198px;width:60px;height:60px}.hair_base_8_peppermint{background-image:url(spritesmith-main-2.png);background-position:-1456px -1274px;width:90px;height:90px}.customize-option.hair_base_8_peppermint{background-image:url(spritesmith-main-2.png);background-position:-1481px -1289px;width:60px;height:60px}.hair_base_8_pgreen{background-image:url(spritesmith-main-2.png);background-position:-1456px -1365px;width:90px;height:90px}.customize-option.hair_base_8_pgreen{background-image:url(spritesmith-main-2.png);background-position:-1481px -1380px;width:60px;height:60px}.hair_base_8_pgreen2{background-image:url(spritesmith-main-2.png);background-position:0 -1456px;width:90px;height:90px}.customize-option.hair_base_8_pgreen2{background-image:url(spritesmith-main-2.png);background-position:-25px -1471px;width:60px;height:60px}.hair_base_8_porange{background-image:url(spritesmith-main-2.png);background-position:-91px -1456px;width:90px;height:90px}.customize-option.hair_base_8_porange{background-image:url(spritesmith-main-2.png);background-position:-116px -1471px;width:60px;height:60px}.hair_base_8_porange2{background-image:url(spritesmith-main-2.png);background-position:-182px -1456px;width:90px;height:90px}.customize-option.hair_base_8_porange2{background-image:url(spritesmith-main-2.png);background-position:-207px -1471px;width:60px;height:60px}.hair_base_8_ppink{background-image:url(spritesmith-main-2.png);background-position:-273px -1456px;width:90px;height:90px}.customize-option.hair_base_8_ppink{background-image:url(spritesmith-main-2.png);background-position:-298px -1471px;width:60px;height:60px}.hair_base_8_ppink2{background-image:url(spritesmith-main-2.png);background-position:-364px -1456px;width:90px;height:90px}.customize-option.hair_base_8_ppink2{background-image:url(spritesmith-main-2.png);background-position:-389px -1471px;width:60px;height:60px}.hair_base_8_ppurple{background-image:url(spritesmith-main-2.png);background-position:-455px -1456px;width:90px;height:90px}.customize-option.hair_base_8_ppurple{background-image:url(spritesmith-main-2.png);background-position:-480px -1471px;width:60px;height:60px}.hair_base_8_ppurple2{background-image:url(spritesmith-main-2.png);background-position:-546px -1456px;width:90px;height:90px}.customize-option.hair_base_8_ppurple2{background-image:url(spritesmith-main-2.png);background-position:-571px -1471px;width:60px;height:60px}.hair_base_8_pumpkin{background-image:url(spritesmith-main-2.png);background-position:-637px -1456px;width:90px;height:90px}.customize-option.hair_base_8_pumpkin{background-image:url(spritesmith-main-2.png);background-position:-662px -1471px;width:60px;height:60px}.hair_base_8_purple{background-image:url(spritesmith-main-2.png);background-position:-728px -1456px;width:90px;height:90px}.customize-option.hair_base_8_purple{background-image:url(spritesmith-main-2.png);background-position:-753px -1471px;width:60px;height:60px}.hair_base_8_pyellow{background-image:url(spritesmith-main-2.png);background-position:-819px -1456px;width:90px;height:90px}.customize-option.hair_base_8_pyellow{background-image:url(spritesmith-main-2.png);background-position:-844px -1471px;width:60px;height:60px}.hair_base_8_pyellow2{background-image:url(spritesmith-main-2.png);background-position:-910px -1456px;width:90px;height:90px}.customize-option.hair_base_8_pyellow2{background-image:url(spritesmith-main-2.png);background-position:-935px -1471px;width:60px;height:60px}.hair_base_8_rainbow{background-image:url(spritesmith-main-2.png);background-position:-1001px -1456px;width:90px;height:90px}.customize-option.hair_base_8_rainbow{background-image:url(spritesmith-main-2.png);background-position:-1026px -1471px;width:60px;height:60px}.hair_base_8_red{background-image:url(spritesmith-main-2.png);background-position:-1092px -1456px;width:90px;height:90px}.customize-option.hair_base_8_red{background-image:url(spritesmith-main-2.png);background-position:-1117px -1471px;width:60px;height:60px}.hair_base_8_snowy{background-image:url(spritesmith-main-2.png);background-position:-1183px -1456px;width:90px;height:90px}.customize-option.hair_base_8_snowy{background-image:url(spritesmith-main-2.png);background-position:-1208px -1471px;width:60px;height:60px}.hair_base_8_white{background-image:url(spritesmith-main-2.png);background-position:-1274px -1456px;width:90px;height:90px}.customize-option.hair_base_8_white{background-image:url(spritesmith-main-2.png);background-position:-1299px -1471px;width:60px;height:60px}.hair_base_8_winternight{background-image:url(spritesmith-main-2.png);background-position:-1365px -1456px;width:90px;height:90px}.customize-option.hair_base_8_winternight{background-image:url(spritesmith-main-2.png);background-position:-1390px -1471px;width:60px;height:60px}.hair_base_8_winterstar{background-image:url(spritesmith-main-2.png);background-position:-1456px -1456px;width:90px;height:90px}.customize-option.hair_base_8_winterstar{background-image:url(spritesmith-main-2.png);background-position:-1481px -1471px;width:60px;height:60px}.hair_base_8_yellow{background-image:url(spritesmith-main-2.png);background-position:-1547px 0;width:90px;height:90px}.customize-option.hair_base_8_yellow{background-image:url(spritesmith-main-2.png);background-position:-1572px -15px;width:60px;height:60px}.hair_base_8_zombie{background-image:url(spritesmith-main-2.png);background-position:-1547px -91px;width:90px;height:90px}.customize-option.hair_base_8_zombie{background-image:url(spritesmith-main-2.png);background-position:-1572px -106px;width:60px;height:60px}.hair_base_9_TRUred{background-image:url(spritesmith-main-2.png);background-position:-1547px -182px;width:90px;height:90px}.customize-option.hair_base_9_TRUred{background-image:url(spritesmith-main-2.png);background-position:-1572px -197px;width:60px;height:60px}.hair_base_9_aurora{background-image:url(spritesmith-main-2.png);background-position:-1547px -273px;width:90px;height:90px}.customize-option.hair_base_9_aurora{background-image:url(spritesmith-main-2.png);background-position:-1572px -288px;width:60px;height:60px}.hair_base_9_black{background-image:url(spritesmith-main-2.png);background-position:-1547px -364px;width:90px;height:90px}.customize-option.hair_base_9_black{background-image:url(spritesmith-main-2.png);background-position:-1572px -379px;width:60px;height:60px}.hair_base_9_blond{background-image:url(spritesmith-main-2.png);background-position:-1547px -455px;width:90px;height:90px}.customize-option.hair_base_9_blond{background-image:url(spritesmith-main-2.png);background-position:-1572px -470px;width:60px;height:60px}.hair_base_9_blue{background-image:url(spritesmith-main-2.png);background-position:-1547px -546px;width:90px;height:90px}.customize-option.hair_base_9_blue{background-image:url(spritesmith-main-2.png);background-position:-1572px -561px;width:60px;height:60px}.hair_base_9_brown{background-image:url(spritesmith-main-2.png);background-position:-1547px -637px;width:90px;height:90px}.customize-option.hair_base_9_brown{background-image:url(spritesmith-main-2.png);background-position:-1572px -652px;width:60px;height:60px}.hair_base_9_candycane{background-image:url(spritesmith-main-2.png);background-position:-1547px -728px;width:90px;height:90px}.customize-option.hair_base_9_candycane{background-image:url(spritesmith-main-2.png);background-position:-1572px -743px;width:60px;height:60px}.hair_base_9_candycorn{background-image:url(spritesmith-main-2.png);background-position:-1547px -819px;width:90px;height:90px}.customize-option.hair_base_9_candycorn{background-image:url(spritesmith-main-2.png);background-position:-1572px -834px;width:60px;height:60px}.hair_base_9_festive{background-image:url(spritesmith-main-2.png);background-position:-1547px -910px;width:90px;height:90px}.customize-option.hair_base_9_festive{background-image:url(spritesmith-main-2.png);background-position:-1572px -925px;width:60px;height:60px}.hair_base_9_frost{background-image:url(spritesmith-main-2.png);background-position:-1547px -1001px;width:90px;height:90px}.customize-option.hair_base_9_frost{background-image:url(spritesmith-main-2.png);background-position:-1572px -1016px;width:60px;height:60px}.hair_base_9_ghostwhite{background-image:url(spritesmith-main-2.png);background-position:-1547px -1092px;width:90px;height:90px}.customize-option.hair_base_9_ghostwhite{background-image:url(spritesmith-main-2.png);background-position:-1572px -1107px;width:60px;height:60px}.hair_base_9_green{background-image:url(spritesmith-main-2.png);background-position:-1547px -1183px;width:90px;height:90px}.customize-option.hair_base_9_green{background-image:url(spritesmith-main-2.png);background-position:-1572px -1198px;width:60px;height:60px}.hair_base_9_halloween{background-image:url(spritesmith-main-2.png);background-position:-1547px -1274px;width:90px;height:90px}.customize-option.hair_base_9_halloween{background-image:url(spritesmith-main-2.png);background-position:-1572px -1289px;width:60px;height:60px}.hair_base_9_holly{background-image:url(spritesmith-main-2.png);background-position:-1547px -1365px;width:90px;height:90px}.customize-option.hair_base_9_holly{background-image:url(spritesmith-main-2.png);background-position:-1572px -1380px;width:60px;height:60px}.hair_base_9_hollygreen{background-image:url(spritesmith-main-2.png);background-position:-1547px -1456px;width:90px;height:90px}.customize-option.hair_base_9_hollygreen{background-image:url(spritesmith-main-2.png);background-position:-1572px -1471px;width:60px;height:60px}.hair_base_9_midnight{background-image:url(spritesmith-main-2.png);background-position:0 -1547px;width:90px;height:90px}.customize-option.hair_base_9_midnight{background-image:url(spritesmith-main-2.png);background-position:-25px -1562px;width:60px;height:60px}.hair_base_9_pblue{background-image:url(spritesmith-main-2.png);background-position:-91px -1547px;width:90px;height:90px}.customize-option.hair_base_9_pblue{background-image:url(spritesmith-main-2.png);background-position:-116px -1562px;width:60px;height:60px}.hair_base_9_pblue2{background-image:url(spritesmith-main-2.png);background-position:-182px -1547px;width:90px;height:90px}.customize-option.hair_base_9_pblue2{background-image:url(spritesmith-main-2.png);background-position:-207px -1562px;width:60px;height:60px}.hair_base_9_peppermint{background-image:url(spritesmith-main-2.png);background-position:-273px -1547px;width:90px;height:90px}.customize-option.hair_base_9_peppermint{background-image:url(spritesmith-main-2.png);background-position:-298px -1562px;width:60px;height:60px}.hair_base_9_pgreen{background-image:url(spritesmith-main-2.png);background-position:-364px -1547px;width:90px;height:90px}.customize-option.hair_base_9_pgreen{background-image:url(spritesmith-main-2.png);background-position:-389px -1562px;width:60px;height:60px}.hair_base_9_pgreen2{background-image:url(spritesmith-main-2.png);background-position:-455px -1547px;width:90px;height:90px}.customize-option.hair_base_9_pgreen2{background-image:url(spritesmith-main-2.png);background-position:-480px -1562px;width:60px;height:60px}.hair_base_9_porange{background-image:url(spritesmith-main-2.png);background-position:-546px -1547px;width:90px;height:90px}.customize-option.hair_base_9_porange{background-image:url(spritesmith-main-2.png);background-position:-571px -1562px;width:60px;height:60px}.hair_base_9_porange2{background-image:url(spritesmith-main-2.png);background-position:-637px -1547px;width:90px;height:90px}.customize-option.hair_base_9_porange2{background-image:url(spritesmith-main-2.png);background-position:-662px -1562px;width:60px;height:60px}.hair_base_9_ppink{background-image:url(spritesmith-main-2.png);background-position:-728px -1547px;width:90px;height:90px}.customize-option.hair_base_9_ppink{background-image:url(spritesmith-main-2.png);background-position:-753px -1562px;width:60px;height:60px}.hair_base_9_ppink2{background-image:url(spritesmith-main-2.png);background-position:-819px -1547px;width:90px;height:90px}.customize-option.hair_base_9_ppink2{background-image:url(spritesmith-main-2.png);background-position:-844px -1562px;width:60px;height:60px}.hair_base_9_ppurple{background-image:url(spritesmith-main-2.png);background-position:-910px -1547px;width:90px;height:90px}.customize-option.hair_base_9_ppurple{background-image:url(spritesmith-main-2.png);background-position:-935px -1562px;width:60px;height:60px}.hair_base_9_ppurple2{background-image:url(spritesmith-main-2.png);background-position:-1001px -1547px;width:90px;height:90px}.customize-option.hair_base_9_ppurple2{background-image:url(spritesmith-main-2.png);background-position:-1026px -1562px;width:60px;height:60px}.hair_base_9_pumpkin{background-image:url(spritesmith-main-2.png);background-position:-1092px -1547px;width:90px;height:90px}.customize-option.hair_base_9_pumpkin{background-image:url(spritesmith-main-2.png);background-position:-1117px -1562px;width:60px;height:60px}.hair_base_9_purple{background-image:url(spritesmith-main-2.png);background-position:-1183px -1547px;width:90px;height:90px}.customize-option.hair_base_9_purple{background-image:url(spritesmith-main-2.png);background-position:-1208px -1562px;width:60px;height:60px}.hair_base_9_pyellow{background-image:url(spritesmith-main-2.png);background-position:-1274px -1547px;width:90px;height:90px}.customize-option.hair_base_9_pyellow{background-image:url(spritesmith-main-2.png);background-position:-1299px -1562px;width:60px;height:60px}.hair_base_9_pyellow2{background-image:url(spritesmith-main-2.png);background-position:-1365px -1547px;width:90px;height:90px}.customize-option.hair_base_9_pyellow2{background-image:url(spritesmith-main-2.png);background-position:-1390px -1562px;width:60px;height:60px}.hair_base_9_rainbow{background-image:url(spritesmith-main-2.png);background-position:-1456px -1547px;width:90px;height:90px}.customize-option.hair_base_9_rainbow{background-image:url(spritesmith-main-2.png);background-position:-1481px -1562px;width:60px;height:60px}.hair_base_9_red{background-image:url(spritesmith-main-2.png);background-position:-1547px -1547px;width:90px;height:90px}.customize-option.hair_base_9_red{background-image:url(spritesmith-main-2.png);background-position:-1572px -1562px;width:60px;height:60px}.hair_base_9_snowy{background-image:url(spritesmith-main-2.png);background-position:-1638px 0;width:90px;height:90px}.customize-option.hair_base_9_snowy{background-image:url(spritesmith-main-2.png);background-position:-1663px -15px;width:60px;height:60px}.hair_base_9_white{background-image:url(spritesmith-main-2.png);background-position:-1638px -91px;width:90px;height:90px}.customize-option.hair_base_9_white{background-image:url(spritesmith-main-2.png);background-position:-1663px -106px;width:60px;height:60px}.hair_base_9_winternight{background-image:url(spritesmith-main-2.png);background-position:-1638px -182px;width:90px;height:90px}.customize-option.hair_base_9_winternight{background-image:url(spritesmith-main-2.png);background-position:-1663px -197px;width:60px;height:60px}.hair_base_9_winterstar{background-image:url(spritesmith-main-2.png);background-position:-1638px -273px;width:90px;height:90px}.customize-option.hair_base_9_winterstar{background-image:url(spritesmith-main-2.png);background-position:-1663px -288px;width:60px;height:60px}.hair_base_9_yellow{background-image:url(spritesmith-main-2.png);background-position:-1638px -364px;width:90px;height:90px}.customize-option.hair_base_9_yellow{background-image:url(spritesmith-main-2.png);background-position:-1663px -379px;width:60px;height:60px}.hair_base_9_zombie{background-image:url(spritesmith-main-3.png);background-position:-1276px -1092px;width:90px;height:90px}.customize-option.hair_base_9_zombie{background-image:url(spritesmith-main-3.png);background-position:-1301px -1107px;width:60px;height:60px}.hair_beard_1_pblue2{background-image:url(spritesmith-main-3.png);background-position:-1276px -728px;width:90px;height:90px}.customize-option.hair_beard_1_pblue2{background-image:url(spritesmith-main-3.png);background-position:-1301px -743px;width:60px;height:60px}.hair_beard_1_pgreen2{background-image:url(spritesmith-main-3.png);background-position:-1276px -1183px;width:90px;height:90px}.customize-option.hair_beard_1_pgreen2{background-image:url(spritesmith-main-3.png);background-position:-1301px -1198px;width:60px;height:60px}.hair_beard_1_porange2{background-image:url(spritesmith-main-3.png);background-position:-91px -1274px;width:90px;height:90px}.customize-option.hair_beard_1_porange2{background-image:url(spritesmith-main-3.png);background-position:-116px -1289px;width:60px;height:60px}.hair_beard_1_ppink2{background-image:url(spritesmith-main-3.png);background-position:-182px -1274px;width:90px;height:90px}.customize-option.hair_beard_1_ppink2{background-image:url(spritesmith-main-3.png);background-position:-207px -1289px;width:60px;height:60px}.hair_beard_1_ppurple2{background-image:url(spritesmith-main-3.png);background-position:-546px -1274px;width:90px;height:90px}.customize-option.hair_beard_1_ppurple2{background-image:url(spritesmith-main-3.png);background-position:-571px -1289px;width:60px;height:60px}.hair_beard_1_pyellow2{background-image:url(spritesmith-main-3.png);background-position:-637px -1274px;width:90px;height:90px}.customize-option.hair_beard_1_pyellow2{background-image:url(spritesmith-main-3.png);background-position:-662px -1289px;width:60px;height:60px}.hair_beard_2_pblue2{background-image:url(spritesmith-main-3.png);background-position:-819px -1274px;width:90px;height:90px}.customize-option.hair_beard_2_pblue2{background-image:url(spritesmith-main-3.png);background-position:-844px -1289px;width:60px;height:60px}.hair_beard_2_pgreen2{background-image:url(spritesmith-main-3.png);background-position:-1092px -1274px;width:90px;height:90px}.customize-option.hair_beard_2_pgreen2{background-image:url(spritesmith-main-3.png);background-position:-1117px -1289px;width:60px;height:60px}.hair_beard_2_porange2{background-image:url(spritesmith-main-3.png);background-position:-1183px -1274px;width:90px;height:90px}.customize-option.hair_beard_2_porange2{background-image:url(spritesmith-main-3.png);background-position:-1208px -1289px;width:60px;height:60px}.hair_beard_2_ppink2{background-image:url(spritesmith-main-3.png);background-position:-1367px 0;width:90px;height:90px}.customize-option.hair_beard_2_ppink2{background-image:url(spritesmith-main-3.png);background-position:-1392px -15px;width:60px;height:60px}.hair_beard_2_ppurple2{background-image:url(spritesmith-main-3.png);background-position:-1367px -91px;width:90px;height:90px}.customize-option.hair_beard_2_ppurple2{background-image:url(spritesmith-main-3.png);background-position:-1392px -106px;width:60px;height:60px}.hair_beard_2_pyellow2{background-image:url(spritesmith-main-3.png);background-position:-1367px -455px;width:90px;height:90px}.customize-option.hair_beard_2_pyellow2{background-image:url(spritesmith-main-3.png);background-position:-1392px -470px;width:60px;height:60px}.hair_beard_3_pblue2{background-image:url(spritesmith-main-3.png);background-position:-1367px -546px;width:90px;height:90px}.customize-option.hair_beard_3_pblue2{background-image:url(spritesmith-main-3.png);background-position:-1392px -561px;width:60px;height:60px}.hair_beard_3_pgreen2{background-image:url(spritesmith-main-3.png);background-position:-1367px -728px;width:90px;height:90px}.customize-option.hair_beard_3_pgreen2{background-image:url(spritesmith-main-3.png);background-position:-1392px -743px;width:60px;height:60px}.hair_beard_3_porange2{background-image:url(spritesmith-main-3.png);background-position:-1367px -819px;width:90px;height:90px}.customize-option.hair_beard_3_porange2{background-image:url(spritesmith-main-3.png);background-position:-1392px -834px;width:60px;height:60px}.hair_beard_3_ppink2{background-image:url(spritesmith-main-3.png);background-position:-1367px -1183px;width:90px;height:90px}.customize-option.hair_beard_3_ppink2{background-image:url(spritesmith-main-3.png);background-position:-1392px -1198px;width:60px;height:60px}.hair_beard_3_ppurple2{background-image:url(spritesmith-main-3.png);background-position:-1367px -1274px;width:90px;height:90px}.customize-option.hair_beard_3_ppurple2{background-image:url(spritesmith-main-3.png);background-position:-1392px -1289px;width:60px;height:60px}.hair_beard_3_pyellow2{background-image:url(spritesmith-main-3.png);background-position:-454px -182px;width:90px;height:90px}.customize-option.hair_beard_3_pyellow2{background-image:url(spritesmith-main-3.png);background-position:-479px -197px;width:60px;height:60px}.hair_mustache_1_pblue2{background-image:url(spritesmith-main-3.png);background-position:-454px -273px;width:90px;height:90px}.customize-option.hair_mustache_1_pblue2{background-image:url(spritesmith-main-3.png);background-position:-479px -288px;width:60px;height:60px}.hair_mustache_1_pgreen2{background-image:url(spritesmith-main-3.png);background-position:0 -364px;width:90px;height:90px}.customize-option.hair_mustache_1_pgreen2{background-image:url(spritesmith-main-3.png);background-position:-25px -379px;width:60px;height:60px}.hair_mustache_1_porange2{background-image:url(spritesmith-main-3.png);background-position:-91px -364px;width:90px;height:90px}.customize-option.hair_mustache_1_porange2{background-image:url(spritesmith-main-3.png);background-position:-116px -379px;width:60px;height:60px}.hair_mustache_1_ppink2{background-image:url(spritesmith-main-3.png);background-position:-182px -364px;width:90px;height:90px}.customize-option.hair_mustache_1_ppink2{background-image:url(spritesmith-main-3.png);background-position:-207px -379px;width:60px;height:60px}.hair_mustache_1_ppurple2{background-image:url(spritesmith-main-3.png);background-position:-273px -364px;width:90px;height:90px}.customize-option.hair_mustache_1_ppurple2{background-image:url(spritesmith-main-3.png);background-position:-298px -379px;width:60px;height:60px}.hair_mustache_1_pyellow2{background-image:url(spritesmith-main-3.png);background-position:-364px -364px;width:90px;height:90px}.customize-option.hair_mustache_1_pyellow2{background-image:url(spritesmith-main-3.png);background-position:-389px -379px;width:60px;height:60px}.hair_mustache_2_pblue2{background-image:url(spritesmith-main-3.png);background-position:-455px -364px;width:90px;height:90px}.customize-option.hair_mustache_2_pblue2{background-image:url(spritesmith-main-3.png);background-position:-480px -379px;width:60px;height:60px}.hair_mustache_2_pgreen2{background-image:url(spritesmith-main-3.png);background-position:0 -455px;width:90px;height:90px}.customize-option.hair_mustache_2_pgreen2{background-image:url(spritesmith-main-3.png);background-position:-25px -470px;width:60px;height:60px}.hair_mustache_2_porange2{background-image:url(spritesmith-main-3.png);background-position:-91px -455px;width:90px;height:90px}.customize-option.hair_mustache_2_porange2{background-image:url(spritesmith-main-3.png);background-position:-116px -470px;width:60px;height:60px}.hair_mustache_2_ppink2{background-image:url(spritesmith-main-3.png);background-position:-182px -455px;width:90px;height:90px}.customize-option.hair_mustache_2_ppink2{background-image:url(spritesmith-main-3.png);background-position:-207px -470px;width:60px;height:60px}.hair_mustache_2_ppurple2{background-image:url(spritesmith-main-3.png);background-position:-273px -455px;width:90px;height:90px}.customize-option.hair_mustache_2_ppurple2{background-image:url(spritesmith-main-3.png);background-position:-298px -470px;width:60px;height:60px}.hair_mustache_2_pyellow2{background-image:url(spritesmith-main-3.png);background-position:-364px -455px;width:90px;height:90px}.customize-option.hair_mustache_2_pyellow2{background-image:url(spritesmith-main-3.png);background-position:-389px -470px;width:60px;height:60px}.broad_shirt_black{background-image:url(spritesmith-main-3.png);background-position:-455px -455px;width:90px;height:90px}.customize-option.broad_shirt_black{background-image:url(spritesmith-main-3.png);background-position:-480px -485px;width:60px;height:60px}.broad_shirt_blue{background-image:url(spritesmith-main-3.png);background-position:-548px 0;width:90px;height:90px}.customize-option.broad_shirt_blue{background-image:url(spritesmith-main-3.png);background-position:-573px -30px;width:60px;height:60px}.broad_shirt_convict{background-image:url(spritesmith-main-3.png);background-position:-548px -91px;width:90px;height:90px}.customize-option.broad_shirt_convict{background-image:url(spritesmith-main-3.png);background-position:-573px -121px;width:60px;height:60px}.broad_shirt_cross{background-image:url(spritesmith-main-3.png);background-position:-548px -182px;width:90px;height:90px}.customize-option.broad_shirt_cross{background-image:url(spritesmith-main-3.png);background-position:-573px -212px;width:60px;height:60px}.broad_shirt_fire{background-image:url(spritesmith-main-3.png);background-position:-548px -273px;width:90px;height:90px}.customize-option.broad_shirt_fire{background-image:url(spritesmith-main-3.png);background-position:-573px -303px;width:60px;height:60px}.broad_shirt_green{background-image:url(spritesmith-main-3.png);background-position:-548px -364px;width:90px;height:90px}.customize-option.broad_shirt_green{background-image:url(spritesmith-main-3.png);background-position:-573px -394px;width:60px;height:60px}.broad_shirt_horizon{background-image:url(spritesmith-main-3.png);background-position:-548px -455px;width:90px;height:90px}.customize-option.broad_shirt_horizon{background-image:url(spritesmith-main-3.png);background-position:-573px -485px;width:60px;height:60px}.broad_shirt_ocean{background-image:url(spritesmith-main-3.png);background-position:0 -546px;width:90px;height:90px}.customize-option.broad_shirt_ocean{background-image:url(spritesmith-main-3.png);background-position:-25px -576px;width:60px;height:60px}.broad_shirt_pink{background-image:url(spritesmith-main-3.png);background-position:-91px -546px;width:90px;height:90px}.customize-option.broad_shirt_pink{background-image:url(spritesmith-main-3.png);background-position:-116px -576px;width:60px;height:60px}.broad_shirt_purple{background-image:url(spritesmith-main-3.png);background-position:-182px -546px;width:90px;height:90px}.customize-option.broad_shirt_purple{background-image:url(spritesmith-main-3.png);background-position:-207px -576px;width:60px;height:60px}.broad_shirt_rainbow{background-image:url(spritesmith-main-3.png);background-position:-273px -546px;width:90px;height:90px}.customize-option.broad_shirt_rainbow{background-image:url(spritesmith-main-3.png);background-position:-298px -576px;width:60px;height:60px}.broad_shirt_redblue{background-image:url(spritesmith-main-3.png);background-position:-364px -546px;width:90px;height:90px}.customize-option.broad_shirt_redblue{background-image:url(spritesmith-main-3.png);background-position:-389px -576px;width:60px;height:60px}.broad_shirt_thunder{background-image:url(spritesmith-main-3.png);background-position:-455px -546px;width:90px;height:90px}.customize-option.broad_shirt_thunder{background-image:url(spritesmith-main-3.png);background-position:-480px -576px;width:60px;height:60px}.broad_shirt_tropical{background-image:url(spritesmith-main-3.png);background-position:-546px -546px;width:90px;height:90px}.customize-option.broad_shirt_tropical{background-image:url(spritesmith-main-3.png);background-position:-571px -576px;width:60px;height:60px}.broad_shirt_white{background-image:url(spritesmith-main-3.png);background-position:-639px 0;width:90px;height:90px}.customize-option.broad_shirt_white{background-image:url(spritesmith-main-3.png);background-position:-664px -30px;width:60px;height:60px}.broad_shirt_yellow{background-image:url(spritesmith-main-3.png);background-position:-639px -91px;width:90px;height:90px}.customize-option.broad_shirt_yellow{background-image:url(spritesmith-main-3.png);background-position:-664px -121px;width:60px;height:60px}.broad_shirt_zombie{background-image:url(spritesmith-main-3.png);background-position:-639px -182px;width:90px;height:90px}.customize-option.broad_shirt_zombie{background-image:url(spritesmith-main-3.png);background-position:-664px -212px;width:60px;height:60px}.slim_shirt_black{background-image:url(spritesmith-main-3.png);background-position:-639px -273px;width:90px;height:90px}.customize-option.slim_shirt_black{background-image:url(spritesmith-main-3.png);background-position:-664px -303px;width:60px;height:60px}.slim_shirt_blue{background-image:url(spritesmith-main-3.png);background-position:-639px -364px;width:90px;height:90px}.customize-option.slim_shirt_blue{background-image:url(spritesmith-main-3.png);background-position:-664px -394px;width:60px;height:60px}.slim_shirt_convict{background-image:url(spritesmith-main-3.png);background-position:-639px -455px;width:90px;height:90px}.customize-option.slim_shirt_convict{background-image:url(spritesmith-main-3.png);background-position:-664px -485px;width:60px;height:60px}.slim_shirt_cross{background-image:url(spritesmith-main-3.png);background-position:-639px -546px;width:90px;height:90px}.customize-option.slim_shirt_cross{background-image:url(spritesmith-main-3.png);background-position:-664px -576px;width:60px;height:60px}.slim_shirt_fire{background-image:url(spritesmith-main-3.png);background-position:0 -637px;width:90px;height:90px}.customize-option.slim_shirt_fire{background-image:url(spritesmith-main-3.png);background-position:-25px -667px;width:60px;height:60px}.slim_shirt_green{background-image:url(spritesmith-main-3.png);background-position:-91px -637px;width:90px;height:90px}.customize-option.slim_shirt_green{background-image:url(spritesmith-main-3.png);background-position:-116px -667px;width:60px;height:60px}.slim_shirt_horizon{background-image:url(spritesmith-main-3.png);background-position:-182px -637px;width:90px;height:90px}.customize-option.slim_shirt_horizon{background-image:url(spritesmith-main-3.png);background-position:-207px -667px;width:60px;height:60px}.slim_shirt_ocean{background-image:url(spritesmith-main-3.png);background-position:-273px -637px;width:90px;height:90px}.customize-option.slim_shirt_ocean{background-image:url(spritesmith-main-3.png);background-position:-298px -667px;width:60px;height:60px}.slim_shirt_pink{background-image:url(spritesmith-main-3.png);background-position:-364px -637px;width:90px;height:90px}.customize-option.slim_shirt_pink{background-image:url(spritesmith-main-3.png);background-position:-389px -667px;width:60px;height:60px}.slim_shirt_purple{background-image:url(spritesmith-main-3.png);background-position:-455px -637px;width:90px;height:90px}.customize-option.slim_shirt_purple{background-image:url(spritesmith-main-3.png);background-position:-480px -667px;width:60px;height:60px}.slim_shirt_rainbow{background-image:url(spritesmith-main-3.png);background-position:-546px -637px;width:90px;height:90px}.customize-option.slim_shirt_rainbow{background-image:url(spritesmith-main-3.png);background-position:-571px -667px;width:60px;height:60px}.slim_shirt_redblue{background-image:url(spritesmith-main-3.png);background-position:-637px -637px;width:90px;height:90px}.customize-option.slim_shirt_redblue{background-image:url(spritesmith-main-3.png);background-position:-662px -667px;width:60px;height:60px}.slim_shirt_thunder{background-image:url(spritesmith-main-3.png);background-position:-730px 0;width:90px;height:90px}.customize-option.slim_shirt_thunder{background-image:url(spritesmith-main-3.png);background-position:-755px -30px;width:60px;height:60px}.slim_shirt_tropical{background-image:url(spritesmith-main-3.png);background-position:-730px -91px;width:90px;height:90px}.customize-option.slim_shirt_tropical{background-image:url(spritesmith-main-3.png);background-position:-755px -121px;width:60px;height:60px}.slim_shirt_white{background-image:url(spritesmith-main-3.png);background-position:-730px -182px;width:90px;height:90px}.customize-option.slim_shirt_white{background-image:url(spritesmith-main-3.png);background-position:-755px -212px;width:60px;height:60px}.slim_shirt_yellow{background-image:url(spritesmith-main-3.png);background-position:-730px -273px;width:90px;height:90px}.customize-option.slim_shirt_yellow{background-image:url(spritesmith-main-3.png);background-position:-755px -303px;width:60px;height:60px}.slim_shirt_zombie{background-image:url(spritesmith-main-3.png);background-position:-730px -364px;width:90px;height:90px}.customize-option.slim_shirt_zombie{background-image:url(spritesmith-main-3.png);background-position:-755px -394px;width:60px;height:60px}.skin_0ff591{background-image:url(spritesmith-main-3.png);background-position:-730px -455px;width:90px;height:90px}.customize-option.skin_0ff591{background-image:url(spritesmith-main-3.png);background-position:-755px -470px;width:60px;height:60px}.skin_0ff591_sleep{background-image:url(spritesmith-main-3.png);background-position:-730px -546px;width:90px;height:90px}.customize-option.skin_0ff591_sleep{background-image:url(spritesmith-main-3.png);background-position:-755px -561px;width:60px;height:60px}.skin_2b43f6{background-image:url(spritesmith-main-3.png);background-position:-730px -637px;width:90px;height:90px}.customize-option.skin_2b43f6{background-image:url(spritesmith-main-3.png);background-position:-755px -652px;width:60px;height:60px}.skin_2b43f6_sleep{background-image:url(spritesmith-main-3.png);background-position:0 -728px;width:90px;height:90px}.customize-option.skin_2b43f6_sleep{background-image:url(spritesmith-main-3.png);background-position:-25px -743px;width:60px;height:60px}.skin_6bd049{background-image:url(spritesmith-main-3.png);background-position:-91px -728px;width:90px;height:90px}.customize-option.skin_6bd049{background-image:url(spritesmith-main-3.png);background-position:-116px -743px;width:60px;height:60px}.skin_6bd049_sleep{background-image:url(spritesmith-main-3.png);background-position:-182px -728px;width:90px;height:90px}.customize-option.skin_6bd049_sleep{background-image:url(spritesmith-main-3.png);background-position:-207px -743px;width:60px;height:60px}.skin_800ed0{background-image:url(spritesmith-main-3.png);background-position:-273px -728px;width:90px;height:90px}.customize-option.skin_800ed0{background-image:url(spritesmith-main-3.png);background-position:-298px -743px;width:60px;height:60px}.skin_800ed0_sleep{background-image:url(spritesmith-main-3.png);background-position:-364px -728px;width:90px;height:90px}.customize-option.skin_800ed0_sleep{background-image:url(spritesmith-main-3.png);background-position:-389px -743px;width:60px;height:60px}.skin_915533{background-image:url(spritesmith-main-3.png);background-position:-455px -728px;width:90px;height:90px}.customize-option.skin_915533{background-image:url(spritesmith-main-3.png);background-position:-480px -743px;width:60px;height:60px}.skin_915533_sleep{background-image:url(spritesmith-main-3.png);background-position:-546px -728px;width:90px;height:90px}.customize-option.skin_915533_sleep{background-image:url(spritesmith-main-3.png);background-position:-571px -743px;width:60px;height:60px}.skin_98461a{background-image:url(spritesmith-main-3.png);background-position:-637px -728px;width:90px;height:90px}.customize-option.skin_98461a{background-image:url(spritesmith-main-3.png);background-position:-662px -743px;width:60px;height:60px}.skin_98461a_sleep{background-image:url(spritesmith-main-3.png);background-position:-728px -728px;width:90px;height:90px}.customize-option.skin_98461a_sleep{background-image:url(spritesmith-main-3.png);background-position:-753px -743px;width:60px;height:60px}.skin_bear{background-image:url(spritesmith-main-3.png);background-position:-821px 0;width:90px;height:90px}.customize-option.skin_bear{background-image:url(spritesmith-main-3.png);background-position:-846px -15px;width:60px;height:60px}.skin_bear_sleep{background-image:url(spritesmith-main-3.png);background-position:-821px -91px;width:90px;height:90px}.customize-option.skin_bear_sleep{background-image:url(spritesmith-main-3.png);background-position:-846px -106px;width:60px;height:60px}.skin_c06534{background-image:url(spritesmith-main-3.png);background-position:-821px -182px;width:90px;height:90px}.customize-option.skin_c06534{background-image:url(spritesmith-main-3.png);background-position:-846px -197px;width:60px;height:60px}.skin_c06534_sleep{background-image:url(spritesmith-main-3.png);background-position:-821px -273px;width:90px;height:90px}.customize-option.skin_c06534_sleep{background-image:url(spritesmith-main-3.png);background-position:-846px -288px;width:60px;height:60px}.skin_c3e1dc{background-image:url(spritesmith-main-3.png);background-position:-821px -364px;width:90px;height:90px}.customize-option.skin_c3e1dc{background-image:url(spritesmith-main-3.png);background-position:-846px -379px;width:60px;height:60px}.skin_c3e1dc_sleep{background-image:url(spritesmith-main-3.png);background-position:-821px -455px;width:90px;height:90px}.customize-option.skin_c3e1dc_sleep{background-image:url(spritesmith-main-3.png);background-position:-846px -470px;width:60px;height:60px}.skin_cactus{background-image:url(spritesmith-main-3.png);background-position:-821px -546px;width:90px;height:90px}.customize-option.skin_cactus{background-image:url(spritesmith-main-3.png);background-position:-846px -561px;width:60px;height:60px}.skin_cactus_sleep{background-image:url(spritesmith-main-3.png);background-position:-821px -637px;width:90px;height:90px}.customize-option.skin_cactus_sleep{background-image:url(spritesmith-main-3.png);background-position:-846px -652px;width:60px;height:60px}.skin_candycorn{background-image:url(spritesmith-main-3.png);background-position:-821px -728px;width:90px;height:90px}.customize-option.skin_candycorn{background-image:url(spritesmith-main-3.png);background-position:-846px -743px;width:60px;height:60px}.skin_candycorn_sleep{background-image:url(spritesmith-main-3.png);background-position:0 -819px;width:90px;height:90px}.customize-option.skin_candycorn_sleep{background-image:url(spritesmith-main-3.png);background-position:-25px -834px;width:60px;height:60px}.skin_clownfish{background-image:url(spritesmith-main-3.png);background-position:-91px -819px;width:90px;height:90px}.customize-option.skin_clownfish{background-image:url(spritesmith-main-3.png);background-position:-116px -834px;width:60px;height:60px}.skin_clownfish_sleep{background-image:url(spritesmith-main-3.png);background-position:-182px -819px;width:90px;height:90px}.customize-option.skin_clownfish_sleep{background-image:url(spritesmith-main-3.png);background-position:-207px -834px;width:60px;height:60px}.skin_d7a9f7{background-image:url(spritesmith-main-3.png);background-position:-273px -819px;width:90px;height:90px}.customize-option.skin_d7a9f7{background-image:url(spritesmith-main-3.png);background-position:-298px -834px;width:60px;height:60px}.skin_d7a9f7_sleep{background-image:url(spritesmith-main-3.png);background-position:-364px -819px;width:90px;height:90px}.customize-option.skin_d7a9f7_sleep{background-image:url(spritesmith-main-3.png);background-position:-389px -834px;width:60px;height:60px}.skin_ddc994{background-image:url(spritesmith-main-3.png);background-position:-455px -819px;width:90px;height:90px}.customize-option.skin_ddc994{background-image:url(spritesmith-main-3.png);background-position:-480px -834px;width:60px;height:60px}.skin_ddc994_sleep{background-image:url(spritesmith-main-3.png);background-position:-546px -819px;width:90px;height:90px}.customize-option.skin_ddc994_sleep{background-image:url(spritesmith-main-3.png);background-position:-571px -834px;width:60px;height:60px}.skin_deepocean{background-image:url(spritesmith-main-3.png);background-position:-637px -819px;width:90px;height:90px}.customize-option.skin_deepocean{background-image:url(spritesmith-main-3.png);background-position:-662px -834px;width:60px;height:60px}.skin_deepocean_sleep{background-image:url(spritesmith-main-3.png);background-position:-728px -819px;width:90px;height:90px}.customize-option.skin_deepocean_sleep{background-image:url(spritesmith-main-3.png);background-position:-753px -834px;width:60px;height:60px}.skin_ea8349{background-image:url(spritesmith-main-3.png);background-position:-819px -819px;width:90px;height:90px}.customize-option.skin_ea8349{background-image:url(spritesmith-main-3.png);background-position:-844px -834px;width:60px;height:60px}.skin_ea8349_sleep{background-image:url(spritesmith-main-3.png);background-position:-912px 0;width:90px;height:90px}.customize-option.skin_ea8349_sleep{background-image:url(spritesmith-main-3.png);background-position:-937px -15px;width:60px;height:60px}.skin_eb052b{background-image:url(spritesmith-main-3.png);background-position:-912px -91px;width:90px;height:90px}.customize-option.skin_eb052b{background-image:url(spritesmith-main-3.png);background-position:-937px -106px;width:60px;height:60px}.skin_eb052b_sleep{background-image:url(spritesmith-main-3.png);background-position:-912px -182px;width:90px;height:90px}.customize-option.skin_eb052b_sleep{background-image:url(spritesmith-main-3.png);background-position:-937px -197px;width:60px;height:60px}.skin_f5a76e{background-image:url(spritesmith-main-3.png);background-position:-912px -273px;width:90px;height:90px}.customize-option.skin_f5a76e{background-image:url(spritesmith-main-3.png);background-position:-937px -288px;width:60px;height:60px}.skin_f5a76e_sleep{background-image:url(spritesmith-main-3.png);background-position:-912px -364px;width:90px;height:90px}.customize-option.skin_f5a76e_sleep{background-image:url(spritesmith-main-3.png);background-position:-937px -379px;width:60px;height:60px}.skin_f5d70f{background-image:url(spritesmith-main-3.png);background-position:-912px -455px;width:90px;height:90px}.customize-option.skin_f5d70f{background-image:url(spritesmith-main-3.png);background-position:-937px -470px;width:60px;height:60px}.skin_f5d70f_sleep{background-image:url(spritesmith-main-3.png);background-position:-912px -546px;width:90px;height:90px}.customize-option.skin_f5d70f_sleep{background-image:url(spritesmith-main-3.png);background-position:-937px -561px;width:60px;height:60px}.skin_f69922{background-image:url(spritesmith-main-3.png);background-position:-912px -637px;width:90px;height:90px}.customize-option.skin_f69922{background-image:url(spritesmith-main-3.png);background-position:-937px -652px;width:60px;height:60px}.skin_f69922_sleep{background-image:url(spritesmith-main-3.png);background-position:-912px -728px;width:90px;height:90px}.customize-option.skin_f69922_sleep{background-image:url(spritesmith-main-3.png);background-position:-937px -743px;width:60px;height:60px}.skin_fox{background-image:url(spritesmith-main-3.png);background-position:-912px -819px;width:90px;height:90px}.customize-option.skin_fox{background-image:url(spritesmith-main-3.png);background-position:-937px -834px;width:60px;height:60px}.skin_fox_sleep{background-image:url(spritesmith-main-3.png);background-position:0 -910px;width:90px;height:90px}.customize-option.skin_fox_sleep{background-image:url(spritesmith-main-3.png);background-position:-25px -925px;width:60px;height:60px}.skin_ghost{background-image:url(spritesmith-main-3.png);background-position:-91px -910px;width:90px;height:90px}.customize-option.skin_ghost{background-image:url(spritesmith-main-3.png);background-position:-116px -925px;width:60px;height:60px}.skin_ghost_sleep{background-image:url(spritesmith-main-3.png);background-position:-182px -910px;width:90px;height:90px}.customize-option.skin_ghost_sleep{background-image:url(spritesmith-main-3.png);background-position:-207px -925px;width:60px;height:60px}.skin_lion{background-image:url(spritesmith-main-3.png);background-position:-273px -910px;width:90px;height:90px}.customize-option.skin_lion{background-image:url(spritesmith-main-3.png);background-position:-298px -925px;width:60px;height:60px}.skin_lion_sleep{background-image:url(spritesmith-main-3.png);background-position:-364px -910px;width:90px;height:90px}.customize-option.skin_lion_sleep{background-image:url(spritesmith-main-3.png);background-position:-389px -925px;width:60px;height:60px}.skin_merblue{background-image:url(spritesmith-main-3.png);background-position:-455px -910px;width:90px;height:90px}.customize-option.skin_merblue{background-image:url(spritesmith-main-3.png);background-position:-480px -925px;width:60px;height:60px}.skin_merblue_sleep{background-image:url(spritesmith-main-3.png);background-position:-546px -910px;width:90px;height:90px}.customize-option.skin_merblue_sleep{background-image:url(spritesmith-main-3.png);background-position:-571px -925px;width:60px;height:60px}.skin_mergold{background-image:url(spritesmith-main-3.png);background-position:-637px -910px;width:90px;height:90px}.customize-option.skin_mergold{background-image:url(spritesmith-main-3.png);background-position:-662px -925px;width:60px;height:60px}.skin_mergold_sleep{background-image:url(spritesmith-main-3.png);background-position:-728px -910px;width:90px;height:90px}.customize-option.skin_mergold_sleep{background-image:url(spritesmith-main-3.png);background-position:-753px -925px;width:60px;height:60px}.skin_mergreen{background-image:url(spritesmith-main-3.png);background-position:-819px -910px;width:90px;height:90px}.customize-option.skin_mergreen{background-image:url(spritesmith-main-3.png);background-position:-844px -925px;width:60px;height:60px}.skin_mergreen_sleep{background-image:url(spritesmith-main-3.png);background-position:-910px -910px;width:90px;height:90px}.customize-option.skin_mergreen_sleep{background-image:url(spritesmith-main-3.png);background-position:-935px -925px;width:60px;height:60px}.skin_merruby{background-image:url(spritesmith-main-3.png);background-position:-1003px 0;width:90px;height:90px}.customize-option.skin_merruby{background-image:url(spritesmith-main-3.png);background-position:-1028px -15px;width:60px;height:60px}.skin_merruby_sleep{background-image:url(spritesmith-main-3.png);background-position:-1003px -91px;width:90px;height:90px}.customize-option.skin_merruby_sleep{background-image:url(spritesmith-main-3.png);background-position:-1028px -106px;width:60px;height:60px}.skin_monster{background-image:url(spritesmith-main-3.png);background-position:-1003px -182px;width:90px;height:90px}.customize-option.skin_monster{background-image:url(spritesmith-main-3.png);background-position:-1028px -197px;width:60px;height:60px}.skin_monster_sleep{background-image:url(spritesmith-main-3.png);background-position:-1003px -273px;width:90px;height:90px}.customize-option.skin_monster_sleep{background-image:url(spritesmith-main-3.png);background-position:-1028px -288px;width:60px;height:60px}.skin_ogre{background-image:url(spritesmith-main-3.png);background-position:-1003px -364px;width:90px;height:90px}.customize-option.skin_ogre{background-image:url(spritesmith-main-3.png);background-position:-1028px -379px;width:60px;height:60px}.skin_ogre_sleep{background-image:url(spritesmith-main-3.png);background-position:-1003px -455px;width:90px;height:90px}.customize-option.skin_ogre_sleep{background-image:url(spritesmith-main-3.png);background-position:-1028px -470px;width:60px;height:60px}.skin_panda{background-image:url(spritesmith-main-3.png);background-position:-1003px -546px;width:90px;height:90px}.customize-option.skin_panda{background-image:url(spritesmith-main-3.png);background-position:-1028px -561px;width:60px;height:60px}.skin_panda_sleep{background-image:url(spritesmith-main-3.png);background-position:-1003px -637px;width:90px;height:90px}.customize-option.skin_panda_sleep{background-image:url(spritesmith-main-3.png);background-position:-1028px -652px;width:60px;height:60px}.skin_pastelBlue{background-image:url(spritesmith-main-3.png);background-position:-1003px -728px;width:90px;height:90px}.customize-option.skin_pastelBlue{background-image:url(spritesmith-main-3.png);background-position:-1028px -743px;width:60px;height:60px}.skin_pastelBlue_sleep{background-image:url(spritesmith-main-3.png);background-position:-1003px -819px;width:90px;height:90px}.customize-option.skin_pastelBlue_sleep{background-image:url(spritesmith-main-3.png);background-position:-1028px -834px;width:60px;height:60px}.skin_pastelGreen{background-image:url(spritesmith-main-3.png);background-position:-1003px -910px;width:90px;height:90px}.customize-option.skin_pastelGreen{background-image:url(spritesmith-main-3.png);background-position:-1028px -925px;width:60px;height:60px}.skin_pastelGreen_sleep{background-image:url(spritesmith-main-3.png);background-position:0 -1001px;width:90px;height:90px}.customize-option.skin_pastelGreen_sleep{background-image:url(spritesmith-main-3.png);background-position:-25px -1016px;width:60px;height:60px}.skin_pastelOrange{background-image:url(spritesmith-main-3.png);background-position:-91px -1001px;width:90px;height:90px}.customize-option.skin_pastelOrange{background-image:url(spritesmith-main-3.png);background-position:-116px -1016px;width:60px;height:60px}.skin_pastelOrange_sleep{background-image:url(spritesmith-main-3.png);background-position:-182px -1001px;width:90px;height:90px}.customize-option.skin_pastelOrange_sleep{background-image:url(spritesmith-main-3.png);background-position:-207px -1016px;width:60px;height:60px}.skin_pastelPink{background-image:url(spritesmith-main-3.png);background-position:-273px -1001px;width:90px;height:90px}.customize-option.skin_pastelPink{background-image:url(spritesmith-main-3.png);background-position:-298px -1016px;width:60px;height:60px}.skin_pastelPink_sleep{background-image:url(spritesmith-main-3.png);background-position:-364px -1001px;width:90px;height:90px}.customize-option.skin_pastelPink_sleep{background-image:url(spritesmith-main-3.png);background-position:-389px -1016px;width:60px;height:60px}.skin_pastelPurple{background-image:url(spritesmith-main-3.png);background-position:-455px -1001px;width:90px;height:90px}.customize-option.skin_pastelPurple{background-image:url(spritesmith-main-3.png);background-position:-480px -1016px;width:60px;height:60px}.skin_pastelPurple_sleep{background-image:url(spritesmith-main-3.png);background-position:-546px -1001px;width:90px;height:90px}.customize-option.skin_pastelPurple_sleep{background-image:url(spritesmith-main-3.png);background-position:-571px -1016px;width:60px;height:60px}.skin_pastelRainbowChevron{background-image:url(spritesmith-main-3.png);background-position:-637px -1001px;width:90px;height:90px}.customize-option.skin_pastelRainbowChevron{background-image:url(spritesmith-main-3.png);background-position:-662px -1016px;width:60px;height:60px}.skin_pastelRainbowChevron_sleep{background-image:url(spritesmith-main-3.png);background-position:-728px -1001px;width:90px;height:90px}.customize-option.skin_pastelRainbowChevron_sleep{background-image:url(spritesmith-main-3.png);background-position:-753px -1016px;width:60px;height:60px}.skin_pastelRainbowDiagonal{background-image:url(spritesmith-main-3.png);background-position:-819px -1001px;width:90px;height:90px}.customize-option.skin_pastelRainbowDiagonal{background-image:url(spritesmith-main-3.png);background-position:-844px -1016px;width:60px;height:60px}.skin_pastelRainbowDiagonal_sleep{background-image:url(spritesmith-main-3.png);background-position:-910px -1001px;width:90px;height:90px}.customize-option.skin_pastelRainbowDiagonal_sleep{background-image:url(spritesmith-main-3.png);background-position:-935px -1016px;width:60px;height:60px}.skin_pastelYellow{background-image:url(spritesmith-main-3.png);background-position:-1001px -1001px;width:90px;height:90px}.customize-option.skin_pastelYellow{background-image:url(spritesmith-main-3.png);background-position:-1026px -1016px;width:60px;height:60px}.skin_pastelYellow_sleep{background-image:url(spritesmith-main-3.png);background-position:-1094px 0;width:90px;height:90px}.customize-option.skin_pastelYellow_sleep{background-image:url(spritesmith-main-3.png);background-position:-1119px -15px;width:60px;height:60px}.skin_pig{background-image:url(spritesmith-main-3.png);background-position:-1094px -91px;width:90px;height:90px}.customize-option.skin_pig{background-image:url(spritesmith-main-3.png);background-position:-1119px -106px;width:60px;height:60px}.skin_pig_sleep{background-image:url(spritesmith-main-3.png);background-position:-1094px -182px;width:90px;height:90px}.customize-option.skin_pig_sleep{background-image:url(spritesmith-main-3.png);background-position:-1119px -197px;width:60px;height:60px}.skin_pumpkin{background-image:url(spritesmith-main-3.png);background-position:-1094px -273px;width:90px;height:90px}.customize-option.skin_pumpkin{background-image:url(spritesmith-main-3.png);background-position:-1119px -288px;width:60px;height:60px}.skin_pumpkin2{background-image:url(spritesmith-main-3.png);background-position:-1094px -364px;width:90px;height:90px}.customize-option.skin_pumpkin2{background-image:url(spritesmith-main-3.png);background-position:-1119px -379px;width:60px;height:60px}.skin_pumpkin2_sleep{background-image:url(spritesmith-main-3.png);background-position:-1094px -455px;width:90px;height:90px}.customize-option.skin_pumpkin2_sleep{background-image:url(spritesmith-main-3.png);background-position:-1119px -470px;width:60px;height:60px}.skin_pumpkin_sleep{background-image:url(spritesmith-main-3.png);background-position:-1094px -546px;width:90px;height:90px}.customize-option.skin_pumpkin_sleep{background-image:url(spritesmith-main-3.png);background-position:-1119px -561px;width:60px;height:60px}.skin_rainbow{background-image:url(spritesmith-main-3.png);background-position:-1094px -637px;width:90px;height:90px}.customize-option.skin_rainbow{background-image:url(spritesmith-main-3.png);background-position:-1119px -652px;width:60px;height:60px}.skin_rainbow_sleep{background-image:url(spritesmith-main-3.png);background-position:-1094px -728px;width:90px;height:90px}.customize-option.skin_rainbow_sleep{background-image:url(spritesmith-main-3.png);background-position:-1119px -743px;width:60px;height:60px}.skin_reptile{background-image:url(spritesmith-main-3.png);background-position:-1094px -819px;width:90px;height:90px}.customize-option.skin_reptile{background-image:url(spritesmith-main-3.png);background-position:-1119px -834px;width:60px;height:60px}.skin_reptile_sleep{background-image:url(spritesmith-main-3.png);background-position:-1094px -910px;width:90px;height:90px}.customize-option.skin_reptile_sleep{background-image:url(spritesmith-main-3.png);background-position:-1119px -925px;width:60px;height:60px}.skin_shadow{background-image:url(spritesmith-main-3.png);background-position:-1094px -1001px;width:90px;height:90px}.customize-option.skin_shadow{background-image:url(spritesmith-main-3.png);background-position:-1119px -1016px;width:60px;height:60px}.skin_shadow2{background-image:url(spritesmith-main-3.png);background-position:0 -1092px;width:90px;height:90px}.customize-option.skin_shadow2{background-image:url(spritesmith-main-3.png);background-position:-25px -1107px;width:60px;height:60px}.skin_shadow2_sleep{background-image:url(spritesmith-main-3.png);background-position:-91px -1092px;width:90px;height:90px}.customize-option.skin_shadow2_sleep{background-image:url(spritesmith-main-3.png);background-position:-116px -1107px;width:60px;height:60px}.skin_shadow_sleep{background-image:url(spritesmith-main-3.png);background-position:-182px -1092px;width:90px;height:90px}.customize-option.skin_shadow_sleep{background-image:url(spritesmith-main-3.png);background-position:-207px -1107px;width:60px;height:60px}.skin_shark{background-image:url(spritesmith-main-3.png);background-position:-273px -1092px;width:90px;height:90px}.customize-option.skin_shark{background-image:url(spritesmith-main-3.png);background-position:-298px -1107px;width:60px;height:60px}.skin_shark_sleep{background-image:url(spritesmith-main-3.png);background-position:-364px -1092px;width:90px;height:90px}.customize-option.skin_shark_sleep{background-image:url(spritesmith-main-3.png);background-position:-389px -1107px;width:60px;height:60px}.skin_skeleton{background-image:url(spritesmith-main-3.png);background-position:-455px -1092px;width:90px;height:90px}.customize-option.skin_skeleton{background-image:url(spritesmith-main-3.png);background-position:-480px -1107px;width:60px;height:60px}.skin_skeleton2{background-image:url(spritesmith-main-3.png);background-position:-546px -1092px;width:90px;height:90px}.customize-option.skin_skeleton2{background-image:url(spritesmith-main-3.png);background-position:-571px -1107px;width:60px;height:60px}.skin_skeleton2_sleep{background-image:url(spritesmith-main-3.png);background-position:-637px -1092px;width:90px;height:90px}.customize-option.skin_skeleton2_sleep{background-image:url(spritesmith-main-3.png);background-position:-662px -1107px;width:60px;height:60px}.skin_skeleton_sleep{background-image:url(spritesmith-main-3.png);background-position:-728px -1092px;width:90px;height:90px}.customize-option.skin_skeleton_sleep{background-image:url(spritesmith-main-3.png);background-position:-753px -1107px;width:60px;height:60px}.skin_tiger{background-image:url(spritesmith-main-3.png);background-position:-819px -1092px;width:90px;height:90px}.customize-option.skin_tiger{background-image:url(spritesmith-main-3.png);background-position:-844px -1107px;width:60px;height:60px}.skin_tiger_sleep{background-image:url(spritesmith-main-3.png);background-position:-910px -1092px;width:90px;height:90px}.customize-option.skin_tiger_sleep{background-image:url(spritesmith-main-3.png);background-position:-935px -1107px;width:60px;height:60px}.skin_transparent{background-image:url(spritesmith-main-3.png);background-position:-1001px -1092px;width:90px;height:90px}.customize-option.skin_transparent{background-image:url(spritesmith-main-3.png);background-position:-1026px -1107px;width:60px;height:60px}.skin_transparent_sleep{background-image:url(spritesmith-main-3.png);background-position:-1092px -1092px;width:90px;height:90px}.customize-option.skin_transparent_sleep{background-image:url(spritesmith-main-3.png);background-position:-1117px -1107px;width:60px;height:60px}.skin_tropicalwater{background-image:url(spritesmith-main-3.png);background-position:-1185px 0;width:90px;height:90px}.customize-option.skin_tropicalwater{background-image:url(spritesmith-main-3.png);background-position:-1210px -15px;width:60px;height:60px}.skin_tropicalwater_sleep{background-image:url(spritesmith-main-3.png);background-position:-1185px -91px;width:90px;height:90px}.customize-option.skin_tropicalwater_sleep{background-image:url(spritesmith-main-3.png);background-position:-1210px -106px;width:60px;height:60px}.skin_wolf{background-image:url(spritesmith-main-3.png);background-position:-1185px -182px;width:90px;height:90px}.customize-option.skin_wolf{background-image:url(spritesmith-main-3.png);background-position:-1210px -197px;width:60px;height:60px}.skin_wolf_sleep{background-image:url(spritesmith-main-3.png);background-position:-1185px -273px;width:90px;height:90px}.customize-option.skin_wolf_sleep{background-image:url(spritesmith-main-3.png);background-position:-1210px -288px;width:60px;height:60px}.skin_zombie{background-image:url(spritesmith-main-3.png);background-position:-1185px -364px;width:90px;height:90px}.customize-option.skin_zombie{background-image:url(spritesmith-main-3.png);background-position:-1210px -379px;width:60px;height:60px}.skin_zombie2{background-image:url(spritesmith-main-3.png);background-position:-1185px -455px;width:90px;height:90px}.customize-option.skin_zombie2{background-image:url(spritesmith-main-3.png);background-position:-1210px -470px;width:60px;height:60px}.skin_zombie2_sleep{background-image:url(spritesmith-main-3.png);background-position:-1185px -546px;width:90px;height:90px}.customize-option.skin_zombie2_sleep{background-image:url(spritesmith-main-3.png);background-position:-1210px -561px;width:60px;height:60px}.skin_zombie_sleep{background-image:url(spritesmith-main-3.png);background-position:-1185px -637px;width:90px;height:90px}.customize-option.skin_zombie_sleep{background-image:url(spritesmith-main-3.png);background-position:-1210px -652px;width:60px;height:60px}.broad_armor_armoire_crystalCrescentRobes{background-image:url(spritesmith-main-3.png);background-position:-1185px -728px;width:90px;height:90px}.broad_armor_armoire_gladiatorArmor{background-image:url(spritesmith-main-3.png);background-position:-1185px -819px;width:90px;height:90px}.broad_armor_armoire_goldenToga{background-image:url(spritesmith-main-3.png);background-position:-1185px -910px;width:90px;height:90px}.broad_armor_armoire_hornedIronArmor{background-image:url(spritesmith-main-3.png);background-position:-1185px -1001px;width:90px;height:90px}.broad_armor_armoire_lunarArmor{background-image:url(spritesmith-main-3.png);background-position:-1185px -1092px;width:90px;height:90px}.broad_armor_armoire_plagueDoctorOvercoat{background-image:url(spritesmith-main-3.png);background-position:0 -1183px;width:90px;height:90px}.broad_armor_armoire_rancherRobes{background-image:url(spritesmith-main-3.png);background-position:-91px -1183px;width:90px;height:90px}.broad_armor_armoire_royalRobes{background-image:url(spritesmith-main-3.png);background-position:-182px -1183px;width:90px;height:90px}.broad_armor_armoire_shepherdRobes{background-image:url(spritesmith-main-3.png);background-position:-273px -1183px;width:90px;height:90px}.eyewear_armoire_plagueDoctorMask{background-image:url(spritesmith-main-3.png);background-position:-364px -1183px;width:90px;height:90px}.head_armoire_blackCat{background-image:url(spritesmith-main-3.png);background-position:-455px -1183px;width:90px;height:90px}.head_armoire_blueFloppyHat{background-image:url(spritesmith-main-3.png);background-position:-546px -1183px;width:90px;height:90px}.head_armoire_blueHairbow{background-image:url(spritesmith-main-3.png);background-position:-637px -1183px;width:90px;height:90px}.head_armoire_crystalCrescentHat{background-image:url(spritesmith-main-3.png);background-position:-728px -1183px;width:90px;height:90px}.head_armoire_gladiatorHelm{background-image:url(spritesmith-main-3.png);background-position:-819px -1183px;width:90px;height:90px}.head_armoire_goldenLaurels{background-image:url(spritesmith-main-3.png);background-position:-910px -1183px;width:90px;height:90px}.head_armoire_hornedIronHelm{background-image:url(spritesmith-main-3.png);background-position:-1001px -1183px;width:90px;height:90px}.head_armoire_lunarCrown{background-image:url(spritesmith-main-3.png);background-position:-1092px -1183px;width:90px;height:90px}.head_armoire_orangeCat{background-image:url(spritesmith-main-3.png);background-position:-1183px -1183px;width:90px;height:90px}.head_armoire_plagueDoctorHat{background-image:url(spritesmith-main-3.png);background-position:-1276px 0;width:90px;height:90px}.head_armoire_rancherHat{background-image:url(spritesmith-main-3.png);background-position:-1276px -91px;width:90px;height:90px}.head_armoire_redFloppyHat{background-image:url(spritesmith-main-3.png);background-position:-1276px -182px;width:90px;height:90px}.head_armoire_redHairbow{background-image:url(spritesmith-main-3.png);background-position:-1276px -273px;width:90px;height:90px}.head_armoire_royalCrown{background-image:url(spritesmith-main-3.png);background-position:-1276px -364px;width:90px;height:90px}.head_armoire_shepherdHeaddress{background-image:url(spritesmith-main-3.png);background-position:-1276px -455px;width:90px;height:90px}.head_armoire_violetFloppyHat{background-image:url(spritesmith-main-3.png);background-position:-1276px -546px;width:90px;height:90px}.head_armoire_yellowHairbow{background-image:url(spritesmith-main-3.png);background-position:-1276px -637px;width:90px;height:90px}.shield_armoire_gladiatorShield{background-image:url(spritesmith-main-3.png);background-position:-454px -91px;width:90px;height:90px}.shield_armoire_midnightShield{background-image:url(spritesmith-main-3.png);background-position:-1276px -819px;width:90px;height:90px}.shield_armoire_royalCane{background-image:url(spritesmith-main-3.png);background-position:-1276px -910px;width:90px;height:90px}.shop_armor_armoire_crystalCrescentRobes{background-image:url(spritesmith-main-3.png);background-position:-1640px -902px;width:40px;height:40px}.shop_armor_armoire_gladiatorArmor{background-image:url(spritesmith-main-3.png);background-position:-1640px -861px;width:40px;height:40px}.shop_armor_armoire_goldenToga{background-image:url(spritesmith-main-3.png);background-position:-1640px -820px;width:40px;height:40px}.shop_armor_armoire_hornedIronArmor{background-image:url(spritesmith-main-3.png);background-position:-1640px -779px;width:40px;height:40px}.shop_armor_armoire_lunarArmor{background-image:url(spritesmith-main-3.png);background-position:-1640px -738px;width:40px;height:40px}.shop_armor_armoire_plagueDoctorOvercoat{background-image:url(spritesmith-main-3.png);background-position:-1640px -697px;width:40px;height:40px}.shop_armor_armoire_rancherRobes{background-image:url(spritesmith-main-3.png);background-position:-1640px -656px;width:40px;height:40px}.shop_armor_armoire_royalRobes{background-image:url(spritesmith-main-3.png);background-position:-1640px -615px;width:40px;height:40px}.shop_armor_armoire_shepherdRobes{background-image:url(spritesmith-main-3.png);background-position:-1640px -574px;width:40px;height:40px}.shop_eyewear_armoire_plagueDoctorMask{background-image:url(spritesmith-main-3.png);background-position:-1640px -533px;width:40px;height:40px}.shop_head_armoire_blackCat{background-image:url(spritesmith-main-3.png);background-position:-1640px -492px;width:40px;height:40px}.shop_head_armoire_blueFloppyHat{background-image:url(spritesmith-main-3.png);background-position:-838px -1588px;width:40px;height:40px}.shop_head_armoire_blueHairbow{background-image:url(spritesmith-main-3.png);background-position:-797px -1588px;width:40px;height:40px}.shop_head_armoire_crystalCrescentHat{background-image:url(spritesmith-main-3.png);background-position:-756px -1588px;width:40px;height:40px}.shop_head_armoire_gladiatorHelm{background-image:url(spritesmith-main-3.png);background-position:-715px -1588px;width:40px;height:40px}.shop_head_armoire_goldenLaurels{background-image:url(spritesmith-main-3.png);background-position:-674px -1588px;width:40px;height:40px}.shop_head_armoire_hornedIronHelm{background-image:url(spritesmith-main-3.png);background-position:-633px -1588px;width:40px;height:40px}.shop_head_armoire_lunarCrown{background-image:url(spritesmith-main-3.png);background-position:-1640px -943px;width:40px;height:40px}.shop_head_armoire_orangeCat{background-image:url(spritesmith-main-3.png);background-position:-551px -1588px;width:40px;height:40px}.shop_head_armoire_plagueDoctorHat{background-image:url(spritesmith-main-3.png);background-position:-510px -1588px;width:40px;height:40px}.shop_head_armoire_rancherHat{background-image:url(spritesmith-main-3.png);background-position:-469px -1588px;width:40px;height:40px}.shop_head_armoire_redFloppyHat{background-image:url(spritesmith-main-3.png);background-position:-428px -1588px;width:40px;height:40px}.shop_head_armoire_redHairbow{background-image:url(spritesmith-main-3.png);background-position:-387px -1588px;width:40px;height:40px}.shop_head_armoire_royalCrown{background-image:url(spritesmith-main-3.png);background-position:-346px -1588px;width:40px;height:40px}.shop_head_armoire_shepherdHeaddress{background-image:url(spritesmith-main-3.png);background-position:-305px -1588px;width:40px;height:40px}.shop_head_armoire_violetFloppyHat{background-image:url(spritesmith-main-3.png);background-position:-264px -1588px;width:40px;height:40px}.shop_head_armoire_yellowHairbow{background-image:url(spritesmith-main-3.png);background-position:-223px -1588px;width:40px;height:40px}.shop_shield_armoire_gladiatorShield{background-image:url(spritesmith-main-3.png);background-position:-182px -1588px;width:40px;height:40px}.shop_shield_armoire_midnightShield{background-image:url(spritesmith-main-3.png);background-position:-1576px -1547px;width:40px;height:40px}.shop_shield_armoire_royalCane{background-image:url(spritesmith-main-3.png);background-position:-1535px -1547px;width:40px;height:40px}.shop_weapon_armoire_basicCrossbow{background-image:url(spritesmith-main-3.png);background-position:-1494px -1547px;width:40px;height:40px}.shop_weapon_armoire_batWand{background-image:url(spritesmith-main-3.png);background-position:-1453px -1547px;width:40px;height:40px}.shop_weapon_armoire_blueLongbow{background-image:url(spritesmith-main-3.png);background-position:-1412px -1547px;width:40px;height:40px}.shop_weapon_armoire_crystalCrescentStaff{background-image:url(spritesmith-main-3.png);background-position:-1371px -1547px;width:40px;height:40px}.shop_weapon_armoire_goldWingStaff{background-image:url(spritesmith-main-3.png);background-position:-1330px -1547px;width:40px;height:40px}.shop_weapon_armoire_ironCrook{background-image:url(spritesmith-main-3.png);background-position:-1207px -1547px;width:40px;height:40px}.shop_weapon_armoire_lunarSceptre{background-image:url(spritesmith-main-3.png);background-position:-1166px -1547px;width:40px;height:40px}.shop_weapon_armoire_mythmakerSword{background-image:url(spritesmith-main-3.png);background-position:-1125px -1547px;width:40px;height:40px}.shop_weapon_armoire_rancherLasso{background-image:url(spritesmith-main-3.png);background-position:-1084px -1547px;width:40px;height:40px}.shop_weapon_armoire_shepherdsCrook{background-image:url(spritesmith-main-3.png);background-position:-1043px -1547px;width:40px;height:40px}.slim_armor_armoire_crystalCrescentRobes{background-image:url(spritesmith-main-3.png);background-position:-637px -1365px;width:90px;height:90px}.slim_armor_armoire_gladiatorArmor{background-image:url(spritesmith-main-3.png);background-position:-728px -1365px;width:90px;height:90px}.slim_armor_armoire_goldenToga{background-image:url(spritesmith-main-3.png);background-position:-819px -1365px;width:90px;height:90px}.slim_armor_armoire_hornedIronArmor{background-image:url(spritesmith-main-3.png);background-position:-910px -1365px;width:90px;height:90px}.slim_armor_armoire_lunarArmor{background-image:url(spritesmith-main-3.png);background-position:-1001px -1365px;width:90px;height:90px}.slim_armor_armoire_plagueDoctorOvercoat{background-image:url(spritesmith-main-3.png);background-position:-1092px -1365px;width:90px;height:90px}.slim_armor_armoire_rancherRobes{background-image:url(spritesmith-main-3.png);background-position:-1183px -1365px;width:90px;height:90px}.slim_armor_armoire_royalRobes{background-image:url(spritesmith-main-3.png);background-position:-1274px -1365px;width:90px;height:90px}.slim_armor_armoire_shepherdRobes{background-image:url(spritesmith-main-3.png);background-position:-1365px -1365px;width:90px;height:90px}.weapon_armoire_basicCrossbow{background-image:url(spritesmith-main-3.png);background-position:-1458px 0;width:90px;height:90px}.weapon_armoire_batWand{background-image:url(spritesmith-main-3.png);background-position:-1458px -91px;width:90px;height:90px}.weapon_armoire_blueLongbow{background-image:url(spritesmith-main-3.png);background-position:-1458px -182px;width:90px;height:90px}.weapon_armoire_crystalCrescentStaff{background-image:url(spritesmith-main-3.png);background-position:-1458px -273px;width:90px;height:90px}.weapon_armoire_goldWingStaff{background-image:url(spritesmith-main-3.png);background-position:-1458px -364px;width:90px;height:90px}.weapon_armoire_ironCrook{background-image:url(spritesmith-main-3.png);background-position:-1458px -455px;width:90px;height:90px}.weapon_armoire_lunarSceptre{background-image:url(spritesmith-main-3.png);background-position:-1458px -546px;width:90px;height:90px}.weapon_armoire_mythmakerSword{background-image:url(spritesmith-main-3.png);background-position:-1458px -637px;width:90px;height:90px}.weapon_armoire_rancherLasso{background-image:url(spritesmith-main-3.png);background-position:-1458px -728px;width:90px;height:90px}.weapon_armoire_shepherdsCrook{background-image:url(spritesmith-main-3.png);background-position:-1458px -819px;width:90px;height:90px}.broad_armor_healer_1{background-image:url(spritesmith-main-3.png);background-position:-1458px -910px;width:90px;height:90px}.broad_armor_healer_2{background-image:url(spritesmith-main-3.png);background-position:-1458px -1001px;width:90px;height:90px}.broad_armor_healer_3{background-image:url(spritesmith-main-3.png);background-position:-1458px -1092px;width:90px;height:90px}.broad_armor_healer_4{background-image:url(spritesmith-main-3.png);background-position:-1458px -1183px;width:90px;height:90px}.broad_armor_healer_5{background-image:url(spritesmith-main-3.png);background-position:-1458px -1274px;width:90px;height:90px}.broad_armor_rogue_1{background-image:url(spritesmith-main-3.png);background-position:-1458px -1365px;width:90px;height:90px}.broad_armor_rogue_2{background-image:url(spritesmith-main-3.png);background-position:0 -1456px;width:90px;height:90px}.broad_armor_rogue_3{background-image:url(spritesmith-main-3.png);background-position:-91px -1456px;width:90px;height:90px}.broad_armor_rogue_4{background-image:url(spritesmith-main-3.png);background-position:-182px -1456px;width:90px;height:90px}.broad_armor_rogue_5{background-image:url(spritesmith-main-3.png);background-position:-273px -1456px;width:90px;height:90px}.broad_armor_special_2{background-image:url(spritesmith-main-3.png);background-position:-364px -1456px;width:90px;height:90px}.broad_armor_special_finnedOceanicArmor{background-image:url(spritesmith-main-3.png);background-position:-455px -1456px;width:90px;height:90px}.broad_armor_warrior_1{background-image:url(spritesmith-main-3.png);background-position:-546px -1456px;width:90px;height:90px}.broad_armor_warrior_2{background-image:url(spritesmith-main-3.png);background-position:-637px -1456px;width:90px;height:90px}.broad_armor_warrior_3{background-image:url(spritesmith-main-3.png);background-position:-728px -1456px;width:90px;height:90px}.broad_armor_warrior_4{background-image:url(spritesmith-main-3.png);background-position:-819px -1456px;width:90px;height:90px}.broad_armor_warrior_5{background-image:url(spritesmith-main-3.png);background-position:-910px -1456px;width:90px;height:90px}.broad_armor_wizard_1{background-image:url(spritesmith-main-3.png);background-position:-1001px -1456px;width:90px;height:90px}.broad_armor_wizard_2{background-image:url(spritesmith-main-3.png);background-position:-1092px -1456px;width:90px;height:90px}.broad_armor_wizard_3{background-image:url(spritesmith-main-3.png);background-position:-1183px -1456px;width:90px;height:90px}.broad_armor_wizard_4{background-image:url(spritesmith-main-3.png);background-position:-1274px -1456px;width:90px;height:90px}.broad_armor_wizard_5{background-image:url(spritesmith-main-3.png);background-position:-1365px -1456px;width:90px;height:90px}.shop_armor_healer_1{background-image:url(spritesmith-main-3.png);background-position:-1002px -1547px;width:40px;height:40px}.shop_armor_healer_2{background-image:url(spritesmith-main-3.png);background-position:-961px -1547px;width:40px;height:40px}.shop_armor_healer_3{background-image:url(spritesmith-main-3.png);background-position:-920px -1547px;width:40px;height:40px}.shop_armor_healer_4{background-image:url(spritesmith-main-3.png);background-position:-879px -1547px;width:40px;height:40px}.shop_armor_healer_5{background-image:url(spritesmith-main-3.png);background-position:-838px -1547px;width:40px;height:40px}.shop_armor_rogue_1{background-image:url(spritesmith-main-3.png);background-position:-797px -1547px;width:40px;height:40px}.shop_armor_rogue_2{background-image:url(spritesmith-main-3.png);background-position:-756px -1547px;width:40px;height:40px}.shop_armor_rogue_3{background-image:url(spritesmith-main-3.png);background-position:-715px -1547px;width:40px;height:40px}.shop_armor_rogue_4{background-image:url(spritesmith-main-3.png);background-position:-674px -1547px;width:40px;height:40px}.shop_armor_rogue_5{background-image:url(spritesmith-main-3.png);background-position:-633px -1547px;width:40px;height:40px}.shop_armor_special_0{background-image:url(spritesmith-main-3.png);background-position:-592px -1547px;width:40px;height:40px}.shop_armor_special_1{background-image:url(spritesmith-main-3.png);background-position:-551px -1547px;width:40px;height:40px}.shop_armor_special_2{background-image:url(spritesmith-main-3.png);background-position:-510px -1547px;width:40px;height:40px}.shop_armor_special_finnedOceanicArmor{background-image:url(spritesmith-main-3.png);background-position:-469px -1547px;width:40px;height:40px}.shop_armor_warrior_1{background-image:url(spritesmith-main-3.png);background-position:-428px -1547px;width:40px;height:40px}.shop_armor_warrior_2{background-image:url(spritesmith-main-3.png);background-position:-387px -1547px;width:40px;height:40px}.shop_armor_warrior_3{background-image:url(spritesmith-main-3.png);background-position:-346px -1547px;width:40px;height:40px}.shop_armor_warrior_4{background-image:url(spritesmith-main-3.png);background-position:-305px -1547px;width:40px;height:40px}.shop_armor_warrior_5{background-image:url(spritesmith-main-3.png);background-position:-264px -1547px;width:40px;height:40px}.shop_armor_wizard_1{background-image:url(spritesmith-main-3.png);background-position:-376px -273px;width:40px;height:40px}.shop_armor_wizard_2{background-image:url(spritesmith-main-3.png);background-position:-592px -1588px;width:40px;height:40px}.shop_armor_wizard_3{background-image:url(spritesmith-main-3.png);background-position:-376px -314px;width:40px;height:40px}.shop_armor_wizard_4{background-image:url(spritesmith-main-3.png);background-position:-182px -1547px;width:40px;height:40px}.shop_armor_wizard_5{background-image:url(spritesmith-main-3.png);background-position:-223px -1547px;width:40px;height:40px}.slim_armor_healer_1{background-image:url(spritesmith-main-3.png);background-position:0 -1547px;width:90px;height:90px}.slim_armor_healer_2{background-image:url(spritesmith-main-3.png);background-position:-1549px -1456px;width:90px;height:90px}.slim_armor_healer_3{background-image:url(spritesmith-main-3.png);background-position:-1549px -1365px;width:90px;height:90px}.slim_armor_healer_4{background-image:url(spritesmith-main-3.png);background-position:-1549px -1274px;width:90px;height:90px}.slim_armor_healer_5{background-image:url(spritesmith-main-3.png);background-position:-1549px -1183px;width:90px;height:90px}.slim_armor_rogue_1{background-image:url(spritesmith-main-3.png);background-position:-1549px -1092px;width:90px;height:90px}.slim_armor_rogue_2{background-image:url(spritesmith-main-3.png);background-position:-1549px -1001px;width:90px;height:90px}.slim_armor_rogue_3{background-image:url(spritesmith-main-3.png);background-position:-1549px -910px;width:90px;height:90px}.slim_armor_rogue_4{background-image:url(spritesmith-main-3.png);background-position:-1549px -819px;width:90px;height:90px}.slim_armor_rogue_5{background-image:url(spritesmith-main-3.png);background-position:-1549px -728px;width:90px;height:90px}.slim_armor_special_2{background-image:url(spritesmith-main-3.png);background-position:-1549px -637px;width:90px;height:90px}.slim_armor_special_finnedOceanicArmor{background-image:url(spritesmith-main-3.png);background-position:-1549px -546px;width:90px;height:90px}.slim_armor_warrior_1{background-image:url(spritesmith-main-3.png);background-position:-1549px -455px;width:90px;height:90px}.slim_armor_warrior_2{background-image:url(spritesmith-main-3.png);background-position:-1549px -364px;width:90px;height:90px}.slim_armor_warrior_3{background-image:url(spritesmith-main-3.png);background-position:-1549px -273px;width:90px;height:90px}.slim_armor_warrior_4{background-image:url(spritesmith-main-3.png);background-position:-1549px -182px;width:90px;height:90px}.slim_armor_warrior_5{background-image:url(spritesmith-main-3.png);background-position:-1549px -91px;width:90px;height:90px}.slim_armor_wizard_1{background-image:url(spritesmith-main-3.png);background-position:-1549px 0;width:90px;height:90px}.slim_armor_wizard_2{background-image:url(spritesmith-main-3.png);background-position:-1456px -1456px;width:90px;height:90px}.slim_armor_wizard_3{background-image:url(spritesmith-main-3.png);background-position:-546px -1365px;width:90px;height:90px}.slim_armor_wizard_4{background-image:url(spritesmith-main-3.png);background-position:-455px -1365px;width:90px;height:90px}.slim_armor_wizard_5{background-image:url(spritesmith-main-3.png);background-position:-364px -1365px;width:90px;height:90px}.broad_armor_special_birthday{background-image:url(spritesmith-main-3.png);background-position:-273px -1365px;width:90px;height:90px}.broad_armor_special_birthday2015{background-image:url(spritesmith-main-3.png);background-position:-182px -1365px;width:90px;height:90px}.shop_armor_special_birthday{background-image:url(spritesmith-main-3.png);background-position:-1248px -1547px;width:40px;height:40px}.shop_armor_special_birthday2015{background-image:url(spritesmith-main-3.png);background-position:-1289px -1547px;width:40px;height:40px}.slim_armor_special_birthday{background-image:url(spritesmith-main-3.png);background-position:-91px -1365px;width:90px;height:90px}.slim_armor_special_birthday2015{background-image:url(spritesmith-main-3.png);background-position:0 -1365px;width:90px;height:90px}.broad_armor_special_fall2015Healer{background-image:url(spritesmith-main-3.png);background-position:-282px -273px;width:93px;height:90px}.broad_armor_special_fall2015Mage{background-image:url(spritesmith-main-3.png);background-position:-212px -182px;width:105px;height:90px}.broad_armor_special_fall2015Rogue{background-image:url(spritesmith-main-3.png);background-position:-1367px -1092px;width:90px;height:90px}.broad_armor_special_fall2015Warrior{background-image:url(spritesmith-main-3.png);background-position:-1367px -1001px;width:90px;height:90px}.broad_armor_special_fallHealer{background-image:url(spritesmith-main-3.png);background-position:-1367px -910px;width:90px;height:90px}.broad_armor_special_fallMage{background-image:url(spritesmith-main-3.png);background-position:0 -91px;width:120px;height:90px}.broad_armor_special_fallRogue{background-image:url(spritesmith-main-3.png);background-position:-348px -91px;width:105px;height:90px}.broad_armor_special_fallWarrior{background-image:url(spritesmith-main-3.png);background-position:-1367px -637px;width:90px;height:90px}.head_special_fall2015Healer{background-image:url(spritesmith-main-3.png);background-position:-94px -273px;width:93px;height:90px}.head_special_fall2015Mage{background-image:url(spritesmith-main-3.png);background-position:-348px 0;width:105px;height:90px}.head_special_fall2015Rogue{background-image:url(spritesmith-main-3.png);background-position:-1367px -364px;width:90px;height:90px}.head_special_fall2015Warrior{background-image:url(spritesmith-main-3.png);background-position:-1367px -273px;width:90px;height:90px}.head_special_fallHealer{background-image:url(spritesmith-main-3.png);background-position:-1367px -182px;width:90px;height:90px}.head_special_fallMage{background-image:url(spritesmith-main-3.png);background-position:-121px 0;width:120px;height:90px}.head_special_fallRogue{background-image:url(spritesmith-main-3.png);background-position:-106px -182px;width:105px;height:90px}.head_special_fallWarrior{background-image:url(spritesmith-main-3.png);background-position:-1274px -1274px;width:90px;height:90px}.shield_special_fall2015Healer{background-image:url(spritesmith-main-3.png);background-position:0 -273px;width:93px;height:90px}.shield_special_fall2015Rogue{background-image:url(spritesmith-main-3.png);background-position:-242px -91px;width:105px;height:90px}.shield_special_fall2015Warrior{background-image:url(spritesmith-main-3.png);background-position:-1001px -1274px;width:90px;height:90px}.shield_special_fallHealer{background-image:url(spritesmith-main-3.png);background-position:-910px -1274px;width:90px;height:90px}.shield_special_fallRogue{background-image:url(spritesmith-main-3.png);background-position:-242px 0;width:105px;height:90px}.shield_special_fallWarrior{background-image:url(spritesmith-main-3.png);background-position:-728px -1274px;width:90px;height:90px}.shop_armor_special_fall2015Healer{background-image:url(spritesmith-main-3.png);background-position:-879px -1588px;width:40px;height:40px}.shop_armor_special_fall2015Mage{background-image:url(spritesmith-main-3.png);background-position:-920px -1588px;width:40px;height:40px}.shop_armor_special_fall2015Rogue{background-image:url(spritesmith-main-3.png);background-position:-961px -1588px;width:40px;height:40px}.shop_armor_special_fall2015Warrior{background-image:url(spritesmith-main-3.png);background-position:-1002px -1588px;width:40px;height:40px}.shop_armor_special_fallHealer{background-image:url(spritesmith-main-3.png);background-position:-1043px -1588px;width:40px;height:40px}.shop_armor_special_fallMage{background-image:url(spritesmith-main-3.png);background-position:-1084px -1588px;width:40px;height:40px}.shop_armor_special_fallRogue{background-image:url(spritesmith-main-3.png);background-position:-1125px -1588px;width:40px;height:40px}.shop_armor_special_fallWarrior{background-image:url(spritesmith-main-3.png);background-position:-1166px -1588px;width:40px;height:40px}.shop_head_special_fall2015Healer{background-image:url(spritesmith-main-3.png);background-position:-1207px -1588px;width:40px;height:40px}.shop_head_special_fall2015Mage{background-image:url(spritesmith-main-3.png);background-position:-1248px -1588px;width:40px;height:40px}.shop_head_special_fall2015Rogue{background-image:url(spritesmith-main-3.png);background-position:-1289px -1588px;width:40px;height:40px}.shop_head_special_fall2015Warrior{background-image:url(spritesmith-main-3.png);background-position:-1330px -1588px;width:40px;height:40px}.shop_head_special_fallHealer{background-image:url(spritesmith-main-3.png);background-position:-1371px -1588px;width:40px;height:40px}.shop_head_special_fallMage{background-image:url(spritesmith-main-3.png);background-position:-1412px -1588px;width:40px;height:40px}.shop_head_special_fallRogue{background-image:url(spritesmith-main-3.png);background-position:-1453px -1588px;width:40px;height:40px}.shop_head_special_fallWarrior{background-image:url(spritesmith-main-3.png);background-position:-1494px -1588px;width:40px;height:40px}.shop_shield_special_fall2015Healer{background-image:url(spritesmith-main-3.png);background-position:-1535px -1588px;width:40px;height:40px}.shop_shield_special_fall2015Rogue{background-image:url(spritesmith-main-3.png);background-position:-1576px -1588px;width:40px;height:40px}.shop_shield_special_fall2015Warrior{background-image:url(spritesmith-main-3.png);background-position:-1640px 0;width:40px;height:40px}.shop_shield_special_fallHealer{background-image:url(spritesmith-main-3.png);background-position:-1640px -41px;width:40px;height:40px}.shop_shield_special_fallRogue{background-image:url(spritesmith-main-3.png);background-position:-1640px -82px;width:40px;height:40px}.shop_shield_special_fallWarrior{background-image:url(spritesmith-main-3.png);background-position:-1640px -123px;width:40px;height:40px}.shop_weapon_special_fall2015Healer{background-image:url(spritesmith-main-3.png);background-position:-1640px -164px;width:40px;height:40px}.shop_weapon_special_fall2015Mage{background-image:url(spritesmith-main-3.png);background-position:-1640px -205px;width:40px;height:40px}.shop_weapon_special_fall2015Rogue{background-image:url(spritesmith-main-3.png);background-position:-1640px -246px;width:40px;height:40px}.shop_weapon_special_fall2015Warrior{background-image:url(spritesmith-main-3.png);background-position:-1640px -287px;width:40px;height:40px}.shop_weapon_special_fallHealer{background-image:url(spritesmith-main-3.png);background-position:-1640px -328px;width:40px;height:40px}.shop_weapon_special_fallMage{background-image:url(spritesmith-main-3.png);background-position:-1640px -369px;width:40px;height:40px}.shop_weapon_special_fallRogue{background-image:url(spritesmith-main-3.png);background-position:-1640px -410px;width:40px;height:40px}.shop_weapon_special_fallWarrior{background-image:url(spritesmith-main-3.png);background-position:-1640px -451px;width:40px;height:40px}.slim_armor_special_fall2015Healer{background-image:url(spritesmith-main-3.png);background-position:-454px 0;width:93px;height:90px}.slim_armor_special_fall2015Mage{background-image:url(spritesmith-main-3.png);background-position:-348px -182px;width:105px;height:90px}.slim_armor_special_fall2015Rogue{background-image:url(spritesmith-main-3.png);background-position:-455px -1274px;width:90px;height:90px}.slim_armor_special_fall2015Warrior{background-image:url(spritesmith-main-3.png);background-position:-364px -1274px;width:90px;height:90px}.slim_armor_special_fallHealer{background-image:url(spritesmith-main-3.png);background-position:-273px -1274px;width:90px;height:90px}.slim_armor_special_fallMage{background-image:url(spritesmith-main-3.png);background-position:0 0;width:120px;height:90px}.slim_armor_special_fallRogue{background-image:url(spritesmith-main-3.png);background-position:0 -182px;width:105px;height:90px}.slim_armor_special_fallWarrior{background-image:url(spritesmith-main-3.png);background-position:0 -1274px;width:90px;height:90px}.weapon_special_fall2015Healer{background-image:url(spritesmith-main-3.png);background-position:-188px -273px;width:93px;height:90px}.weapon_special_fall2015Mage{background-image:url(spritesmith-main-3.png);background-position:-121px -91px;width:105px;height:90px}.weapon_special_fall2015Rogue{background-image:url(spritesmith-main-3.png);background-position:-1276px -1001px;width:90px;height:90px}.weapon_special_fall2015Warrior{background-image:url(spritesmith-main-3.png);background-position:-91px -1547px;width:90px;height:90px}.weapon_special_fallHealer{background-image:url(spritesmith-main-4.png);background-position:-182px -879px;width:90px;height:90px}.weapon_special_fallMage{background-image:url(spritesmith-main-4.png);background-position:0 0;width:120px;height:90px}.weapon_special_fallRogue{background-image:url(spritesmith-main-4.png);background-position:-336px -303px;width:105px;height:90px}.weapon_special_fallWarrior{background-image:url(spritesmith-main-4.png);background-position:-1033px -455px;width:90px;height:90px}.broad_armor_special_gaymerx{background-image:url(spritesmith-main-4.png);background-position:-1306px -819px;width:90px;height:90px}.head_special_gaymerx{background-image:url(spritesmith-main-4.png);background-position:-1306px -1092px;width:90px;height:90px}.shop_armor_special_gaymerx{background-image:url(spritesmith-main-4.png);background-position:-1670px -615px;width:40px;height:40px}.shop_head_special_gaymerx{background-image:url(spritesmith-main-4.png);background-position:-1670px -574px;width:40px;height:40px}.slim_armor_special_gaymerx{background-image:url(spritesmith-main-4.png);background-position:-273px -1334px;width:90px;height:90px}.back_mystery_201402{background-image:url(spritesmith-main-4.png);background-position:-364px -1334px;width:90px;height:90px}.broad_armor_mystery_201402{background-image:url(spritesmith-main-4.png);background-position:-455px -1334px;width:90px;height:90px}.head_mystery_201402{background-image:url(spritesmith-main-4.png);background-position:-910px -1334px;width:90px;height:90px}.shop_armor_mystery_201402{background-image:url(spritesmith-main-4.png);background-position:-1670px -533px;width:40px;height:40px}.shop_back_mystery_201402{background-image:url(spritesmith-main-4.png);background-position:-1670px -492px;width:40px;height:40px}.shop_head_mystery_201402{background-image:url(spritesmith-main-4.png);background-position:-1670px -451px;width:40px;height:40px}.slim_armor_mystery_201402{background-image:url(spritesmith-main-4.png);background-position:-942px -455px;width:90px;height:90px}.broad_armor_mystery_201403{background-image:url(spritesmith-main-4.png);background-position:-942px -546px;width:90px;height:90px}.headAccessory_mystery_201403{background-image:url(spritesmith-main-4.png);background-position:0 -879px;width:90px;height:90px}.shop_armor_mystery_201403{background-image:url(spritesmith-main-4.png);background-position:-1670px -410px;width:40px;height:40px}.shop_headAccessory_mystery_201403{background-image:url(spritesmith-main-4.png);background-position:-1670px -369px;width:40px;height:40px}.slim_armor_mystery_201403{background-image:url(spritesmith-main-4.png);background-position:-455px -879px;width:90px;height:90px}.back_mystery_201404{background-image:url(spritesmith-main-4.png);background-position:-546px -879px;width:90px;height:90px}.headAccessory_mystery_201404{background-image:url(spritesmith-main-4.png);background-position:-819px -879px;width:90px;height:90px}.shop_back_mystery_201404{background-image:url(spritesmith-main-4.png);background-position:-1670px -328px;width:40px;height:40px}.shop_headAccessory_mystery_201404{background-image:url(spritesmith-main-4.png);background-position:-1670px -287px;width:40px;height:40px}.broad_armor_mystery_201405{background-image:url(spritesmith-main-4.png);background-position:-637px -1152px;width:90px;height:90px}.head_mystery_201405{background-image:url(spritesmith-main-4.png);background-position:-1306px -91px;width:90px;height:90px}.shop_armor_mystery_201405{background-image:url(spritesmith-main-4.png);background-position:-1670px -246px;width:40px;height:40px}.shop_head_mystery_201405{background-image:url(spritesmith-main-4.png);background-position:-1670px -205px;width:40px;height:40px}.slim_armor_mystery_201405{background-image:url(spritesmith-main-4.png);background-position:-182px -1243px;width:90px;height:90px}.broad_armor_mystery_201406{background-image:url(spritesmith-main-4.png);background-position:-757px -415px;width:90px;height:96px}.head_mystery_201406{background-image:url(spritesmith-main-4.png);background-position:-757px -318px;width:90px;height:96px}.shop_armor_mystery_201406{background-image:url(spritesmith-main-4.png);background-position:-1670px -164px;width:40px;height:40px}.shop_head_mystery_201406{background-image:url(spritesmith-main-4.png);background-position:-1670px -123px;width:40px;height:40px}.slim_armor_mystery_201406{background-image:url(spritesmith-main-4.png);background-position:-757px -512px;width:90px;height:96px}.broad_armor_mystery_201407{background-image:url(spritesmith-main-4.png);background-position:-728px -1334px;width:90px;height:90px}.head_mystery_201407{background-image:url(spritesmith-main-4.png);background-position:-819px -1334px;width:90px;height:90px}.shop_armor_mystery_201407{background-image:url(spritesmith-main-4.png);background-position:-1670px -82px;width:40px;height:40px}.shop_head_mystery_201407{background-image:url(spritesmith-main-4.png);background-position:-1670px -41px;width:40px;height:40px}.slim_armor_mystery_201407{background-image:url(spritesmith-main-4.png);background-position:-1092px -1334px;width:90px;height:90px}.broad_armor_mystery_201408{background-image:url(spritesmith-main-4.png);background-position:-1183px -1334px;width:90px;height:90px}.head_mystery_201408{background-image:url(spritesmith-main-4.png);background-position:-1274px -1334px;width:90px;height:90px}.shop_armor_mystery_201408{background-image:url(spritesmith-main-4.png);background-position:-1670px 0;width:40px;height:40px}.shop_head_mystery_201408{background-image:url(spritesmith-main-4.png);background-position:-1599px -1598px;width:40px;height:40px}.slim_armor_mystery_201408{background-image:url(spritesmith-main-4.png);background-position:-1488px -273px;width:90px;height:90px}.broad_armor_mystery_201409{background-image:url(spritesmith-main-4.png);background-position:-1488px -364px;width:90px;height:90px}.headAccessory_mystery_201409{background-image:url(spritesmith-main-4.png);background-position:-1488px -455px;width:90px;height:90px}.shop_armor_mystery_201409{background-image:url(spritesmith-main-4.png);background-position:-1558px -1598px;width:40px;height:40px}.shop_headAccessory_mystery_201409{background-image:url(spritesmith-main-4.png);background-position:-1517px -1598px;width:40px;height:40px}.slim_armor_mystery_201409{background-image:url(spritesmith-main-4.png);background-position:-1488px -728px;width:90px;height:90px}.back_mystery_201410{background-image:url(spritesmith-main-4.png);background-position:-848px -91px;width:93px;height:90px}.broad_armor_mystery_201410{background-image:url(spritesmith-main-4.png);background-position:-848px 0;width:93px;height:90px}.shop_armor_mystery_201410{background-image:url(spritesmith-main-4.png);background-position:-1476px -1598px;width:40px;height:40px}.shop_back_mystery_201410{background-image:url(spritesmith-main-4.png);background-position:-1107px -1598px;width:40px;height:40px}.slim_armor_mystery_201410{background-image:url(spritesmith-main-4.png);background-position:-701px -697px;width:93px;height:90px}.head_mystery_201411{background-image:url(spritesmith-main-4.png);background-position:0 -1425px;width:90px;height:90px}.shop_head_mystery_201411{background-image:url(spritesmith-main-4.png);background-position:-1066px -1598px;width:40px;height:40px}.shop_weapon_mystery_201411{background-image:url(spritesmith-main-4.png);background-position:-1025px -1598px;width:40px;height:40px}.weapon_mystery_201411{background-image:url(spritesmith-main-4.png);background-position:-728px -1425px;width:90px;height:90px}.broad_armor_mystery_201412{background-image:url(spritesmith-main-4.png);background-position:-819px -1425px;width:90px;height:90px}.head_mystery_201412{background-image:url(spritesmith-main-4.png);background-position:-910px -1425px;width:90px;height:90px}.shop_armor_mystery_201412{background-image:url(spritesmith-main-4.png);background-position:-984px -1598px;width:40px;height:40px}.shop_head_mystery_201412{background-image:url(spritesmith-main-4.png);background-position:-943px -1598px;width:40px;height:40px}.slim_armor_mystery_201412{background-image:url(spritesmith-main-4.png);background-position:-1183px -1425px;width:90px;height:90px}.broad_armor_mystery_201501{background-image:url(spritesmith-main-4.png);background-position:-1456px -1425px;width:90px;height:90px}.head_mystery_201501{background-image:url(spritesmith-main-4.png);background-position:-1579px 0;width:90px;height:90px}.shop_armor_mystery_201501{background-image:url(spritesmith-main-4.png);background-position:-902px -1598px;width:40px;height:40px}.shop_head_mystery_201501{background-image:url(spritesmith-main-4.png);background-position:-861px -1598px;width:40px;height:40px}.slim_armor_mystery_201501{background-image:url(spritesmith-main-4.png);background-position:-1579px -273px;width:90px;height:90px}.headAccessory_mystery_201502{background-image:url(spritesmith-main-4.png);background-position:-1579px -364px;width:90px;height:90px}.shop_headAccessory_mystery_201502{background-image:url(spritesmith-main-4.png);background-position:-820px -1598px;width:40px;height:40px}.shop_weapon_mystery_201502{background-image:url(spritesmith-main-4.png);background-position:-1435px -1557px;width:40px;height:40px}.weapon_mystery_201502{background-image:url(spritesmith-main-4.png);background-position:0 -788px;width:90px;height:90px}.broad_armor_mystery_201503{background-image:url(spritesmith-main-4.png);background-position:-91px -788px;width:90px;height:90px}.eyewear_mystery_201503{background-image:url(spritesmith-main-4.png);background-position:-182px -788px;width:90px;height:90px}.shop_armor_mystery_201503{background-image:url(spritesmith-main-4.png);background-position:-1394px -1557px;width:40px;height:40px}.shop_eyewear_mystery_201503{background-image:url(spritesmith-main-4.png);background-position:-1353px -1557px;width:40px;height:40px}.slim_armor_mystery_201503{background-image:url(spritesmith-main-4.png);background-position:-455px -788px;width:90px;height:90px}.back_mystery_201504{background-image:url(spritesmith-main-4.png);background-position:-546px -788px;width:90px;height:90px}.broad_armor_mystery_201504{background-image:url(spritesmith-main-4.png);background-position:-637px -788px;width:90px;height:90px}.shop_armor_mystery_201504{background-image:url(spritesmith-main-4.png);background-position:-1312px -1557px;width:40px;height:40px}.shop_back_mystery_201504{background-image:url(spritesmith-main-4.png);background-position:-1271px -1557px;width:40px;height:40px}.slim_armor_mystery_201504{background-image:url(spritesmith-main-4.png);background-position:-942px 0;width:90px;height:90px}.head_mystery_201505{background-image:url(spritesmith-main-4.png);background-position:-942px -91px;width:90px;height:90px}.shop_head_mystery_201505{background-image:url(spritesmith-main-4.png);background-position:-1230px -1557px;width:40px;height:40px}.shop_weapon_mystery_201505{background-image:url(spritesmith-main-4.png);background-position:-1189px -1557px;width:40px;height:40px}.weapon_mystery_201505{background-image:url(spritesmith-main-4.png);background-position:-942px -364px;width:90px;height:90px}.broad_armor_mystery_201506{background-image:url(spritesmith-main-4.png);background-position:-364px -485px;width:90px;height:105px}.eyewear_mystery_201506{background-image:url(spritesmith-main-4.png);background-position:-455px -485px;width:90px;height:105px}.shop_armor_mystery_201506{background-image:url(spritesmith-main-4.png);background-position:-1148px -1557px;width:40px;height:40px}.shop_eyewear_mystery_201506{background-image:url(spritesmith-main-4.png);background-position:-1107px -1557px;width:40px;height:40px}.slim_armor_mystery_201506{background-image:url(spritesmith-main-4.png);background-position:-666px -424px;width:90px;height:105px}.back_mystery_201507{background-image:url(spritesmith-main-4.png);background-position:0 -591px;width:90px;height:105px}.eyewear_mystery_201507{background-image:url(spritesmith-main-4.png);background-position:-91px -591px;width:90px;height:105px}.shop_back_mystery_201507{background-image:url(spritesmith-main-4.png);background-position:-1066px -1557px;width:40px;height:40px}.shop_eyewear_mystery_201507{background-image:url(spritesmith-main-4.png);background-position:-1025px -1557px;width:40px;height:40px}.broad_armor_mystery_201508{background-image:url(spritesmith-main-4.png);background-position:-848px -182px;width:93px;height:90px}.head_mystery_201508{background-image:url(spritesmith-main-4.png);background-position:-848px -273px;width:93px;height:90px}.shop_armor_mystery_201508{background-image:url(spritesmith-main-4.png);background-position:-984px -1557px;width:40px;height:40px}.shop_head_mystery_201508{background-image:url(spritesmith-main-4.png);background-position:-943px -1557px;width:40px;height:40px}.slim_armor_mystery_201508{background-image:url(spritesmith-main-4.png);background-position:-848px -455px;width:93px;height:90px}.broad_armor_mystery_201509{background-image:url(spritesmith-main-4.png);background-position:-910px -879px;width:90px;height:90px}.head_mystery_201509{background-image:url(spritesmith-main-4.png);background-position:-1033px 0;width:90px;height:90px}.shop_armor_mystery_201509{background-image:url(spritesmith-main-4.png);background-position:-902px -1557px;width:40px;height:40px}.shop_head_mystery_201509{background-image:url(spritesmith-main-4.png);background-position:-861px -1557px;width:40px;height:40px}.slim_armor_mystery_201509{background-image:url(spritesmith-main-4.png);background-position:-1033px -273px;width:90px;height:90px}.back_mystery_201510{background-image:url(spritesmith-main-4.png);background-position:-448px -394px;width:105px;height:90px}.headAccessory_mystery_201510{background-image:url(spritesmith-main-4.png);background-position:-848px -364px;width:93px;height:90px}.shop_back_mystery_201510{background-image:url(spritesmith-main-4.png);background-position:-820px -1557px;width:40px;height:40px}.shop_headAccessory_mystery_201510{background-image:url(spritesmith-main-4.png);background-position:-779px -1557px;width:40px;height:40px}.broad_armor_mystery_201511{background-image:url(spritesmith-main-4.png);background-position:-1033px -728px;width:90px;height:90px}.head_mystery_201511{background-image:url(spritesmith-main-4.png);background-position:-1033px -819px;width:90px;height:90px}.shop_armor_mystery_201511{background-image:url(spritesmith-main-4.png);background-position:-1622px -637px;width:42px;height:42px}.shop_head_mystery_201511{background-image:url(spritesmith-main-4.png);background-position:-1579px -637px;width:42px;height:42px}.slim_armor_mystery_201511{background-image:url(spritesmith-main-4.png);background-position:-182px -970px;width:90px;height:90px}.broad_armor_mystery_301404{background-image:url(spritesmith-main-4.png);background-position:-273px -970px;width:90px;height:90px}.eyewear_mystery_301404{background-image:url(spritesmith-main-4.png);background-position:-364px -970px;width:90px;height:90px}.head_mystery_301404{background-image:url(spritesmith-main-4.png);background-position:-455px -970px;width:90px;height:90px}.shop_armor_mystery_301404{background-image:url(spritesmith-main-4.png);background-position:-656px -1557px;width:40px;height:40px}.shop_eyewear_mystery_301404{background-image:url(spritesmith-main-4.png);background-position:-615px -1557px;width:40px;height:40px}.shop_head_mystery_301404{background-image:url(spritesmith-main-4.png);background-position:-574px -1557px;width:40px;height:40px}.shop_weapon_mystery_301404{background-image:url(spritesmith-main-4.png);background-position:-533px -1557px;width:40px;height:40px}.slim_armor_mystery_301404{background-image:url(spritesmith-main-4.png);background-position:-910px -970px;width:90px;height:90px}.weapon_mystery_301404{background-image:url(spritesmith-main-4.png);background-position:-1001px -970px;width:90px;height:90px}.eyewear_mystery_301405{background-image:url(spritesmith-main-4.png);background-position:-1124px 0;width:90px;height:90px}.headAccessory_mystery_301405{background-image:url(spritesmith-main-4.png);background-position:-1124px -91px;width:90px;height:90px}.head_mystery_301405{background-image:url(spritesmith-main-4.png);background-position:-1124px -182px;width:90px;height:90px}.shield_mystery_301405{background-image:url(spritesmith-main-4.png);background-position:-1124px -273px;width:90px;height:90px}.shop_eyewear_mystery_301405{background-image:url(spritesmith-main-4.png);background-position:-205px -1557px;width:40px;height:40px}.shop_headAccessory_mystery_301405{background-image:url(spritesmith-main-4.png);background-position:-164px -1557px;width:40px;height:40px}.shop_head_mystery_301405{background-image:url(spritesmith-main-4.png);background-position:-123px -1557px;width:40px;height:40px}.shop_shield_mystery_301405{background-image:url(spritesmith-main-4.png);background-position:-82px -1557px;width:40px;height:40px}.broad_armor_special_spring2015Healer{background-image:url(spritesmith-main-4.png);background-position:-1124px -728px;width:90px;height:90px}.broad_armor_special_spring2015Mage{background-image:url(spritesmith-main-4.png);background-position:-1124px -819px;width:90px;height:90px}.broad_armor_special_spring2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-1124px -910px;width:90px;height:90px}.broad_armor_special_spring2015Warrior{background-image:url(spritesmith-main-4.png);background-position:0 -1061px;width:90px;height:90px}.broad_armor_special_springHealer{background-image:url(spritesmith-main-4.png);background-position:-91px -1061px;width:90px;height:90px}.broad_armor_special_springMage{background-image:url(spritesmith-main-4.png);background-position:-182px -1061px;width:90px;height:90px}.broad_armor_special_springRogue{background-image:url(spritesmith-main-4.png);background-position:-273px -1061px;width:90px;height:90px}.broad_armor_special_springWarrior{background-image:url(spritesmith-main-4.png);background-position:-364px -1061px;width:90px;height:90px}.headAccessory_special_spring2015Healer{background-image:url(spritesmith-main-4.png);background-position:-455px -1061px;width:90px;height:90px}.headAccessory_special_spring2015Mage{background-image:url(spritesmith-main-4.png);background-position:-546px -1061px;width:90px;height:90px}.headAccessory_special_spring2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-637px -1061px;width:90px;height:90px}.headAccessory_special_spring2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-728px -1061px;width:90px;height:90px}.headAccessory_special_springHealer{background-image:url(spritesmith-main-4.png);background-position:-819px -1061px;width:90px;height:90px}.headAccessory_special_springMage{background-image:url(spritesmith-main-4.png);background-position:-910px -1061px;width:90px;height:90px}.headAccessory_special_springRogue{background-image:url(spritesmith-main-4.png);background-position:-1001px -1061px;width:90px;height:90px}.headAccessory_special_springWarrior{background-image:url(spritesmith-main-4.png);background-position:-1092px -1061px;width:90px;height:90px}.head_special_spring2015Healer{background-image:url(spritesmith-main-4.png);background-position:-1215px 0;width:90px;height:90px}.head_special_spring2015Mage{background-image:url(spritesmith-main-4.png);background-position:-1215px -91px;width:90px;height:90px}.head_special_spring2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-1215px -182px;width:90px;height:90px}.head_special_spring2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-1215px -273px;width:90px;height:90px}.head_special_springHealer{background-image:url(spritesmith-main-4.png);background-position:-1215px -364px;width:90px;height:90px}.head_special_springMage{background-image:url(spritesmith-main-4.png);background-position:-1215px -455px;width:90px;height:90px}.head_special_springRogue{background-image:url(spritesmith-main-4.png);background-position:-1215px -546px;width:90px;height:90px}.head_special_springWarrior{background-image:url(spritesmith-main-4.png);background-position:-1215px -637px;width:90px;height:90px}.shield_special_spring2015Healer{background-image:url(spritesmith-main-4.png);background-position:-1215px -728px;width:90px;height:90px}.shield_special_spring2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-1215px -819px;width:90px;height:90px}.shield_special_spring2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-1215px -910px;width:90px;height:90px}.shield_special_springHealer{background-image:url(spritesmith-main-4.png);background-position:-1215px -1001px;width:90px;height:90px}.shield_special_springRogue{background-image:url(spritesmith-main-4.png);background-position:0 -1152px;width:90px;height:90px}.shield_special_springWarrior{background-image:url(spritesmith-main-4.png);background-position:-91px -1152px;width:90px;height:90px}.shop_armor_special_spring2015Healer{background-image:url(spritesmith-main-4.png);background-position:-41px -1557px;width:40px;height:40px}.shop_armor_special_spring2015Mage{background-image:url(spritesmith-main-4.png);background-position:0 -1557px;width:40px;height:40px}.shop_armor_special_spring2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-1599px -1516px;width:40px;height:40px}.shop_armor_special_spring2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-1558px -1516px;width:40px;height:40px}.shop_armor_special_springHealer{background-image:url(spritesmith-main-4.png);background-position:-1517px -1516px;width:40px;height:40px}.shop_armor_special_springMage{background-image:url(spritesmith-main-4.png);background-position:-1579px -680px;width:40px;height:40px}.shop_armor_special_springRogue{background-image:url(spritesmith-main-4.png);background-position:-1435px -1516px;width:40px;height:40px}.shop_armor_special_springWarrior{background-image:url(spritesmith-main-4.png);background-position:-1394px -1516px;width:40px;height:40px}.shop_headAccessory_special_spring2015Healer{background-image:url(spritesmith-main-4.png);background-position:-1353px -1516px;width:40px;height:40px}.shop_headAccessory_special_spring2015Mage{background-image:url(spritesmith-main-4.png);background-position:-1312px -1516px;width:40px;height:40px}.shop_headAccessory_special_spring2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-1271px -1516px;width:40px;height:40px}.shop_headAccessory_special_spring2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-1230px -1516px;width:40px;height:40px}.shop_headAccessory_special_springHealer{background-image:url(spritesmith-main-4.png);background-position:-1189px -1516px;width:40px;height:40px}.shop_headAccessory_special_springMage{background-image:url(spritesmith-main-4.png);background-position:-1148px -1516px;width:40px;height:40px}.shop_headAccessory_special_springRogue{background-image:url(spritesmith-main-4.png);background-position:-1107px -1516px;width:40px;height:40px}.shop_headAccessory_special_springWarrior{background-image:url(spritesmith-main-4.png);background-position:-1066px -1516px;width:40px;height:40px}.shop_head_special_spring2015Healer{background-image:url(spritesmith-main-4.png);background-position:-1025px -1516px;width:40px;height:40px}.shop_head_special_spring2015Mage{background-image:url(spritesmith-main-4.png);background-position:-984px -1516px;width:40px;height:40px}.shop_head_special_spring2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-943px -1516px;width:40px;height:40px}.shop_head_special_spring2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-848px -728px;width:40px;height:40px}.shop_head_special_springHealer{background-image:url(spritesmith-main-4.png);background-position:-983px -819px;width:40px;height:40px}.shop_head_special_springMage{background-image:url(spritesmith-main-4.png);background-position:-942px -819px;width:40px;height:40px}.shop_head_special_springRogue{background-image:url(spritesmith-main-4.png);background-position:-1074px -910px;width:40px;height:40px}.shop_head_special_springWarrior{background-image:url(spritesmith-main-4.png);background-position:-1033px -910px;width:40px;height:40px}.shop_shield_special_spring2015Healer{background-image:url(spritesmith-main-4.png);background-position:-1165px -1001px;width:40px;height:40px}.shop_shield_special_spring2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-1124px -1001px;width:40px;height:40px}.shop_shield_special_spring2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-1256px -1092px;width:40px;height:40px}.shop_shield_special_springHealer{background-image:url(spritesmith-main-4.png);background-position:-1215px -1092px;width:40px;height:40px}.shop_shield_special_springRogue{background-image:url(spritesmith-main-4.png);background-position:-1347px -1183px;width:40px;height:40px}.shop_shield_special_springWarrior{background-image:url(spritesmith-main-4.png);background-position:-1306px -1183px;width:40px;height:40px}.shop_weapon_special_spring2015Healer{background-image:url(spritesmith-main-4.png);background-position:-1438px -1274px;width:40px;height:40px}.shop_weapon_special_spring2015Mage{background-image:url(spritesmith-main-4.png);background-position:-1397px -1274px;width:40px;height:40px}.shop_weapon_special_spring2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-1529px -1365px;width:40px;height:40px}.shop_weapon_special_spring2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-1488px -1365px;width:40px;height:40px}.shop_weapon_special_springHealer{background-image:url(spritesmith-main-4.png);background-position:-1620px -1459px;width:40px;height:40px}.shop_weapon_special_springMage{background-image:url(spritesmith-main-4.png);background-position:-1579px -1459px;width:40px;height:40px}.shop_weapon_special_springRogue{background-image:url(spritesmith-main-4.png);background-position:-1620px -1418px;width:40px;height:40px}.shop_weapon_special_springWarrior{background-image:url(spritesmith-main-4.png);background-position:-1579px -1418px;width:40px;height:40px}.slim_armor_special_spring2015Healer{background-image:url(spritesmith-main-4.png);background-position:-1183px -1243px;width:90px;height:90px}.slim_armor_special_spring2015Mage{background-image:url(spritesmith-main-4.png);background-position:-1274px -1243px;width:90px;height:90px}.slim_armor_special_spring2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-1397px 0;width:90px;height:90px}.slim_armor_special_spring2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-1397px -91px;width:90px;height:90px}.slim_armor_special_springHealer{background-image:url(spritesmith-main-4.png);background-position:-1397px -182px;width:90px;height:90px}.slim_armor_special_springMage{background-image:url(spritesmith-main-4.png);background-position:-1397px -273px;width:90px;height:90px}.slim_armor_special_springRogue{background-image:url(spritesmith-main-4.png);background-position:-1397px -364px;width:90px;height:90px}.slim_armor_special_springWarrior{background-image:url(spritesmith-main-4.png);background-position:-1397px -455px;width:90px;height:90px}.weapon_special_spring2015Healer{background-image:url(spritesmith-main-4.png);background-position:-1397px -546px;width:90px;height:90px}.weapon_special_spring2015Mage{background-image:url(spritesmith-main-4.png);background-position:-1397px -637px;width:90px;height:90px}.weapon_special_spring2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-1397px -728px;width:90px;height:90px}.weapon_special_spring2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-1397px -819px;width:90px;height:90px}.weapon_special_springHealer{background-image:url(spritesmith-main-4.png);background-position:-1397px -910px;width:90px;height:90px}.weapon_special_springMage{background-image:url(spritesmith-main-4.png);background-position:-1397px -1001px;width:90px;height:90px}.weapon_special_springRogue{background-image:url(spritesmith-main-4.png);background-position:-1397px -1092px;width:90px;height:90px}.weapon_special_springWarrior{background-image:url(spritesmith-main-4.png);background-position:-1397px -1183px;width:90px;height:90px}.body_special_summer2015Healer{background-image:url(spritesmith-main-4.png);background-position:0 -1334px;width:90px;height:90px}.body_special_summer2015Mage{background-image:url(spritesmith-main-4.png);background-position:-91px -1334px;width:90px;height:90px}.body_special_summer2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-206px -197px;width:102px;height:105px}.body_special_summer2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-546px -485px;width:90px;height:105px}.body_special_summerHealer{background-image:url(spritesmith-main-4.png);background-position:-666px 0;width:90px;height:105px}.body_special_summerMage{background-image:url(spritesmith-main-4.png);background-position:-666px -106px;width:90px;height:105px}.broad_armor_special_summer2015Healer{background-image:url(spritesmith-main-4.png);background-position:-546px -1334px;width:90px;height:90px}.broad_armor_special_summer2015Mage{background-image:url(spritesmith-main-4.png);background-position:-637px -1334px;width:90px;height:90px}.broad_armor_special_summer2015Rogue{background-image:url(spritesmith-main-4.png);background-position:0 -91px;width:102px;height:105px}.broad_armor_special_summer2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-666px -212px;width:90px;height:105px}.broad_armor_special_summerHealer{background-image:url(spritesmith-main-4.png);background-position:-666px -318px;width:90px;height:105px}.broad_armor_special_summerMage{background-image:url(spritesmith-main-4.png);background-position:-554px -364px;width:90px;height:105px}.broad_armor_special_summerRogue{background-image:url(spritesmith-main-4.png);background-position:-112px -394px;width:111px;height:90px}.broad_armor_special_summerWarrior{background-image:url(spritesmith-main-4.png);background-position:-224px -394px;width:111px;height:90px}.eyewear_special_summerRogue{background-image:url(spritesmith-main-4.png);background-position:-336px -394px;width:111px;height:90px}.eyewear_special_summerWarrior{background-image:url(spritesmith-main-4.png);background-position:-554px 0;width:111px;height:90px}.head_special_summer2015Healer{background-image:url(spritesmith-main-4.png);background-position:-1488px 0;width:90px;height:90px}.head_special_summer2015Mage{background-image:url(spritesmith-main-4.png);background-position:-1488px -91px;width:90px;height:90px}.head_special_summer2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-103px -197px;width:102px;height:105px}.head_special_summer2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-455px -591px;width:90px;height:105px}.head_special_summerHealer{background-image:url(spritesmith-main-4.png);background-position:-546px -591px;width:90px;height:105px}.head_special_summerMage{background-image:url(spritesmith-main-4.png);background-position:-637px -591px;width:90px;height:105px}.head_special_summerRogue{background-image:url(spritesmith-main-4.png);background-position:-442px -182px;width:111px;height:90px}.head_special_summerWarrior{background-image:url(spritesmith-main-4.png);background-position:-554px -273px;width:111px;height:90px}.Healer_Summer{background-image:url(spritesmith-main-4.png);background-position:-757px -106px;width:90px;height:105px}.Mage_Summer{background-image:url(spritesmith-main-4.png);background-position:-757px -212px;width:90px;height:105px}.SummerRogue14{background-image:url(spritesmith-main-4.png);background-position:-554px -91px;width:111px;height:90px}.SummerWarrior14{background-image:url(spritesmith-main-4.png);background-position:0 -303px;width:111px;height:90px}.shield_special_summer2015Healer{background-image:url(spritesmith-main-4.png);background-position:-1488px -1092px;width:90px;height:90px}.shield_special_summer2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-224px 0;width:102px;height:105px}.shield_special_summer2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-273px -485px;width:90px;height:105px}.shield_special_summerHealer{background-image:url(spritesmith-main-4.png);background-position:-182px -485px;width:90px;height:105px}.shield_special_summerRogue{background-image:url(spritesmith-main-4.png);background-position:-442px -91px;width:111px;height:90px}.shield_special_summerWarrior{background-image:url(spritesmith-main-4.png);background-position:-442px 0;width:111px;height:90px}.shop_armor_special_summer2015Healer{background-image:url(spritesmith-main-4.png);background-position:-1620px -1377px;width:40px;height:40px}.shop_armor_special_summer2015Mage{background-image:url(spritesmith-main-4.png);background-position:-1579px -1377px;width:40px;height:40px}.shop_armor_special_summer2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-1620px -1336px;width:40px;height:40px}.shop_armor_special_summer2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-1579px -1336px;width:40px;height:40px}.shop_armor_special_summerHealer{background-image:url(spritesmith-main-4.png);background-position:-1620px -1295px;width:40px;height:40px}.shop_armor_special_summerMage{background-image:url(spritesmith-main-4.png);background-position:-1579px -1295px;width:40px;height:40px}.shop_armor_special_summerRogue{background-image:url(spritesmith-main-4.png);background-position:-1620px -1254px;width:40px;height:40px}.shop_armor_special_summerWarrior{background-image:url(spritesmith-main-4.png);background-position:-1579px -1254px;width:40px;height:40px}.shop_body_special_summer2015Healer{background-image:url(spritesmith-main-4.png);background-position:-1620px -1213px;width:40px;height:40px}.shop_body_special_summer2015Mage{background-image:url(spritesmith-main-4.png);background-position:-1579px -1213px;width:40px;height:40px}.shop_body_special_summer2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-1620px -1172px;width:40px;height:40px}.shop_body_special_summer2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-1579px -1172px;width:40px;height:40px}.shop_body_special_summerHealer{background-image:url(spritesmith-main-4.png);background-position:-1620px -1131px;width:40px;height:40px}.shop_body_special_summerMage{background-image:url(spritesmith-main-4.png);background-position:-1579px -1131px;width:40px;height:40px}.shop_eyewear_special_summerRogue{background-image:url(spritesmith-main-4.png);background-position:-1620px -1090px;width:40px;height:40px}.shop_eyewear_special_summerWarrior{background-image:url(spritesmith-main-4.png);background-position:-1579px -1090px;width:40px;height:40px}.shop_head_special_summer2015Healer{background-image:url(spritesmith-main-4.png);background-position:-1620px -1049px;width:40px;height:40px}.shop_head_special_summer2015Mage{background-image:url(spritesmith-main-4.png);background-position:-1579px -1049px;width:40px;height:40px}.shop_head_special_summer2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-1620px -1008px;width:40px;height:40px}.shop_head_special_summer2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-1579px -1008px;width:40px;height:40px}.shop_head_special_summerHealer{background-image:url(spritesmith-main-4.png);background-position:-1620px -967px;width:40px;height:40px}.shop_head_special_summerMage{background-image:url(spritesmith-main-4.png);background-position:-697px -1557px;width:40px;height:40px}.shop_head_special_summerRogue{background-image:url(spritesmith-main-4.png);background-position:-1476px -1516px;width:40px;height:40px}.shop_head_special_summerWarrior{background-image:url(spritesmith-main-4.png);background-position:-738px -1557px;width:40px;height:40px}.shop_shield_special_summer2015Healer{background-image:url(spritesmith-main-4.png);background-position:-1620px -680px;width:40px;height:40px}.shop_shield_special_summer2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-1579px -721px;width:40px;height:40px}.shop_shield_special_summer2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-1620px -721px;width:40px;height:40px}.shop_shield_special_summerHealer{background-image:url(spritesmith-main-4.png);background-position:-1579px -762px;width:40px;height:40px}.shop_shield_special_summerRogue{background-image:url(spritesmith-main-4.png);background-position:-1620px -762px;width:40px;height:40px}.shop_shield_special_summerWarrior{background-image:url(spritesmith-main-4.png);background-position:-1579px -803px;width:40px;height:40px}.shop_weapon_special_summer2015Healer{background-image:url(spritesmith-main-4.png);background-position:-1620px -803px;width:40px;height:40px}.shop_weapon_special_summer2015Mage{background-image:url(spritesmith-main-4.png);background-position:-1579px -844px;width:40px;height:40px}.shop_weapon_special_summer2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-1620px -844px;width:40px;height:40px}.shop_weapon_special_summer2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-1579px -885px;width:40px;height:40px}.shop_weapon_special_summerHealer{background-image:url(spritesmith-main-4.png);background-position:-1620px -885px;width:40px;height:40px}.shop_weapon_special_summerMage{background-image:url(spritesmith-main-4.png);background-position:-1579px -926px;width:40px;height:40px}.shop_weapon_special_summerRogue{background-image:url(spritesmith-main-4.png);background-position:-1620px -926px;width:40px;height:40px}.shop_weapon_special_summerWarrior{background-image:url(spritesmith-main-4.png);background-position:-1579px -967px;width:40px;height:40px}.slim_armor_special_summer2015Healer{background-image:url(spritesmith-main-4.png);background-position:-1579px -546px;width:90px;height:90px}.slim_armor_special_summer2015Mage{background-image:url(spritesmith-main-4.png);background-position:-1579px -455px;width:90px;height:90px}.slim_armor_special_summer2015Rogue{background-image:url(spritesmith-main-4.png);background-position:0 -197px;width:102px;height:105px}.slim_armor_special_summer2015Warrior{background-image:url(spritesmith-main-4.png);background-position:0 -485px;width:90px;height:105px}.slim_armor_special_summerHealer{background-image:url(spritesmith-main-4.png);background-position:-91px -485px;width:90px;height:105px}.slim_armor_special_summerMage{background-image:url(spritesmith-main-4.png);background-position:-757px 0;width:90px;height:105px}.slim_armor_special_summerRogue{background-image:url(spritesmith-main-4.png);background-position:-442px -273px;width:111px;height:90px}.slim_armor_special_summerWarrior{background-image:url(spritesmith-main-4.png);background-position:0 -394px;width:111px;height:90px}.weapon_special_summer2015Healer{background-image:url(spritesmith-main-4.png);background-position:-1365px -1425px;width:90px;height:90px}.weapon_special_summer2015Mage{background-image:url(spritesmith-main-4.png);background-position:-1274px -1425px;width:90px;height:90px}.weapon_special_summer2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-121px 0;width:102px;height:105px}.weapon_special_summer2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-182px -591px;width:90px;height:105px}.weapon_special_summerHealer{background-image:url(spritesmith-main-4.png);background-position:-273px -591px;width:90px;height:105px}.weapon_special_summerMage{background-image:url(spritesmith-main-4.png);background-position:-364px -591px;width:90px;height:105px}.weapon_special_summerRogue{background-image:url(spritesmith-main-4.png);background-position:-112px -303px;width:111px;height:90px}.weapon_special_summerWarrior{background-image:url(spritesmith-main-4.png);background-position:-224px -303px;width:111px;height:90px}.broad_armor_special_candycane{background-image:url(spritesmith-main-4.png);background-position:-637px -1425px;width:90px;height:90px}.broad_armor_special_ski{background-image:url(spritesmith-main-4.png);background-position:-546px -1425px;width:90px;height:90px}.broad_armor_special_snowflake{background-image:url(spritesmith-main-4.png);background-position:-455px -1425px;width:90px;height:90px}.broad_armor_special_winter2015Healer{background-image:url(spritesmith-main-4.png);background-position:-364px -1425px;width:90px;height:90px}.broad_armor_special_winter2015Mage{background-image:url(spritesmith-main-4.png);background-position:-273px -1425px;width:90px;height:90px}.broad_armor_special_winter2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-507px -697px;width:96px;height:90px}.broad_armor_special_winter2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-1001px -1243px;width:90px;height:90px}.broad_armor_special_yeti{background-image:url(spritesmith-main-4.png);background-position:-910px -1243px;width:90px;height:90px}.head_special_candycane{background-image:url(spritesmith-main-4.png);background-position:-819px -1243px;width:90px;height:90px}.head_special_nye{background-image:url(spritesmith-main-4.png);background-position:-728px -1243px;width:90px;height:90px}.head_special_nye2014{background-image:url(spritesmith-main-4.png);background-position:-637px -1243px;width:90px;height:90px}.head_special_ski{background-image:url(spritesmith-main-4.png);background-position:-546px -1243px;width:90px;height:90px}.head_special_snowflake{background-image:url(spritesmith-main-4.png);background-position:-455px -1243px;width:90px;height:90px}.head_special_winter2015Healer{background-image:url(spritesmith-main-4.png);background-position:-364px -1243px;width:90px;height:90px}.head_special_winter2015Mage{background-image:url(spritesmith-main-4.png);background-position:-273px -1243px;width:90px;height:90px}.head_special_winter2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-604px -697px;width:96px;height:90px}.head_special_winter2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-91px -1243px;width:90px;height:90px}.head_special_yeti{background-image:url(spritesmith-main-4.png);background-position:0 -1243px;width:90px;height:90px}.shield_special_ski{background-image:url(spritesmith-main-4.png);background-position:0 -697px;width:104px;height:90px}.shield_special_snowflake{background-image:url(spritesmith-main-4.png);background-position:-1306px -1001px;width:90px;height:90px}.shield_special_winter2015Healer{background-image:url(spritesmith-main-4.png);background-position:-1306px -910px;width:90px;height:90px}.shield_special_winter2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-121px -106px;width:96px;height:90px}.shield_special_winter2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-1306px -728px;width:90px;height:90px}.shield_special_yeti{background-image:url(spritesmith-main-4.png);background-position:-1306px -637px;width:90px;height:90px}.shop_armor_special_candycane{background-image:url(spritesmith-main-4.png);background-position:-889px -728px;width:40px;height:40px}.shop_armor_special_ski{background-image:url(spritesmith-main-4.png);background-position:-757px -609px;width:40px;height:40px}.shop_armor_special_snowflake{background-image:url(spritesmith-main-4.png);background-position:-798px -609px;width:40px;height:40px}.shop_armor_special_winter2015Healer{background-image:url(spritesmith-main-4.png);background-position:-757px -650px;width:40px;height:40px}.shop_armor_special_winter2015Mage{background-image:url(spritesmith-main-4.png);background-position:-798px -650px;width:40px;height:40px}.shop_armor_special_winter2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-666px -530px;width:40px;height:40px}.shop_armor_special_winter2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-707px -530px;width:40px;height:40px}.shop_armor_special_yeti{background-image:url(spritesmith-main-4.png);background-position:-795px -697px;width:40px;height:40px}.shop_head_special_candycane{background-image:url(spritesmith-main-4.png);background-position:-795px -738px;width:40px;height:40px}.shop_head_special_nye{background-image:url(spritesmith-main-4.png);background-position:0 -1516px;width:40px;height:40px}.shop_head_special_nye2014{background-image:url(spritesmith-main-4.png);background-position:-41px -1516px;width:40px;height:40px}.shop_head_special_ski{background-image:url(spritesmith-main-4.png);background-position:-82px -1516px;width:40px;height:40px}.shop_head_special_snowflake{background-image:url(spritesmith-main-4.png);background-position:-123px -1516px;width:40px;height:40px}.shop_head_special_winter2015Healer{background-image:url(spritesmith-main-4.png);background-position:-164px -1516px;width:40px;height:40px}.shop_head_special_winter2015Mage{background-image:url(spritesmith-main-4.png);background-position:-205px -1516px;width:40px;height:40px}.shop_head_special_winter2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-246px -1516px;width:40px;height:40px}.shop_head_special_winter2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-287px -1516px;width:40px;height:40px}.shop_head_special_yeti{background-image:url(spritesmith-main-4.png);background-position:-328px -1516px;width:40px;height:40px}.shop_shield_special_ski{background-image:url(spritesmith-main-4.png);background-position:-369px -1516px;width:40px;height:40px}.shop_shield_special_snowflake{background-image:url(spritesmith-main-4.png);background-position:-410px -1516px;width:40px;height:40px}.shop_shield_special_winter2015Healer{background-image:url(spritesmith-main-4.png);background-position:-451px -1516px;width:40px;height:40px}.shop_shield_special_winter2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-492px -1516px;width:40px;height:40px}.shop_shield_special_winter2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-533px -1516px;width:40px;height:40px}.shop_shield_special_yeti{background-image:url(spritesmith-main-4.png);background-position:-574px -1516px;width:40px;height:40px}.shop_weapon_special_candycane{background-image:url(spritesmith-main-4.png);background-position:-615px -1516px;width:40px;height:40px}.shop_weapon_special_ski{background-image:url(spritesmith-main-4.png);background-position:-656px -1516px;width:40px;height:40px}.shop_weapon_special_snowflake{background-image:url(spritesmith-main-4.png);background-position:-697px -1516px;width:40px;height:40px}.shop_weapon_special_winter2015Healer{background-image:url(spritesmith-main-4.png);background-position:-738px -1516px;width:40px;height:40px}.shop_weapon_special_winter2015Mage{background-image:url(spritesmith-main-4.png);background-position:-779px -1516px;width:40px;height:40px}.shop_weapon_special_winter2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-820px -1516px;width:40px;height:40px}.shop_weapon_special_winter2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-861px -1516px;width:40px;height:40px}.shop_weapon_special_yeti{background-image:url(spritesmith-main-4.png);background-position:-902px -1516px;width:40px;height:40px}.slim_armor_special_candycane{background-image:url(spritesmith-main-4.png);background-position:-1306px -546px;width:90px;height:90px}.slim_armor_special_ski{background-image:url(spritesmith-main-4.png);background-position:-1306px -455px;width:90px;height:90px}.slim_armor_special_snowflake{background-image:url(spritesmith-main-4.png);background-position:-1306px -364px;width:90px;height:90px}.slim_armor_special_winter2015Healer{background-image:url(spritesmith-main-4.png);background-position:-1306px -273px;width:90px;height:90px}.slim_armor_special_winter2015Mage{background-image:url(spritesmith-main-4.png);background-position:-1306px -182px;width:90px;height:90px}.slim_armor_special_winter2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-313px -697px;width:96px;height:90px}.slim_armor_special_winter2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-1306px 0;width:90px;height:90px}.slim_armor_special_yeti{background-image:url(spritesmith-main-4.png);background-position:-1183px -1152px;width:90px;height:90px}.weapon_special_candycane{background-image:url(spritesmith-main-4.png);background-position:-1092px -1152px;width:90px;height:90px}.weapon_special_ski{background-image:url(spritesmith-main-4.png);background-position:-1001px -1152px;width:90px;height:90px}.weapon_special_snowflake{background-image:url(spritesmith-main-4.png);background-position:-910px -1152px;width:90px;height:90px}.weapon_special_winter2015Healer{background-image:url(spritesmith-main-4.png);background-position:-819px -1152px;width:90px;height:90px}.weapon_special_winter2015Mage{background-image:url(spritesmith-main-4.png);background-position:-728px -1152px;width:90px;height:90px}.weapon_special_winter2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-410px -697px;width:96px;height:90px}.weapon_special_winter2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-546px -1152px;width:90px;height:90px}.weapon_special_yeti{background-image:url(spritesmith-main-4.png);background-position:-455px -1152px;width:90px;height:90px}.back_special_wondercon_black{background-image:url(spritesmith-main-4.png);background-position:-364px -1152px;width:90px;height:90px}.back_special_wondercon_red{background-image:url(spritesmith-main-4.png);background-position:-273px -1152px;width:90px;height:90px}.body_special_wondercon_black{background-image:url(spritesmith-main-4.png);background-position:-182px -1152px;width:90px;height:90px}.body_special_wondercon_gold{background-image:url(spritesmith-main-4.png);background-position:-1124px -637px;width:90px;height:90px}.body_special_wondercon_red{background-image:url(spritesmith-main-4.png);background-position:-1124px -546px;width:90px;height:90px}.eyewear_special_wondercon_black{background-image:url(spritesmith-main-4.png);background-position:-1124px -455px;width:90px;height:90px}.eyewear_special_wondercon_red{background-image:url(spritesmith-main-4.png);background-position:-1124px -364px;width:90px;height:90px}.shop_back_special_wondercon_black{background-image:url(spritesmith-main-4.png);background-position:-246px -1557px;width:40px;height:40px}.shop_back_special_wondercon_red{background-image:url(spritesmith-main-4.png);background-position:-287px -1557px;width:40px;height:40px}.shop_body_special_wondercon_black{background-image:url(spritesmith-main-4.png);background-position:-328px -1557px;width:40px;height:40px}.shop_body_special_wondercon_gold{background-image:url(spritesmith-main-4.png);background-position:-369px -1557px;width:40px;height:40px}.shop_body_special_wondercon_red{background-image:url(spritesmith-main-4.png);background-position:-410px -1557px;width:40px;height:40px}.shop_eyewear_special_wondercon_black{background-image:url(spritesmith-main-4.png);background-position:-451px -1557px;width:40px;height:40px}.shop_eyewear_special_wondercon_red{background-image:url(spritesmith-main-4.png);background-position:-492px -1557px;width:40px;height:40px}.head_0{background-image:url(spritesmith-main-4.png);background-position:-819px -970px;width:90px;height:90px}.customize-option.head_0{background-image:url(spritesmith-main-4.png);background-position:-844px -985px;width:60px;height:60px}.head_healer_1{background-image:url(spritesmith-main-4.png);background-position:-728px -970px;width:90px;height:90px}.head_healer_2{background-image:url(spritesmith-main-4.png);background-position:-637px -970px;width:90px;height:90px}.head_healer_3{background-image:url(spritesmith-main-4.png);background-position:-546px -970px;width:90px;height:90px}.head_healer_4{background-image:url(spritesmith-main-4.png);background-position:-91px -970px;width:90px;height:90px}.head_healer_5{background-image:url(spritesmith-main-4.png);background-position:0 -970px;width:90px;height:90px}.head_rogue_1{background-image:url(spritesmith-main-4.png);background-position:-1033px -637px;width:90px;height:90px}.head_rogue_2{background-image:url(spritesmith-main-4.png);background-position:-1033px -546px;width:90px;height:90px}.head_rogue_3{background-image:url(spritesmith-main-4.png);background-position:-1033px -182px;width:90px;height:90px}.head_rogue_4{background-image:url(spritesmith-main-4.png);background-position:-1033px -91px;width:90px;height:90px}.head_rogue_5{background-image:url(spritesmith-main-4.png);background-position:-728px -879px;width:90px;height:90px}.head_special_2{background-image:url(spritesmith-main-4.png);background-position:-637px -879px;width:90px;height:90px}.head_special_fireCoralCirclet{background-image:url(spritesmith-main-4.png);background-position:-364px -879px;width:90px;height:90px}.head_warrior_1{background-image:url(spritesmith-main-4.png);background-position:-273px -879px;width:90px;height:90px}.head_warrior_2{background-image:url(spritesmith-main-4.png);background-position:-942px -728px;width:90px;height:90px}.head_warrior_3{background-image:url(spritesmith-main-4.png);background-position:-942px -637px;width:90px;height:90px}.head_warrior_4{background-image:url(spritesmith-main-4.png);background-position:-942px -273px;width:90px;height:90px}.head_warrior_5{background-image:url(spritesmith-main-4.png);background-position:-942px -182px;width:90px;height:90px}.head_wizard_1{background-image:url(spritesmith-main-4.png);background-position:-819px -788px;width:90px;height:90px}.head_wizard_2{background-image:url(spritesmith-main-4.png);background-position:-728px -788px;width:90px;height:90px}.head_wizard_3{background-image:url(spritesmith-main-4.png);background-position:-364px -788px;width:90px;height:90px}.head_wizard_4{background-image:url(spritesmith-main-4.png);background-position:-273px -788px;width:90px;height:90px}.head_wizard_5{background-image:url(spritesmith-main-4.png);background-position:-848px -637px;width:90px;height:90px}.shop_head_healer_1{background-image:url(spritesmith-main-4.png);background-position:-1476px -1557px;width:40px;height:40px}.shop_head_healer_2{background-image:url(spritesmith-main-4.png);background-position:-1517px -1557px;width:40px;height:40px}.shop_head_healer_3{background-image:url(spritesmith-main-4.png);background-position:-1558px -1557px;width:40px;height:40px}.shop_head_healer_4{background-image:url(spritesmith-main-4.png);background-position:-1599px -1557px;width:40px;height:40px}.shop_head_healer_5{background-image:url(spritesmith-main-4.png);background-position:0 -1598px;width:40px;height:40px}.shop_head_rogue_1{background-image:url(spritesmith-main-4.png);background-position:-41px -1598px;width:40px;height:40px}.shop_head_rogue_2{background-image:url(spritesmith-main-4.png);background-position:-82px -1598px;width:40px;height:40px}.shop_head_rogue_3{background-image:url(spritesmith-main-4.png);background-position:-123px -1598px;width:40px;height:40px}.shop_head_rogue_4{background-image:url(spritesmith-main-4.png);background-position:-164px -1598px;width:40px;height:40px}.shop_head_rogue_5{background-image:url(spritesmith-main-4.png);background-position:-205px -1598px;width:40px;height:40px}.shop_head_special_0{background-image:url(spritesmith-main-4.png);background-position:-246px -1598px;width:40px;height:40px}.shop_head_special_1{background-image:url(spritesmith-main-4.png);background-position:-287px -1598px;width:40px;height:40px}.shop_head_special_2{background-image:url(spritesmith-main-4.png);background-position:-328px -1598px;width:40px;height:40px}.shop_head_special_fireCoralCirclet{background-image:url(spritesmith-main-4.png);background-position:-369px -1598px;width:40px;height:40px}.shop_head_warrior_1{background-image:url(spritesmith-main-4.png);background-position:-410px -1598px;width:40px;height:40px}.shop_head_warrior_2{background-image:url(spritesmith-main-4.png);background-position:-451px -1598px;width:40px;height:40px}.shop_head_warrior_3{background-image:url(spritesmith-main-4.png);background-position:-492px -1598px;width:40px;height:40px}.shop_head_warrior_4{background-image:url(spritesmith-main-4.png);background-position:-533px -1598px;width:40px;height:40px}.shop_head_warrior_5{background-image:url(spritesmith-main-4.png);background-position:-574px -1598px;width:40px;height:40px}.shop_head_wizard_1{background-image:url(spritesmith-main-4.png);background-position:-615px -1598px;width:40px;height:40px}.shop_head_wizard_2{background-image:url(spritesmith-main-4.png);background-position:-656px -1598px;width:40px;height:40px}.shop_head_wizard_3{background-image:url(spritesmith-main-4.png);background-position:-697px -1598px;width:40px;height:40px}.shop_head_wizard_4{background-image:url(spritesmith-main-4.png);background-position:-738px -1598px;width:40px;height:40px}.shop_head_wizard_5{background-image:url(spritesmith-main-4.png);background-position:-779px -1598px;width:40px;height:40px}.headAccessory_special_bearEars{background-image:url(spritesmith-main-4.png);background-position:-848px -546px;width:90px;height:90px}.customize-option.headAccessory_special_bearEars{background-image:url(spritesmith-main-4.png);background-position:-873px -561px;width:60px;height:60px}.headAccessory_special_cactusEars{background-image:url(spritesmith-main-4.png);background-position:-1579px -182px;width:90px;height:90px}.customize-option.headAccessory_special_cactusEars{background-image:url(spritesmith-main-4.png);background-position:-1604px -197px;width:60px;height:60px}.headAccessory_special_foxEars{background-image:url(spritesmith-main-4.png);background-position:-1579px -91px;width:90px;height:90px}.customize-option.headAccessory_special_foxEars{background-image:url(spritesmith-main-4.png);background-position:-1604px -106px;width:60px;height:60px}.headAccessory_special_lionEars{background-image:url(spritesmith-main-4.png);background-position:-1092px -1425px;width:90px;height:90px}.customize-option.headAccessory_special_lionEars{background-image:url(spritesmith-main-4.png);background-position:-1117px -1440px;width:60px;height:60px}.headAccessory_special_pandaEars{background-image:url(spritesmith-main-4.png);background-position:-1001px -1425px;width:90px;height:90px}.customize-option.headAccessory_special_pandaEars{background-image:url(spritesmith-main-4.png);background-position:-1026px -1440px;width:60px;height:60px}.headAccessory_special_pigEars{background-image:url(spritesmith-main-4.png);background-position:-182px -1425px;width:90px;height:90px}.customize-option.headAccessory_special_pigEars{background-image:url(spritesmith-main-4.png);background-position:-207px -1440px;width:60px;height:60px}.headAccessory_special_tigerEars{background-image:url(spritesmith-main-4.png);background-position:-91px -1425px;width:90px;height:90px}.customize-option.headAccessory_special_tigerEars{background-image:url(spritesmith-main-4.png);background-position:-116px -1440px;width:60px;height:60px}.headAccessory_special_wolfEars{background-image:url(spritesmith-main-4.png);background-position:-1488px -1183px;width:90px;height:90px}.customize-option.headAccessory_special_wolfEars{background-image:url(spritesmith-main-4.png);background-position:-1513px -1198px;width:60px;height:60px}.shop_headAccessory_special_bearEars{background-image:url(spritesmith-main-4.png);background-position:-1148px -1598px;width:40px;height:40px}.shop_headAccessory_special_cactusEars{background-image:url(spritesmith-main-4.png);background-position:-1189px -1598px;width:40px;height:40px}.shop_headAccessory_special_foxEars{background-image:url(spritesmith-main-4.png);background-position:-1230px -1598px;width:40px;height:40px}.shop_headAccessory_special_lionEars{background-image:url(spritesmith-main-4.png);background-position:-1271px -1598px;width:40px;height:40px}.shop_headAccessory_special_pandaEars{background-image:url(spritesmith-main-4.png);background-position:-1312px -1598px;width:40px;height:40px}.shop_headAccessory_special_pigEars{background-image:url(spritesmith-main-4.png);background-position:-1353px -1598px;width:40px;height:40px}.shop_headAccessory_special_tigerEars{background-image:url(spritesmith-main-4.png);background-position:-1394px -1598px;width:40px;height:40px}.shop_headAccessory_special_wolfEars{background-image:url(spritesmith-main-4.png);background-position:-1435px -1598px;width:40px;height:40px}.shield_healer_1{background-image:url(spritesmith-main-4.png);background-position:-1488px -1001px;width:90px;height:90px}.shield_healer_2{background-image:url(spritesmith-main-4.png);background-position:-1488px -637px;width:90px;height:90px}.shield_healer_3{background-image:url(spritesmith-main-4.png);background-position:-1488px -546px;width:90px;height:90px}.shield_healer_4{background-image:url(spritesmith-main-4.png);background-position:-1488px -182px;width:90px;height:90px}.shield_healer_5{background-image:url(spritesmith-main-4.png);background-position:-1365px -1334px;width:90px;height:90px}.shield_rogue_0{background-image:url(spritesmith-main-4.png);background-position:-1001px -1334px;width:90px;height:90px}.shield_rogue_1{background-image:url(spritesmith-main-4.png);background-position:-209px -697px;width:103px;height:90px}.shield_rogue_2{background-image:url(spritesmith-main-4.png);background-position:-105px -697px;width:103px;height:90px}.shield_rogue_3{background-image:url(spritesmith-main-4.png);background-position:-327px -91px;width:114px;height:90px}.shield_rogue_4{background-image:url(spritesmith-main-4.png);background-position:-224px -106px;width:96px;height:90px}.shield_rogue_5{background-image:url(spritesmith-main-4.png);background-position:-327px -182px;width:114px;height:90px}.shield_rogue_6{background-image:url(spritesmith-main-4.png);background-position:-327px 0;width:114px;height:90px}.shield_special_1{background-image:url(spritesmith-main-4.png);background-position:-1033px -364px;width:90px;height:90px}.shield_special_goldenknight{background-image:url(spritesmith-main-4.png);background-position:-554px -182px;width:111px;height:90px}.shield_special_moonpearlShield{background-image:url(spritesmith-main-4.png);background-position:-91px -879px;width:90px;height:90px}.shield_warrior_1{background-image:url(spritesmith-main-4.png);background-position:-1488px -1274px;width:90px;height:90px}.shield_warrior_2{background-image:url(spritesmith-main-4.png);background-position:-1488px -910px;width:90px;height:90px}.shield_warrior_3{background-image:url(spritesmith-main-4.png);background-position:-1488px -819px;width:90px;height:90px}.shield_warrior_4{background-image:url(spritesmith-main-4.png);background-position:-182px -1334px;width:90px;height:90px}.shield_warrior_5{background-image:url(spritesmith-main-4.png);background-position:-1092px -1243px;width:90px;height:90px}.shop_shield_healer_1{background-image:url(spritesmith-main-4.png);background-position:-1670px -656px;width:40px;height:40px}.shop_shield_healer_2{background-image:url(spritesmith-main-4.png);background-position:-1670px -697px;width:40px;height:40px}.shop_shield_healer_3{background-image:url(spritesmith-main-4.png);background-position:-1670px -738px;width:40px;height:40px}.shop_shield_healer_4{background-image:url(spritesmith-main-5.png);background-position:-1525px -367px;width:40px;height:40px}.shop_shield_healer_5{background-image:url(spritesmith-main-5.png);background-position:-1711px -1377px;width:40px;height:40px}.shop_shield_rogue_0{background-image:url(spritesmith-main-5.png);background-position:-1711px -1459px;width:40px;height:40px}.shop_shield_rogue_1{background-image:url(spritesmith-main-5.png);background-position:-1711px -1623px;width:40px;height:40px}.shop_shield_rogue_2{background-image:url(spritesmith-main-5.png);background-position:-1525px -326px;width:40px;height:40px}.shop_shield_rogue_3{background-image:url(spritesmith-main-5.png);background-position:-421px -1704px;width:40px;height:40px}.shop_shield_rogue_4{background-image:url(spritesmith-main-5.png);background-position:-503px -1704px;width:40px;height:40px}.shop_shield_rogue_5{background-image:url(spritesmith-main-5.png);background-position:-667px -1704px;width:40px;height:40px}.shop_shield_rogue_6{background-image:url(spritesmith-main-5.png);background-position:-708px -1704px;width:40px;height:40px}.shop_shield_special_0{background-image:url(spritesmith-main-5.png);background-position:-749px -1704px;width:40px;height:40px}.shop_shield_special_1{background-image:url(spritesmith-main-5.png);background-position:-790px -1704px;width:40px;height:40px}.shop_shield_special_goldenknight{background-image:url(spritesmith-main-5.png);background-position:-831px -1704px;width:40px;height:40px}.shop_shield_special_moonpearlShield{background-image:url(spritesmith-main-5.png);background-position:-1760px -82px;width:40px;height:40px}.shop_shield_warrior_1{background-image:url(spritesmith-main-5.png);background-position:-1760px -41px;width:40px;height:40px}.shop_shield_warrior_2{background-image:url(spritesmith-main-5.png);background-position:-1760px 0;width:40px;height:40px}.shop_shield_warrior_3{background-image:url(spritesmith-main-5.png);background-position:-1692px -1704px;width:40px;height:40px}.shop_shield_warrior_4{background-image:url(spritesmith-main-5.png);background-position:-1651px -1704px;width:40px;height:40px}.shop_shield_warrior_5{background-image:url(spritesmith-main-5.png);background-position:-1610px -1704px;width:40px;height:40px}.shop_weapon_healer_0{background-image:url(spritesmith-main-5.png);background-position:-1569px -1704px;width:40px;height:40px}.shop_weapon_healer_1{background-image:url(spritesmith-main-5.png);background-position:-1528px -1704px;width:40px;height:40px}.shop_weapon_healer_2{background-image:url(spritesmith-main-5.png);background-position:-1487px -1704px;width:40px;height:40px}.shop_weapon_healer_3{background-image:url(spritesmith-main-5.png);background-position:-1446px -1704px;width:40px;height:40px}.shop_weapon_healer_4{background-image:url(spritesmith-main-5.png);background-position:-1405px -1704px;width:40px;height:40px}.shop_weapon_healer_5{background-image:url(spritesmith-main-5.png);background-position:-1364px -1704px;width:40px;height:40px}.shop_weapon_healer_6{background-image:url(spritesmith-main-5.png);background-position:-1323px -1704px;width:40px;height:40px}.shop_weapon_rogue_0{background-image:url(spritesmith-main-5.png);background-position:-1282px -1704px;width:40px;height:40px}.shop_weapon_rogue_1{background-image:url(spritesmith-main-5.png);background-position:-1241px -1704px;width:40px;height:40px}.shop_weapon_rogue_2{background-image:url(spritesmith-main-5.png);background-position:-1200px -1704px;width:40px;height:40px}.shop_weapon_rogue_3{background-image:url(spritesmith-main-5.png);background-position:-1159px -1704px;width:40px;height:40px}.shop_weapon_rogue_4{background-image:url(spritesmith-main-5.png);background-position:-1118px -1704px;width:40px;height:40px}.shop_weapon_rogue_5{background-image:url(spritesmith-main-5.png);background-position:-1077px -1704px;width:40px;height:40px}.shop_weapon_rogue_6{background-image:url(spritesmith-main-5.png);background-position:-1036px -1704px;width:40px;height:40px}.shop_weapon_special_0{background-image:url(spritesmith-main-5.png);background-position:-995px -1704px;width:40px;height:40px}.shop_weapon_special_1{background-image:url(spritesmith-main-5.png);background-position:-954px -1704px;width:40px;height:40px}.shop_weapon_special_2{background-image:url(spritesmith-main-5.png);background-position:-913px -1704px;width:40px;height:40px}.shop_weapon_special_3{background-image:url(spritesmith-main-5.png);background-position:-872px -1704px;width:40px;height:40px}.shop_weapon_special_critical{background-image:url(spritesmith-main-5.png);background-position:-380px -1704px;width:40px;height:40px}.shop_weapon_special_tridentOfCrashingTides{background-image:url(spritesmith-main-5.png);background-position:-339px -1704px;width:40px;height:40px}.shop_weapon_warrior_0{background-image:url(spritesmith-main-5.png);background-position:-257px -1704px;width:40px;height:40px}.shop_weapon_warrior_1{background-image:url(spritesmith-main-5.png);background-position:-216px -1704px;width:40px;height:40px}.shop_weapon_warrior_2{background-image:url(spritesmith-main-5.png);background-position:-175px -1704px;width:40px;height:40px}.shop_weapon_warrior_3{background-image:url(spritesmith-main-5.png);background-position:-134px -1704px;width:40px;height:40px}.shop_weapon_warrior_4{background-image:url(spritesmith-main-5.png);background-position:-93px -1704px;width:40px;height:40px}.shop_weapon_warrior_5{background-image:url(spritesmith-main-5.png);background-position:-52px -1704px;width:40px;height:40px}.shop_weapon_warrior_6{background-image:url(spritesmith-main-5.png);background-position:-1666px -1652px;width:40px;height:40px}.shop_weapon_wizard_0{background-image:url(spritesmith-main-5.png);background-position:-1262px -811px;width:40px;height:40px}.shop_weapon_wizard_1{background-image:url(spritesmith-main-5.png);background-position:-1221px -811px;width:40px;height:40px}.shop_weapon_wizard_2{background-image:url(spritesmith-main-5.png);background-position:-1528px -770px;width:40px;height:40px}.shop_weapon_wizard_3{background-image:url(spritesmith-main-5.png);background-position:-1528px -729px;width:40px;height:40px}.shop_weapon_wizard_4{background-image:url(spritesmith-main-5.png);background-position:-1528px -688px;width:40px;height:40px}.shop_weapon_wizard_5{background-image:url(spritesmith-main-5.png);background-position:-1525px -449px;width:40px;height:40px}.shop_weapon_wizard_6{background-image:url(spritesmith-main-5.png);background-position:-1525px -408px;width:40px;height:40px}.weapon_healer_0{background-image:url(spritesmith-main-5.png);background-position:-1302px -1469px;width:90px;height:90px}.weapon_healer_1{background-image:url(spritesmith-main-5.png);background-position:-1571px -728px;width:90px;height:90px}.weapon_healer_2{background-image:url(spritesmith-main-5.png);background-position:-1571px -819px;width:90px;height:90px}.weapon_healer_3{background-image:url(spritesmith-main-5.png);background-position:-1571px -910px;width:90px;height:90px}.weapon_healer_4{background-image:url(spritesmith-main-5.png);background-position:-1571px -1001px;width:90px;height:90px}.weapon_healer_5{background-image:url(spritesmith-main-5.png);background-position:-1571px -1092px;width:90px;height:90px}.weapon_healer_6{background-image:url(spritesmith-main-5.png);background-position:-1571px -1274px;width:90px;height:90px}.weapon_rogue_0{background-image:url(spritesmith-main-5.png);background-position:-1571px -1365px;width:90px;height:90px}.weapon_rogue_1{background-image:url(spritesmith-main-5.png);background-position:-1571px -1456px;width:90px;height:90px}.weapon_rogue_2{background-image:url(spritesmith-main-5.png);background-position:0 -1561px;width:90px;height:90px}.weapon_rogue_3{background-image:url(spritesmith-main-5.png);background-position:-119px -1469px;width:90px;height:90px}.weapon_rogue_4{background-image:url(spritesmith-main-5.png);background-position:-483px -1469px;width:90px;height:90px}.weapon_rogue_5{background-image:url(spritesmith-main-5.png);background-position:-301px -1469px;width:90px;height:90px}.weapon_rogue_6{background-image:url(spritesmith-main-5.png);background-position:-392px -1469px;width:90px;height:90px}.weapon_special_1{background-image:url(spritesmith-main-5.png);background-position:-1137px -1287px;width:102px;height:90px}.weapon_special_2{background-image:url(spritesmith-main-5.png);background-position:-574px -1469px;width:90px;height:90px}.weapon_special_3{background-image:url(spritesmith-main-5.png);background-position:-665px -1469px;width:90px;height:90px}.weapon_special_tridentOfCrashingTides{background-image:url(spritesmith-main-5.png);background-position:-756px -1469px;width:90px;height:90px}.weapon_warrior_0{background-image:url(spritesmith-main-5.png);background-position:-847px -1469px;width:90px;height:90px}.weapon_warrior_1{background-image:url(spritesmith-main-5.png);background-position:-938px -1469px;width:90px;height:90px}.weapon_warrior_2{background-image:url(spritesmith-main-5.png);background-position:-1029px -1469px;width:90px;height:90px}.weapon_warrior_3{background-image:url(spritesmith-main-5.png);background-position:-1120px -1469px;width:90px;height:90px}.weapon_warrior_4{background-image:url(spritesmith-main-5.png);background-position:-1211px -1469px;width:90px;height:90px}.weapon_warrior_5{background-image:url(spritesmith-main-5.png);background-position:-182px -1561px;width:90px;height:90px}.weapon_warrior_6{background-image:url(spritesmith-main-5.png);background-position:-1393px -1469px;width:90px;height:90px}.weapon_wizard_0{background-image:url(spritesmith-main-5.png);background-position:-1571px 0;width:90px;height:90px}.weapon_wizard_1{background-image:url(spritesmith-main-5.png);background-position:-1571px -91px;width:90px;height:90px}.weapon_wizard_2{background-image:url(spritesmith-main-5.png);background-position:-1571px -182px;width:90px;height:90px}.weapon_wizard_3{background-image:url(spritesmith-main-5.png);background-position:-1571px -273px;width:90px;height:90px}.weapon_wizard_4{background-image:url(spritesmith-main-5.png);background-position:-1571px -364px;width:90px;height:90px}.weapon_wizard_5{background-image:url(spritesmith-main-5.png);background-position:-1571px -455px;width:90px;height:90px}.weapon_wizard_6{background-image:url(spritesmith-main-5.png);background-position:-1571px -546px;width:90px;height:90px}.GrimReaper{background-image:url(spritesmith-main-5.png);background-position:-1511px -504px;width:57px;height:66px}.Pet_Currency_Gem{background-image:url(spritesmith-main-5.png);background-position:-1711px -1337px;width:45px;height:39px}.Pet_Currency_Gem1x{background-image:url(spritesmith-main-5.png);background-position:-1760px -422px;width:15px;height:13px}.Pet_Currency_Gem2x{background-image:url(spritesmith-main-5.png);background-position:-1760px -326px;width:30px;height:26px}.PixelPaw-Gold{background-image:url(spritesmith-main-5.png);background-position:-1516px -966px;width:51px;height:51px}.PixelPaw{background-image:url(spritesmith-main-5.png);background-position:-1516px -879px;width:51px;height:51px}.PixelPaw002{background-image:url(spritesmith-main-5.png);background-position:-1516px -827px;width:51px;height:51px}.avatar_floral_healer{background-image:url(spritesmith-main-5.png);background-position:-837px -1287px;width:99px;height:99px}.avatar_floral_rogue{background-image:url(spritesmith-main-5.png);background-position:-937px -1287px;width:99px;height:99px}.avatar_floral_warrior{background-image:url(spritesmith-main-5.png);background-position:-1037px -1287px;width:99px;height:99px}.avatar_floral_wizard{background-image:url(spritesmith-main-5.png);background-position:-737px -1287px;width:99px;height:99px}.empty_bottles{background-image:url(spritesmith-main-5.png);background-position:-273px -1561px;width:64px;height:54px}.inventory_present{background-image:url(spritesmith-main-5.png);background-position:-1350px -1561px;width:48px;height:51px}.inventory_present_01{background-image:url(spritesmith-main-5.png);background-position:-1301px -1561px;width:48px;height:51px}.inventory_present_02{background-image:url(spritesmith-main-5.png);background-position:-1252px -1561px;width:48px;height:51px}.inventory_present_03{background-image:url(spritesmith-main-5.png);background-position:-1203px -1561px;width:48px;height:51px}.inventory_present_04{background-image:url(spritesmith-main-5.png);background-position:-1154px -1561px;width:48px;height:51px}.inventory_present_05{background-image:url(spritesmith-main-5.png);background-position:-1105px -1561px;width:48px;height:51px}.inventory_present_06{background-image:url(spritesmith-main-5.png);background-position:-1056px -1561px;width:48px;height:51px}.inventory_present_07{background-image:url(spritesmith-main-5.png);background-position:-958px -1561px;width:48px;height:51px}.inventory_present_08{background-image:url(spritesmith-main-5.png);background-position:-909px -1561px;width:48px;height:51px}.inventory_present_09{background-image:url(spritesmith-main-5.png);background-position:-860px -1561px;width:48px;height:51px}.inventory_present_10{background-image:url(spritesmith-main-5.png);background-position:-1516px -1157px;width:48px;height:51px}.inventory_present_11{background-image:url(spritesmith-main-5.png);background-position:-1516px -1105px;width:48px;height:51px}.inventory_present_12{background-image:url(spritesmith-main-5.png);background-position:-1497px -1561px;width:48px;height:51px}.inventory_quest_scroll{background-image:url(spritesmith-main-5.png);background-position:-1448px -1561px;width:48px;height:51px}.inventory_quest_scroll_locked{background-image:url(spritesmith-main-5.png);background-position:-1399px -1561px;width:48px;height:51px}.inventory_special_fortify{background-image:url(spritesmith-main-5.png);background-position:-802px -1561px;width:57px;height:54px}.inventory_special_greeting{background-image:url(spritesmith-main-5.png);background-position:-1511px -626px;width:57px;height:54px}.inventory_special_nye{background-image:url(spritesmith-main-5.png);background-position:-744px -1561px;width:57px;height:54px}.inventory_special_opaquePotion{background-image:url(spritesmith-main-5.png);background-position:-1711px -1582px;width:40px;height:40px}.inventory_special_seafoam{background-image:url(spritesmith-main-5.png);background-position:-628px -1561px;width:57px;height:54px}.inventory_special_shinySeed{background-image:url(spritesmith-main-5.png);background-position:-570px -1561px;width:57px;height:54px}.inventory_special_snowball{background-image:url(spritesmith-main-5.png);background-position:-512px -1561px;width:57px;height:54px}.inventory_special_spookDust{background-image:url(spritesmith-main-5.png);background-position:-454px -1561px;width:57px;height:54px}.inventory_special_thankyou{background-image:url(spritesmith-main-5.png);background-position:-396px -1561px;width:57px;height:54px}.inventory_special_trinket{background-image:url(spritesmith-main-5.png);background-position:-1007px -1561px;width:48px;height:51px}.inventory_special_valentine{background-image:url(spritesmith-main-5.png);background-position:-338px -1561px;width:57px;height:54px}.knockout{background-image:url(spritesmith-main-5.png);background-position:-1100px -811px;width:120px;height:47px}.pet_key{background-image:url(spritesmith-main-5.png);background-position:-1511px -571px;width:57px;height:54px}.rebirth_orb{background-image:url(spritesmith-main-5.png);background-position:-686px -1561px;width:57px;height:54px}.seafoam_star{background-image:url(spritesmith-main-5.png);background-position:-1571px -637px;width:90px;height:90px}.shop_armoire{background-image:url(spritesmith-main-5.png);background-position:-1711px -1541px;width:40px;height:40px}.snowman{background-image:url(spritesmith-main-5.png);background-position:-91px -1561px;width:90px;height:90px}.spookman{background-image:url(spritesmith-main-5.png);background-position:-1571px -1183px;width:90px;height:90px}.zzz{background-image:url(spritesmith-main-5.png);background-position:-1711px -1500px;width:40px;height:40px}.zzz_light{background-image:url(spritesmith-main-5.png);background-position:-1711px -1418px;width:40px;height:40px}.npc_alex{background-image:url(spritesmith-main-5.png);background-position:-190px -1287px;width:162px;height:138px}.npc_bailey{background-image:url(spritesmith-main-5.png);background-position:-1484px -1469px;width:60px;height:72px}.npc_daniel{background-image:url(spritesmith-main-5.png);background-position:-516px -1287px;width:135px;height:123px}.npc_justin{background-image:url(spritesmith-main-5.png);background-position:-652px -1287px;width:84px;height:120px}.npc_justin_head{background-image:url(spritesmith-main-5.png);background-position:-1760px -123px;width:36px;height:39px}.npc_matt{background-image:url(spritesmith-main-5.png);background-position:-1320px -966px;width:195px;height:138px}.npc_timetravelers{background-image:url(spritesmith-main-5.png);background-position:-1320px -1105px;width:195px;height:138px}.npc_timetravelers_active{background-image:url(spritesmith-main-5.png);background-position:-1320px -827px;width:195px;height:138px}.npc_tyler{background-image:url(spritesmith-main-5.png);background-position:-210px -1469px;width:90px;height:90px}.seasonalshop_closed{background-image:url(spritesmith-main-5.png);background-position:-353px -1287px;width:162px;height:138px}.inventory_quest_scroll_atom1{background-image:url(spritesmith-main-5.png);background-position:-1662px -416px;width:48px;height:51px}.inventory_quest_scroll_atom1_locked{background-image:url(spritesmith-main-5.png);background-position:-1662px -468px;width:48px;height:51px}.inventory_quest_scroll_atom2{background-image:url(spritesmith-main-5.png);background-position:-1662px -520px;width:48px;height:51px}.inventory_quest_scroll_atom2_locked{background-image:url(spritesmith-main-5.png);background-position:-1662px -572px;width:48px;height:51px}.inventory_quest_scroll_atom3{background-image:url(spritesmith-main-5.png);background-position:-1662px -624px;width:48px;height:51px}.inventory_quest_scroll_atom3_locked{background-image:url(spritesmith-main-5.png);background-position:-1662px -676px;width:48px;height:51px}.inventory_quest_scroll_basilist{background-image:url(spritesmith-main-5.png);background-position:-1662px -728px;width:48px;height:51px}.inventory_quest_scroll_bunny{background-image:url(spritesmith-main-5.png);background-position:-1711px -1196px;width:48px;height:51px}.inventory_quest_scroll_cheetah{background-image:url(spritesmith-main-5.png);background-position:-1662px -832px;width:48px;height:51px}.inventory_quest_scroll_dilatoryDistress1{background-image:url(spritesmith-main-5.png);background-position:-1662px -884px;width:48px;height:51px}.inventory_quest_scroll_dilatoryDistress2{background-image:url(spritesmith-main-5.png);background-position:-1662px -936px;width:48px;height:51px}.inventory_quest_scroll_dilatoryDistress2_locked{background-image:url(spritesmith-main-5.png);background-position:-1662px -988px;width:48px;height:51px}.inventory_quest_scroll_dilatoryDistress3{background-image:url(spritesmith-main-5.png);background-position:-1662px -1040px;width:48px;height:51px}.inventory_quest_scroll_dilatoryDistress3_locked{background-image:url(spritesmith-main-5.png);background-position:-1662px -1092px;width:48px;height:51px}.inventory_quest_scroll_dilatory_derby{background-image:url(spritesmith-main-5.png);background-position:-1662px -1144px;width:48px;height:51px}.inventory_quest_scroll_egg{background-image:url(spritesmith-main-5.png);background-position:-1662px -1196px;width:48px;height:51px}.inventory_quest_scroll_evilsanta{background-image:url(spritesmith-main-5.png);background-position:-1662px -1248px;width:48px;height:51px}.inventory_quest_scroll_evilsanta2{background-image:url(spritesmith-main-5.png);background-position:-1662px -1300px;width:48px;height:51px}.inventory_quest_scroll_frog{background-image:url(spritesmith-main-5.png);background-position:-1662px -1352px;width:48px;height:51px}.inventory_quest_scroll_ghost_stag{background-image:url(spritesmith-main-5.png);background-position:-1662px -1404px;width:48px;height:51px}.inventory_quest_scroll_goldenknight1{background-image:url(spritesmith-main-5.png);background-position:-1662px -1456px;width:48px;height:51px}.inventory_quest_scroll_goldenknight1_locked{background-image:url(spritesmith-main-5.png);background-position:-1662px -1508px;width:48px;height:51px}.inventory_quest_scroll_goldenknight2{background-image:url(spritesmith-main-5.png);background-position:-1662px -1560px;width:48px;height:51px}.inventory_quest_scroll_goldenknight2_locked{background-image:url(spritesmith-main-5.png);background-position:0 -1652px;width:48px;height:51px}.inventory_quest_scroll_goldenknight3{background-image:url(spritesmith-main-5.png);background-position:-49px -1652px;width:48px;height:51px}.inventory_quest_scroll_goldenknight3_locked{background-image:url(spritesmith-main-5.png);background-position:-98px -1652px;width:48px;height:51px}.inventory_quest_scroll_gryphon{background-image:url(spritesmith-main-5.png);background-position:-1516px -1018px;width:48px;height:51px}.inventory_quest_scroll_harpy{background-image:url(spritesmith-main-5.png);background-position:-196px -1652px;width:48px;height:51px}.inventory_quest_scroll_hedgehog{background-image:url(spritesmith-main-5.png);background-position:-245px -1652px;width:48px;height:51px}.inventory_quest_scroll_horse{background-image:url(spritesmith-main-5.png);background-position:-294px -1652px;width:48px;height:51px}.inventory_quest_scroll_kraken{background-image:url(spritesmith-main-5.png);background-position:-343px -1652px;width:48px;height:51px}.inventory_quest_scroll_moonstone1{background-image:url(spritesmith-main-5.png);background-position:-392px -1652px;width:48px;height:51px}.inventory_quest_scroll_moonstone1_locked{background-image:url(spritesmith-main-5.png);background-position:-441px -1652px;width:48px;height:51px}.inventory_quest_scroll_moonstone2{background-image:url(spritesmith-main-5.png);background-position:-490px -1652px;width:48px;height:51px}.inventory_quest_scroll_moonstone2_locked{background-image:url(spritesmith-main-5.png);background-position:-539px -1652px;width:48px;height:51px}.inventory_quest_scroll_moonstone3{background-image:url(spritesmith-main-5.png);background-position:-588px -1652px;width:48px;height:51px}.inventory_quest_scroll_moonstone3_locked{background-image:url(spritesmith-main-5.png);background-position:-637px -1652px;width:48px;height:51px}.inventory_quest_scroll_octopus{background-image:url(spritesmith-main-5.png);background-position:-686px -1652px;width:48px;height:51px}.inventory_quest_scroll_owl{background-image:url(spritesmith-main-5.png);background-position:-735px -1652px;width:48px;height:51px}.inventory_quest_scroll_penguin{background-image:url(spritesmith-main-5.png);background-position:-784px -1652px;width:48px;height:51px}.inventory_quest_scroll_rat{background-image:url(spritesmith-main-5.png);background-position:-833px -1652px;width:48px;height:51px}.inventory_quest_scroll_rock{background-image:url(spritesmith-main-5.png);background-position:-882px -1652px;width:48px;height:51px}.inventory_quest_scroll_rooster{background-image:url(spritesmith-main-5.png);background-position:-931px -1652px;width:48px;height:51px}.inventory_quest_scroll_sheep{background-image:url(spritesmith-main-5.png);background-position:-980px -1652px;width:48px;height:51px}.inventory_quest_scroll_slime{background-image:url(spritesmith-main-5.png);background-position:-1029px -1652px;width:48px;height:51px}.inventory_quest_scroll_snake{background-image:url(spritesmith-main-5.png);background-position:-1078px -1652px;width:48px;height:51px}.inventory_quest_scroll_spider{background-image:url(spritesmith-main-5.png);background-position:-1127px -1652px;width:48px;height:51px}.inventory_quest_scroll_trex{background-image:url(spritesmith-main-5.png);background-position:-1176px -1652px;width:48px;height:51px}.inventory_quest_scroll_trex_undead{background-image:url(spritesmith-main-5.png);background-position:-1225px -1652px;width:48px;height:51px}.inventory_quest_scroll_vice1{background-image:url(spritesmith-main-5.png);background-position:-1274px -1652px;width:48px;height:51px}.inventory_quest_scroll_vice1_locked{background-image:url(spritesmith-main-5.png);background-position:-1323px -1652px;width:48px;height:51px}.inventory_quest_scroll_vice2{background-image:url(spritesmith-main-5.png);background-position:-1372px -1652px;width:48px;height:51px}.inventory_quest_scroll_vice2_locked{background-image:url(spritesmith-main-5.png);background-position:-1421px -1652px;width:48px;height:51px}.inventory_quest_scroll_vice3{background-image:url(spritesmith-main-5.png);background-position:-1470px -1652px;width:48px;height:51px}.inventory_quest_scroll_vice3_locked{background-image:url(spritesmith-main-5.png);background-position:-1519px -1652px;width:48px;height:51px}.inventory_quest_scroll_whale{background-image:url(spritesmith-main-5.png);background-position:-1568px -1652px;width:48px;height:51px}.quest_TEMPLATE_FOR_MISSING_IMAGE{background-image:url(spritesmith-main-5.png);background-position:-1240px -1287px;width:221px;height:39px}.quest_atom1{background-image:url(spritesmith-main-5.png);background-position:-902px -1106px;width:250px;height:150px}.quest_atom2{background-image:url(spritesmith-main-5.png);background-position:-1320px -688px;width:207px;height:138px}.quest_atom3{background-image:url(spritesmith-main-5.png);background-position:0 -1106px;width:216px;height:180px}.quest_basilist{background-image:url(spritesmith-main-5.png);background-position:0 -1287px;width:189px;height:141px}.quest_bunny{background-image:url(spritesmith-main-5.png);background-position:-1100px -624px;width:210px;height:186px}.quest_cheetah{background-image:url(spritesmith-main-5.png);background-position:0 -672px;width:219px;height:219px}.quest_dilatory{background-image:url(spritesmith-main-5.png);background-position:-880px -440px;width:219px;height:219px}.quest_dilatoryDistress1{background-image:url(spritesmith-main-5.png);background-position:-1320px -1244px;width:221px;height:39px}.quest_dilatoryDistress1_blueFins{background-image:url(spritesmith-main-5.png);background-position:0 -1704px;width:51px;height:48px}.quest_dilatoryDistress1_fireCoral{background-image:url(spritesmith-main-5.png);background-position:-1711px -416px;width:48px;height:51px}.quest_dilatoryDistress2{background-image:url(spritesmith-main-5.png);background-position:-1153px -1106px;width:150px;height:150px}.quest_dilatoryDistress3{background-image:url(spritesmith-main-5.png);background-position:-220px 0;width:219px;height:219px}.quest_dilatory_derby{background-image:url(spritesmith-main-5.png);background-position:-440px -452px;width:219px;height:219px}.quest_egg{background-image:url(spritesmith-main-5.png);background-position:-1240px -1327px;width:221px;height:39px}.quest_egg_plainEgg{background-image:url(spritesmith-main-5.png);background-position:-1711px -676px;width:48px;height:51px}.quest_evilsanta{background-image:url(spritesmith-main-5.png);background-position:0 -1429px;width:118px;height:131px}.quest_evilsanta2{background-image:url(spritesmith-main-5.png);background-position:-660px -220px;width:219px;height:219px}.quest_frog{background-image:url(spritesmith-main-5.png);background-position:0 -892px;width:221px;height:213px}.quest_ghost_stag{background-image:url(spritesmith-main-5.png);background-position:-440px -232px;width:219px;height:219px}.quest_goldenknight1{background-image:url(spritesmith-main-5.png);background-position:-341px -1429px;width:221px;height:39px}.quest_goldenknight1_testimony{background-image:url(spritesmith-main-5.png);background-position:-1711px -988px;width:48px;height:51px}.quest_goldenknight2{background-image:url(spritesmith-main-5.png);background-position:-651px -1106px;width:250px;height:150px}.quest_goldenknight3{background-image:url(spritesmith-main-5.png);background-position:0 0;width:219px;height:231px}.quest_gryphon{background-image:url(spritesmith-main-5.png);background-position:-879px -892px;width:216px;height:177px}.quest_harpy{background-image:url(spritesmith-main-5.png);background-position:-220px -452px;width:219px;height:219px}.quest_hedgehog{background-image:url(spritesmith-main-5.png);background-position:-1100px -437px;width:219px;height:186px}.quest_horse{background-image:url(spritesmith-main-5.png);background-position:-440px 0;width:219px;height:219px}.quest_kraken{background-image:url(spritesmith-main-5.png);background-position:-662px -892px;width:216px;height:177px}.quest_moonstone1{background-image:url(spritesmith-main-5.png);background-position:-119px -1429px;width:221px;height:39px}.quest_moonstone1_moonstone{background-image:url(spritesmith-main-5.png);background-position:-1760px -295px;width:30px;height:30px}.quest_moonstone2{background-image:url(spritesmith-main-5.png);background-position:0 -232px;width:219px;height:219px}.quest_moonstone3{background-image:url(spritesmith-main-5.png);background-position:-660px -452px;width:219px;height:219px}.quest_octopus{background-image:url(spritesmith-main-5.png);background-position:-222px -892px;width:222px;height:177px}.quest_owl{background-image:url(spritesmith-main-5.png);background-position:-220px -232px;width:219px;height:219px}.quest_penguin{background-image:url(spritesmith-main-5.png);background-position:-1320px -504px;width:190px;height:183px}.quest_rat{background-image:url(spritesmith-main-5.png);background-position:0 -452px;width:219px;height:219px}.quest_rock{background-image:url(spritesmith-main-5.png);background-position:-1100px -220px;width:216px;height:216px}.quest_rooster{background-image:url(spritesmith-main-5.png);background-position:-1320px -151px;width:213px;height:174px}.quest_sheep{background-image:url(spritesmith-main-5.png);background-position:-880px 0;width:219px;height:219px}.quest_slime{background-image:url(spritesmith-main-5.png);background-position:-880px -220px;width:219px;height:219px}.quest_snake{background-image:url(spritesmith-main-5.png);background-position:-445px -892px;width:216px;height:177px}.quest_spider{background-image:url(spritesmith-main-5.png);background-position:-1320px 0;width:250px;height:150px}.quest_stressbeast{background-image:url(spritesmith-main-5.png);background-position:-220px -672px;width:219px;height:219px}.quest_stressbeast_bailey{background-image:url(spritesmith-main-5.png);background-position:-440px -672px;width:219px;height:219px}.quest_stressbeast_guide{background-image:url(spritesmith-main-5.png);background-position:-660px -672px;width:219px;height:219px}.quest_stressbeast_stables{background-image:url(spritesmith-main-5.png);background-position:-880px -672px;width:219px;height:219px}.quest_trex{background-image:url(spritesmith-main-5.png);background-position:-1320px -326px;width:204px;height:177px}.quest_trex_undead{background-image:url(spritesmith-main-5.png);background-position:-217px -1106px;width:216px;height:177px}.quest_vice1{background-image:url(spritesmith-main-5.png);background-position:-434px -1106px;width:216px;height:177px}.quest_vice2{background-image:url(spritesmith-main-5.png);background-position:-1100px 0;width:219px;height:219px}.quest_vice2_lightCrystal{background-image:url(spritesmith-main-5.png);background-position:-298px -1704px;width:40px;height:40px}.quest_vice3{background-image:url(spritesmith-main-5.png);background-position:-1096px -892px;width:216px;height:177px}.quest_whale{background-image:url(spritesmith-main-5.png);background-position:-660px 0;width:219px;height:219px}.shop_copper{background-image:url(spritesmith-main-5.png);background-position:-1760px -376px;width:32px;height:22px}.shop_eyes{background-image:url(spritesmith-main-5.png);background-position:-462px -1704px;width:40px;height:40px}.shop_gold{background-image:url(spritesmith-main-5.png);background-position:-1760px -399px;width:32px;height:22px}.shop_opaquePotion{background-image:url(spritesmith-main-5.png);background-position:-544px -1704px;width:40px;height:40px}.shop_potion{background-image:url(spritesmith-main-5.png);background-position:-585px -1704px;width:40px;height:40px}.shop_reroll{background-image:url(spritesmith-main-5.png);background-position:-626px -1704px;width:40px;height:40px}.shop_seafoam{background-image:url(spritesmith-main-5.png);background-position:-1760px -262px;width:32px;height:32px}.shop_shinySeed{background-image:url(spritesmith-main-5.png);background-position:-1760px -229px;width:32px;height:32px}.shop_silver{background-image:url(spritesmith-main-5.png);background-position:-1760px -353px;width:32px;height:22px}.shop_snowball{background-image:url(spritesmith-main-5.png);background-position:-1760px -196px;width:32px;height:32px}.shop_spookDust{background-image:url(spritesmith-main-5.png);background-position:-1760px -163px;width:32px;height:32px}.Pet_Egg_BearCub{background-image:url(spritesmith-main-5.png);background-position:-1546px -1561px;width:48px;height:51px}.Pet_Egg_Bunny{background-image:url(spritesmith-main-5.png);background-position:-1595px -1561px;width:48px;height:51px}.Pet_Egg_Cactus{background-image:url(spritesmith-main-5.png);background-position:-1662px 0;width:48px;height:51px}.Pet_Egg_Cheetah{background-image:url(spritesmith-main-5.png);background-position:-1662px -52px;width:48px;height:51px}.Pet_Egg_Cuttlefish{background-image:url(spritesmith-main-5.png);background-position:-1662px -104px;width:48px;height:51px}.Pet_Egg_Deer{background-image:url(spritesmith-main-5.png);background-position:-1662px -156px;width:48px;height:51px}.Pet_Egg_Dragon{background-image:url(spritesmith-main-5.png);background-position:-1662px -208px;width:48px;height:51px}.Pet_Egg_Egg{background-image:url(spritesmith-main-5.png);background-position:-1662px -260px;width:48px;height:51px}.Pet_Egg_FlyingPig{background-image:url(spritesmith-main-5.png);background-position:-1662px -312px;width:48px;height:51px}.Pet_Egg_Fox{background-image:url(spritesmith-main-5.png);background-position:-1662px -364px;width:48px;height:51px}.Pet_Egg_Frog{background-image:url(spritesmith-main-5.png);background-position:-1662px -780px;width:48px;height:51px}.Pet_Egg_Gryphon{background-image:url(spritesmith-main-5.png);background-position:-1617px -1652px;width:48px;height:51px}.Pet_Egg_Hedgehog{background-image:url(spritesmith-main-5.png);background-position:-1711px 0;width:48px;height:51px}.Pet_Egg_Horse{background-image:url(spritesmith-main-5.png);background-position:-1711px -52px;width:48px;height:51px}.Pet_Egg_LionCub{background-image:url(spritesmith-main-5.png);background-position:-1711px -104px;width:48px;height:51px}.Pet_Egg_Octopus{background-image:url(spritesmith-main-5.png);background-position:-1711px -156px;width:48px;height:51px}.Pet_Egg_Owl{background-image:url(spritesmith-main-5.png);background-position:-1711px -208px;width:48px;height:51px}.Pet_Egg_PandaCub{background-image:url(spritesmith-main-5.png);background-position:-1711px -260px;width:48px;height:51px}.Pet_Egg_Parrot{background-image:url(spritesmith-main-5.png);background-position:-1711px -312px;width:48px;height:51px}.Pet_Egg_Penguin{background-image:url(spritesmith-main-5.png);background-position:-1711px -364px;width:48px;height:51px}.Pet_Egg_PolarBear{background-image:url(spritesmith-main-5.png);background-position:-1711px -468px;width:48px;height:51px}.Pet_Egg_Rat{background-image:url(spritesmith-main-5.png);background-position:-1711px -520px;width:48px;height:51px}.Pet_Egg_Rock{background-image:url(spritesmith-main-5.png);background-position:-1711px -572px;width:48px;height:51px}.Pet_Egg_Rooster{background-image:url(spritesmith-main-5.png);background-position:-1711px -624px;width:48px;height:51px}.Pet_Egg_Seahorse{background-image:url(spritesmith-main-5.png);background-position:-1711px -728px;width:48px;height:51px}.Pet_Egg_Sheep{background-image:url(spritesmith-main-5.png);background-position:-1711px -780px;width:48px;height:51px}.Pet_Egg_Slime{background-image:url(spritesmith-main-5.png);background-position:-1711px -832px;width:48px;height:51px}.Pet_Egg_Snake{background-image:url(spritesmith-main-5.png);background-position:-1711px -884px;width:48px;height:51px}.Pet_Egg_Spider{background-image:url(spritesmith-main-5.png);background-position:-1711px -936px;width:48px;height:51px}.Pet_Egg_TRex{background-image:url(spritesmith-main-5.png);background-position:-1711px -1040px;width:48px;height:51px}.Pet_Egg_TigerCub{background-image:url(spritesmith-main-5.png);background-position:-1711px -1092px;width:48px;height:51px}.Pet_Egg_Whale{background-image:url(spritesmith-main-5.png);background-position:-1711px -1144px;width:48px;height:51px}.Pet_Egg_Wolf{background-image:url(spritesmith-main-5.png);background-position:-147px -1652px;width:48px;height:51px}.Pet_Food_Cake_Base{background-image:url(spritesmith-main-5.png);background-position:-1711px -1248px;width:43px;height:43px}.Pet_Food_Cake_CottonCandyBlue{background-image:url(spritesmith-main-5.png);background-position:-1711px -1292px;width:42px;height:44px}.Pet_Food_Cake_CottonCandyPink{background-image:url(spritesmith-main-6.png);background-position:-680px -1635px;width:43px;height:45px}.Pet_Food_Cake_Desert{background-image:url(spritesmith-main-6.png);background-position:-1484px -1378px;width:43px;height:44px}.Pet_Food_Cake_Golden{background-image:url(spritesmith-main-6.png);background-position:-1422px -1272px;width:43px;height:42px}.Pet_Food_Cake_Red{background-image:url(spritesmith-main-6.png);background-position:-1378px -1272px;width:43px;height:44px}.Pet_Food_Cake_Shade{background-image:url(spritesmith-main-6.png);background-position:-1528px -1378px;width:43px;height:44px}.Pet_Food_Cake_Skeleton{background-image:url(spritesmith-main-6.png);background-position:-637px -1635px;width:42px;height:47px}.Pet_Food_Cake_White{background-image:url(spritesmith-main-6.png);background-position:-1636px -1484px;width:44px;height:44px}.Pet_Food_Cake_Zombie{background-image:url(spritesmith-main-6.png);background-position:-1590px -1484px;width:45px;height:44px}.Pet_Food_Candy_Base{background-image:url(spritesmith-main-6.png);background-position:-294px -1635px;width:48px;height:51px}.Pet_Food_Candy_CottonCandyBlue{background-image:url(spritesmith-main-6.png);background-position:-588px -1635px;width:48px;height:51px}.Pet_Food_Candy_CottonCandyPink{background-image:url(spritesmith-main-6.png);background-position:-539px -1635px;width:48px;height:51px}.Pet_Food_Candy_Desert{background-image:url(spritesmith-main-6.png);background-position:-490px -1635px;width:48px;height:51px}.Pet_Food_Candy_Golden{background-image:url(spritesmith-main-6.png);background-position:-441px -1635px;width:48px;height:51px}.Pet_Food_Candy_Red{background-image:url(spritesmith-main-6.png);background-position:-392px -1635px;width:48px;height:51px}.Pet_Food_Candy_Shade{background-image:url(spritesmith-main-6.png);background-position:-343px -1635px;width:48px;height:51px}.Pet_Food_Candy_Skeleton{background-image:url(spritesmith-main-6.png);background-position:-1484px -1529px;width:48px;height:51px}.Pet_Food_Candy_White{background-image:url(spritesmith-main-6.png);background-position:-245px -1635px;width:48px;height:51px}.Pet_Food_Candy_Zombie{background-image:url(spritesmith-main-6.png);background-position:-196px -1635px;width:48px;height:51px}.Pet_Food_Chocolate{background-image:url(spritesmith-main-6.png);background-position:-147px -1635px;width:48px;height:51px}.Pet_Food_CottonCandyBlue{background-image:url(spritesmith-main-6.png);background-position:-98px -1635px;width:48px;height:51px}.Pet_Food_CottonCandyPink{background-image:url(spritesmith-main-6.png);background-position:-49px -1635px;width:48px;height:51px}.Pet_Food_Fish{background-image:url(spritesmith-main-6.png);background-position:0 -1635px;width:48px;height:51px}.Pet_Food_Honey{background-image:url(spritesmith-main-6.png);background-position:-1631px -1581px;width:48px;height:51px}.Pet_Food_Meat{background-image:url(spritesmith-main-6.png);background-position:-1582px -1581px;width:48px;height:51px}.Pet_Food_Milk{background-image:url(spritesmith-main-6.png);background-position:-1533px -1581px;width:48px;height:51px}.Pet_Food_Potatoe{background-image:url(spritesmith-main-6.png);background-position:-1484px -1581px;width:48px;height:51px}.Pet_Food_RottenMeat{background-image:url(spritesmith-main-6.png);background-position:-1631px -1529px;width:48px;height:51px}.Pet_Food_Saddle{background-image:url(spritesmith-main-6.png);background-position:-1582px -1529px;width:48px;height:51px}.Pet_Food_Strawberry{background-image:url(spritesmith-main-6.png);background-position:-1533px -1529px;width:48px;height:51px}.Mount_Body_BearCub-Base{background-image:url(spritesmith-main-6.png);background-position:-636px 0;width:105px;height:105px}.Mount_Body_BearCub-CottonCandyBlue{background-image:url(spritesmith-main-6.png);background-position:-636px -106px;width:105px;height:105px}.Mount_Body_BearCub-CottonCandyPink{background-image:url(spritesmith-main-6.png);background-position:-636px -212px;width:105px;height:105px}.Mount_Body_BearCub-Desert{background-image:url(spritesmith-main-6.png);background-position:-636px -318px;width:105px;height:105px}.Mount_Body_BearCub-Golden{background-image:url(spritesmith-main-6.png);background-position:-636px -424px;width:105px;height:105px}.Mount_Body_BearCub-Peppermint{background-image:url(spritesmith-main-6.png);background-position:0 -575px;width:105px;height:105px}.Mount_Body_BearCub-Polar{background-image:url(spritesmith-main-6.png);background-position:-106px -575px;width:105px;height:105px}.Mount_Body_BearCub-Red{background-image:url(spritesmith-main-6.png);background-position:-212px -575px;width:105px;height:105px}.Mount_Body_BearCub-Shade{background-image:url(spritesmith-main-6.png);background-position:-318px -575px;width:105px;height:105px}.Mount_Body_BearCub-Skeleton{background-image:url(spritesmith-main-6.png);background-position:-424px -575px;width:105px;height:105px}.Mount_Body_BearCub-Spooky{background-image:url(spritesmith-main-6.png);background-position:-530px -575px;width:105px;height:105px}.Mount_Body_BearCub-White{background-image:url(spritesmith-main-6.png);background-position:-636px -575px;width:105px;height:105px}.Mount_Body_BearCub-Zombie{background-image:url(spritesmith-main-6.png);background-position:-742px 0;width:105px;height:105px}.Mount_Body_Bunny-Base{background-image:url(spritesmith-main-6.png);background-position:-742px -106px;width:105px;height:105px}.Mount_Body_Bunny-CottonCandyBlue{background-image:url(spritesmith-main-6.png);background-position:-742px -212px;width:105px;height:105px}.Mount_Body_Bunny-CottonCandyPink{background-image:url(spritesmith-main-6.png);background-position:-742px -318px;width:105px;height:105px}.Mount_Body_Bunny-Desert{background-image:url(spritesmith-main-6.png);background-position:-742px -424px;width:105px;height:105px}.Mount_Body_Bunny-Golden{background-image:url(spritesmith-main-6.png);background-position:-742px -530px;width:105px;height:105px}.Mount_Body_Bunny-Red{background-image:url(spritesmith-main-6.png);background-position:0 -681px;width:105px;height:105px}.Mount_Body_Bunny-Shade{background-image:url(spritesmith-main-6.png);background-position:-106px -681px;width:105px;height:105px}.Mount_Body_Bunny-Skeleton{background-image:url(spritesmith-main-6.png);background-position:-212px -681px;width:105px;height:105px}.Mount_Body_Bunny-White{background-image:url(spritesmith-main-6.png);background-position:-318px -681px;width:105px;height:105px}.Mount_Body_Bunny-Zombie{background-image:url(spritesmith-main-6.png);background-position:-424px -681px;width:105px;height:105px}.Mount_Body_Cactus-Base{background-image:url(spritesmith-main-6.png);background-position:-530px -681px;width:105px;height:105px}.Mount_Body_Cactus-CottonCandyBlue{background-image:url(spritesmith-main-6.png);background-position:-636px -681px;width:105px;height:105px}.Mount_Body_Cactus-CottonCandyPink{background-image:url(spritesmith-main-6.png);background-position:-742px -681px;width:105px;height:105px}.Mount_Body_Cactus-Desert{background-image:url(spritesmith-main-6.png);background-position:-848px 0;width:105px;height:105px}.Mount_Body_Cactus-Golden{background-image:url(spritesmith-main-6.png);background-position:-848px -106px;width:105px;height:105px}.Mount_Body_Cactus-Peppermint{background-image:url(spritesmith-main-6.png);background-position:-848px -212px;width:105px;height:105px}.Mount_Body_Cactus-Red{background-image:url(spritesmith-main-6.png);background-position:-848px -318px;width:105px;height:105px}.Mount_Body_Cactus-Shade{background-image:url(spritesmith-main-6.png);background-position:-848px -424px;width:105px;height:105px}.Mount_Body_Cactus-Skeleton{background-image:url(spritesmith-main-6.png);background-position:-848px -530px;width:105px;height:105px}.Mount_Body_Cactus-Spooky{background-image:url(spritesmith-main-6.png);background-position:-848px -636px;width:105px;height:105px}.Mount_Body_Cactus-White{background-image:url(spritesmith-main-6.png);background-position:0 -787px;width:105px;height:105px}.Mount_Body_Cactus-Zombie{background-image:url(spritesmith-main-6.png);background-position:-106px -787px;width:105px;height:105px}.Mount_Body_Cheetah-Base{background-image:url(spritesmith-main-6.png);background-position:-212px -787px;width:105px;height:105px}.Mount_Body_Cheetah-CottonCandyBlue{background-image:url(spritesmith-main-6.png);background-position:-318px -787px;width:105px;height:105px}.Mount_Body_Cheetah-CottonCandyPink{background-image:url(spritesmith-main-6.png);background-position:-424px -787px;width:105px;height:105px}.Mount_Body_Cheetah-Desert{background-image:url(spritesmith-main-6.png);background-position:-530px -787px;width:105px;height:105px}.Mount_Body_Cheetah-Golden{background-image:url(spritesmith-main-6.png);background-position:-636px -787px;width:105px;height:105px}.Mount_Body_Cheetah-Red{background-image:url(spritesmith-main-6.png);background-position:-742px -787px;width:105px;height:105px}.Mount_Body_Cheetah-Shade{background-image:url(spritesmith-main-6.png);background-position:-848px -787px;width:105px;height:105px}.Mount_Body_Cheetah-Skeleton{background-image:url(spritesmith-main-6.png);background-position:-954px 0;width:105px;height:105px}.Mount_Body_Cheetah-White{background-image:url(spritesmith-main-6.png);background-position:-954px -106px;width:105px;height:105px}.Mount_Body_Cheetah-Zombie{background-image:url(spritesmith-main-6.png);background-position:-954px -212px;width:105px;height:105px}.Mount_Body_Cuttlefish-Base{background-image:url(spritesmith-main-6.png);background-position:-530px 0;width:105px;height:114px}.Mount_Body_Cuttlefish-CottonCandyBlue{background-image:url(spritesmith-main-6.png);background-position:-318px -239px;width:105px;height:114px}.Mount_Body_Cuttlefish-CottonCandyPink{background-image:url(spritesmith-main-6.png);background-position:-212px 0;width:105px;height:114px}.Mount_Body_Cuttlefish-Desert{background-image:url(spritesmith-main-6.png);background-position:0 -124px;width:105px;height:114px}.Mount_Body_Cuttlefish-Golden{background-image:url(spritesmith-main-6.png);background-position:-106px -124px;width:105px;height:114px}.Mount_Body_Cuttlefish-Red{background-image:url(spritesmith-main-6.png);background-position:-212px -124px;width:105px;height:114px}.Mount_Body_Cuttlefish-Shade{background-image:url(spritesmith-main-6.png);background-position:-318px 0;width:105px;height:114px}.Mount_Body_Cuttlefish-Skeleton{background-image:url(spritesmith-main-6.png);background-position:-318px -115px;width:105px;height:114px}.Mount_Body_Cuttlefish-White{background-image:url(spritesmith-main-6.png);background-position:0 -239px;width:105px;height:114px}.Mount_Body_Cuttlefish-Zombie{background-image:url(spritesmith-main-6.png);background-position:-106px -239px;width:105px;height:114px}.Mount_Body_Deer-Base{background-image:url(spritesmith-main-6.png);background-position:-530px -893px;width:105px;height:105px}.Mount_Body_Deer-CottonCandyBlue{background-image:url(spritesmith-main-6.png);background-position:-636px -893px;width:105px;height:105px}.Mount_Body_Deer-CottonCandyPink{background-image:url(spritesmith-main-6.png);background-position:-742px -893px;width:105px;height:105px}.Mount_Body_Deer-Desert{background-image:url(spritesmith-main-6.png);background-position:-848px -893px;width:105px;height:105px}.Mount_Body_Deer-Golden{background-image:url(spritesmith-main-6.png);background-position:-954px -893px;width:105px;height:105px}.Mount_Body_Deer-Red{background-image:url(spritesmith-main-6.png);background-position:-1060px 0;width:105px;height:105px}.Mount_Body_Deer-Shade{background-image:url(spritesmith-main-6.png);background-position:-1060px -106px;width:105px;height:105px}.Mount_Body_Deer-Skeleton{background-image:url(spritesmith-main-6.png);background-position:-1060px -212px;width:105px;height:105px}.Mount_Body_Deer-White{background-image:url(spritesmith-main-6.png);background-position:-1060px -318px;width:105px;height:105px}.Mount_Body_Deer-Zombie{background-image:url(spritesmith-main-6.png);background-position:-1060px -424px;width:105px;height:105px}.Mount_Body_Dragon-Base{background-image:url(spritesmith-main-6.png);background-position:-1060px -530px;width:105px;height:105px}.Mount_Body_Dragon-CottonCandyBlue{background-image:url(spritesmith-main-6.png);background-position:-1060px -636px;width:105px;height:105px}.Mount_Body_Dragon-CottonCandyPink{background-image:url(spritesmith-main-6.png);background-position:-1060px -742px;width:105px;height:105px}.Mount_Body_Dragon-Desert{background-image:url(spritesmith-main-6.png);background-position:-1060px -848px;width:105px;height:105px}.Mount_Body_Dragon-Golden{background-image:url(spritesmith-main-6.png);background-position:0 -999px;width:105px;height:105px}.Mount_Body_Dragon-Peppermint{background-image:url(spritesmith-main-6.png);background-position:-106px -999px;width:105px;height:105px}.Mount_Body_Dragon-Red{background-image:url(spritesmith-main-6.png);background-position:-212px -999px;width:105px;height:105px}.Mount_Body_Dragon-Shade{background-image:url(spritesmith-main-6.png);background-position:-318px -999px;width:105px;height:105px}.Mount_Body_Dragon-Skeleton{background-image:url(spritesmith-main-6.png);background-position:-424px -999px;width:105px;height:105px}.Mount_Body_Dragon-Spooky{background-image:url(spritesmith-main-6.png);background-position:-530px -999px;width:105px;height:105px}.Mount_Body_Dragon-White{background-image:url(spritesmith-main-6.png);background-position:-636px -999px;width:105px;height:105px}.Mount_Body_Dragon-Zombie{background-image:url(spritesmith-main-6.png);background-position:-742px -999px;width:105px;height:105px}.Mount_Body_Egg-Base{background-image:url(spritesmith-main-6.png);background-position:-848px -999px;width:105px;height:105px}.Mount_Body_Egg-CottonCandyBlue{background-image:url(spritesmith-main-6.png);background-position:-954px -999px;width:105px;height:105px}.Mount_Body_Egg-CottonCandyPink{background-image:url(spritesmith-main-6.png);background-position:-1060px -999px;width:105px;height:105px}.Mount_Body_Egg-Desert{background-image:url(spritesmith-main-6.png);background-position:-1166px 0;width:105px;height:105px}.Mount_Body_Egg-Golden{background-image:url(spritesmith-main-6.png);background-position:-1166px -106px;width:105px;height:105px}.Mount_Body_Egg-Red{background-image:url(spritesmith-main-6.png);background-position:-1166px -212px;width:105px;height:105px}.Mount_Body_Egg-Shade{background-image:url(spritesmith-main-6.png);background-position:-1166px -318px;width:105px;height:105px}.Mount_Body_Egg-Skeleton{background-image:url(spritesmith-main-6.png);background-position:-1166px -424px;width:105px;height:105px}.Mount_Body_Egg-White{background-image:url(spritesmith-main-6.png);background-position:-1166px -530px;width:105px;height:105px}.Mount_Body_Egg-Zombie{background-image:url(spritesmith-main-6.png);background-position:-1166px -636px;width:105px;height:105px}.Mount_Body_FlyingPig-Base{background-image:url(spritesmith-main-6.png);background-position:-1166px -742px;width:105px;height:105px}.Mount_Body_FlyingPig-CottonCandyBlue{background-image:url(spritesmith-main-6.png);background-position:-1166px -848px;width:105px;height:105px}.Mount_Body_FlyingPig-CottonCandyPink{background-image:url(spritesmith-main-6.png);background-position:-1166px -954px;width:105px;height:105px}.Mount_Body_FlyingPig-Desert{background-image:url(spritesmith-main-6.png);background-position:0 -1105px;width:105px;height:105px}.Mount_Body_FlyingPig-Golden{background-image:url(spritesmith-main-6.png);background-position:-106px -1105px;width:105px;height:105px}.Mount_Body_FlyingPig-Peppermint{background-image:url(spritesmith-main-6.png);background-position:-212px -1105px;width:105px;height:105px}.Mount_Body_FlyingPig-Red{background-image:url(spritesmith-main-6.png);background-position:-318px -1105px;width:105px;height:105px}.Mount_Body_FlyingPig-Shade{background-image:url(spritesmith-main-6.png);background-position:-424px -1105px;width:105px;height:105px}.Mount_Body_FlyingPig-Skeleton{background-image:url(spritesmith-main-6.png);background-position:-530px -1105px;width:105px;height:105px}.Mount_Body_FlyingPig-Spooky{background-image:url(spritesmith-main-6.png);background-position:-636px -1105px;width:105px;height:105px}.Mount_Body_FlyingPig-White{background-image:url(spritesmith-main-6.png);background-position:-742px -1105px;width:105px;height:105px}.Mount_Body_FlyingPig-Zombie{background-image:url(spritesmith-main-6.png);background-position:-848px -1105px;width:105px;height:105px}.Mount_Body_Fox-Base{background-image:url(spritesmith-main-6.png);background-position:-954px -1105px;width:105px;height:105px}.Mount_Body_Fox-CottonCandyBlue{background-image:url(spritesmith-main-6.png);background-position:-1060px -1105px;width:105px;height:105px}.Mount_Body_Fox-CottonCandyPink{background-image:url(spritesmith-main-6.png);background-position:-1166px -1105px;width:105px;height:105px}.Mount_Body_Fox-Desert{background-image:url(spritesmith-main-6.png);background-position:-1272px 0;width:105px;height:105px}.Mount_Body_Fox-Golden{background-image:url(spritesmith-main-6.png);background-position:-1272px -106px;width:105px;height:105px}.Mount_Body_Fox-Peppermint{background-image:url(spritesmith-main-6.png);background-position:-530px -115px;width:105px;height:105px}.Mount_Body_Fox-Red{background-image:url(spritesmith-main-6.png);background-position:-1272px -318px;width:105px;height:105px}.Mount_Body_Fox-Shade{background-image:url(spritesmith-main-6.png);background-position:-1272px -424px;width:105px;height:105px}.Mount_Body_Fox-Skeleton{background-image:url(spritesmith-main-6.png);background-position:-1272px -530px;width:105px;height:105px}.Mount_Body_Fox-Spooky{background-image:url(spritesmith-main-6.png);background-position:-1272px -636px;width:105px;height:105px}.Mount_Body_Fox-White{background-image:url(spritesmith-main-6.png);background-position:-1272px -742px;width:105px;height:105px}.Mount_Body_Fox-Zombie{background-image:url(spritesmith-main-6.png);background-position:-1272px -848px;width:105px;height:105px}.Mount_Body_Frog-Base{background-image:url(spritesmith-main-6.png);background-position:-212px -239px;width:105px;height:114px}.Mount_Body_Frog-CottonCandyBlue{background-image:url(spritesmith-main-6.png);background-position:-106px 0;width:105px;height:114px}.Mount_Body_Frog-CottonCandyPink{background-image:url(spritesmith-main-6.png);background-position:-424px 0;width:105px;height:114px}.Mount_Body_Frog-Desert{background-image:url(spritesmith-main-6.png);background-position:-424px -115px;width:105px;height:114px}.Mount_Body_Frog-Golden{background-image:url(spritesmith-main-6.png);background-position:-424px -230px;width:105px;height:114px}.Mount_Body_Frog-Red{background-image:url(spritesmith-main-6.png);background-position:0 -354px;width:105px;height:114px}.Mount_Body_Frog-Shade{background-image:url(spritesmith-main-6.png);background-position:-106px -354px;width:105px;height:114px}.Mount_Body_Frog-Skeleton{background-image:url(spritesmith-main-6.png);background-position:-212px -354px;width:105px;height:114px}.Mount_Body_Frog-White{background-image:url(spritesmith-main-6.png);background-position:-318px -354px;width:105px;height:114px}.Mount_Body_Frog-Zombie{background-image:url(spritesmith-main-6.png);background-position:-424px -354px;width:105px;height:114px}.Mount_Body_Gryphon-Base{background-image:url(spritesmith-main-6.png);background-position:-848px -1211px;width:105px;height:105px}.Mount_Body_Gryphon-CottonCandyBlue{background-image:url(spritesmith-main-6.png);background-position:-954px -1211px;width:105px;height:105px}.Mount_Body_Gryphon-CottonCandyPink{background-image:url(spritesmith-main-6.png);background-position:-1060px -1211px;width:105px;height:105px}.Mount_Body_Gryphon-Desert{background-image:url(spritesmith-main-6.png);background-position:-1166px -1211px;width:105px;height:105px}.Mount_Body_Gryphon-Golden{background-image:url(spritesmith-main-6.png);background-position:-1272px -1211px;width:105px;height:105px}.Mount_Body_Gryphon-Red{background-image:url(spritesmith-main-6.png);background-position:-1378px 0;width:105px;height:105px}.Mount_Body_Gryphon-RoyalPurple{background-image:url(spritesmith-main-6.png);background-position:-1378px -106px;width:105px;height:105px}.Mount_Body_Gryphon-Shade{background-image:url(spritesmith-main-6.png);background-position:-1378px -212px;width:105px;height:105px}.Mount_Body_Gryphon-Skeleton{background-image:url(spritesmith-main-6.png);background-position:-1378px -318px;width:105px;height:105px}.Mount_Body_Gryphon-White{background-image:url(spritesmith-main-6.png);background-position:-1378px -424px;width:105px;height:105px}.Mount_Body_Gryphon-Zombie{background-image:url(spritesmith-main-6.png);background-position:-1378px -530px;width:105px;height:105px}.Mount_Body_Hedgehog-Base{background-image:url(spritesmith-main-6.png);background-position:-1378px -636px;width:105px;height:105px}.Mount_Body_Hedgehog-CottonCandyBlue{background-image:url(spritesmith-main-6.png);background-position:-1378px -742px;width:105px;height:105px}.Mount_Body_Hedgehog-CottonCandyPink{background-image:url(spritesmith-main-6.png);background-position:-1378px -848px;width:105px;height:105px}.Mount_Body_Hedgehog-Desert{background-image:url(spritesmith-main-6.png);background-position:-1378px -954px;width:105px;height:105px}.Mount_Body_Hedgehog-Golden{background-image:url(spritesmith-main-6.png);background-position:-1378px -1060px;width:105px;height:105px}.Mount_Body_Hedgehog-Red{background-image:url(spritesmith-main-6.png);background-position:-1378px -1166px;width:105px;height:105px}.Mount_Body_Hedgehog-Shade{background-image:url(spritesmith-main-6.png);background-position:0 -1317px;width:105px;height:105px}.Mount_Body_Hedgehog-Skeleton{background-image:url(spritesmith-main-6.png);background-position:-106px -1317px;width:105px;height:105px}.Mount_Body_Hedgehog-White{background-image:url(spritesmith-main-6.png);background-position:-212px -1317px;width:105px;height:105px}.Mount_Body_Hedgehog-Zombie{background-image:url(spritesmith-main-6.png);background-position:-318px -1317px;width:105px;height:105px}.Mount_Body_Horse-Base{background-image:url(spritesmith-main-6.png);background-position:-424px -1317px;width:105px;height:105px}.Mount_Body_Horse-CottonCandyBlue{background-image:url(spritesmith-main-6.png);background-position:-530px -1317px;width:105px;height:105px}.Mount_Body_Horse-CottonCandyPink{background-image:url(spritesmith-main-6.png);background-position:-636px -1317px;width:105px;height:105px}.Mount_Body_Horse-Desert{background-image:url(spritesmith-main-6.png);background-position:-742px -1317px;width:105px;height:105px}.Mount_Body_Horse-Golden{background-image:url(spritesmith-main-6.png);background-position:-848px -1317px;width:105px;height:105px}.Mount_Body_Horse-Red{background-image:url(spritesmith-main-6.png);background-position:-954px -1317px;width:105px;height:105px}.Mount_Body_Horse-Shade{background-image:url(spritesmith-main-6.png);background-position:-1060px -1317px;width:105px;height:105px}.Mount_Body_Horse-Skeleton{background-image:url(spritesmith-main-6.png);background-position:-1166px -1317px;width:105px;height:105px}.Mount_Body_Horse-White{background-image:url(spritesmith-main-6.png);background-position:-1272px -1317px;width:105px;height:105px}.Mount_Body_Horse-Zombie{background-image:url(spritesmith-main-6.png);background-position:-1378px -1317px;width:105px;height:105px}.Mount_Body_JackOLantern-Base{background-image:url(spritesmith-main-6.png);background-position:-539px -469px;width:90px;height:105px}.Mount_Body_LionCub-Base{background-image:url(spritesmith-main-6.png);background-position:-1484px -106px;width:105px;height:105px}.Mount_Body_LionCub-CottonCandyBlue{background-image:url(spritesmith-main-6.png);background-position:-1484px -212px;width:105px;height:105px}.Mount_Body_LionCub-CottonCandyPink{background-image:url(spritesmith-main-6.png);background-position:-1484px -318px;width:105px;height:105px}.Mount_Body_LionCub-Desert{background-image:url(spritesmith-main-6.png);background-position:-1484px -424px;width:105px;height:105px}.Mount_Body_LionCub-Ethereal{background-image:url(spritesmith-main-6.png);background-position:-1484px -530px;width:105px;height:105px}.Mount_Body_LionCub-Golden{background-image:url(spritesmith-main-6.png);background-position:-1484px -636px;width:105px;height:105px}.Mount_Body_LionCub-Peppermint{background-image:url(spritesmith-main-6.png);background-position:-1484px -742px;width:105px;height:105px}.Mount_Body_LionCub-Red{background-image:url(spritesmith-main-6.png);background-position:-1484px -848px;width:105px;height:105px}.Mount_Body_LionCub-Shade{background-image:url(spritesmith-main-6.png);background-position:-1484px -954px;width:105px;height:105px}.Mount_Body_LionCub-Skeleton{background-image:url(spritesmith-main-6.png);background-position:0 -469px;width:111px;height:105px}.Mount_Body_LionCub-Spooky{background-image:url(spritesmith-main-6.png);background-position:-1484px -1166px;width:105px;height:105px}.Mount_Body_LionCub-White{background-image:url(spritesmith-main-6.png);background-position:-1484px -1272px;width:105px;height:105px}.Mount_Body_LionCub-Zombie{background-image:url(spritesmith-main-6.png);background-position:0 -1423px;width:105px;height:105px}.Mount_Body_Mammoth-Base{background-image:url(spritesmith-main-6.png);background-position:0 0;width:105px;height:123px}.Mount_Body_MantisShrimp-Base{background-image:url(spritesmith-main-6.png);background-position:-112px -469px;width:108px;height:105px}.Mount_Body_Octopus-Base{background-image:url(spritesmith-main-6.png);background-position:-318px -1423px;width:105px;height:105px}.Mount_Body_Octopus-CottonCandyBlue{background-image:url(spritesmith-main-6.png);background-position:-424px -1423px;width:105px;height:105px}.Mount_Body_Octopus-CottonCandyPink{background-image:url(spritesmith-main-6.png);background-position:-530px -1423px;width:105px;height:105px}.Mount_Body_Octopus-Desert{background-image:url(spritesmith-main-6.png);background-position:-636px -1423px;width:105px;height:105px}.Mount_Body_Octopus-Golden{background-image:url(spritesmith-main-6.png);background-position:-742px -1423px;width:105px;height:105px}.Mount_Body_Octopus-Red{background-image:url(spritesmith-main-6.png);background-position:-848px -1423px;width:105px;height:105px}.Mount_Body_Octopus-Shade{background-image:url(spritesmith-main-6.png);background-position:-954px -1423px;width:105px;height:105px}.Mount_Body_Octopus-Skeleton{background-image:url(spritesmith-main-6.png);background-position:-1060px -1423px;width:105px;height:105px}.Mount_Body_Octopus-White{background-image:url(spritesmith-main-6.png);background-position:-1166px -1423px;width:105px;height:105px}.Mount_Body_Octopus-Zombie{background-image:url(spritesmith-main-6.png);background-position:-1272px -1423px;width:105px;height:105px}.Mount_Body_Orca-Base{background-image:url(spritesmith-main-6.png);background-position:-1378px -1423px;width:105px;height:105px}.Mount_Body_Owl-Base{background-image:url(spritesmith-main-6.png);background-position:-1484px -1423px;width:105px;height:105px}.Mount_Body_Owl-CottonCandyBlue{background-image:url(spritesmith-main-6.png);background-position:-1590px 0;width:105px;height:105px}.Mount_Body_Owl-CottonCandyPink{background-image:url(spritesmith-main-6.png);background-position:-1590px -106px;width:105px;height:105px}.Mount_Body_Owl-Desert{background-image:url(spritesmith-main-6.png);background-position:-1590px -212px;width:105px;height:105px}.Mount_Body_Owl-Golden{background-image:url(spritesmith-main-6.png);background-position:-1590px -318px;width:105px;height:105px}.Mount_Body_Owl-Red{background-image:url(spritesmith-main-6.png);background-position:-1590px -424px;width:105px;height:105px}.Mount_Body_Owl-Shade{background-image:url(spritesmith-main-6.png);background-position:-1590px -530px;width:105px;height:105px}.Mount_Body_Owl-Skeleton{background-image:url(spritesmith-main-6.png);background-position:-1590px -636px;width:105px;height:105px}.Mount_Body_Owl-White{background-image:url(spritesmith-main-6.png);background-position:-1590px -742px;width:105px;height:105px}.Mount_Body_Owl-Zombie{background-image:url(spritesmith-main-6.png);background-position:-1590px -848px;width:105px;height:105px}.Mount_Body_PandaCub-Base{background-image:url(spritesmith-main-6.png);background-position:-1590px -954px;width:105px;height:105px}.Mount_Body_PandaCub-CottonCandyBlue{background-image:url(spritesmith-main-6.png);background-position:-1590px -1060px;width:105px;height:105px}.Mount_Body_PandaCub-CottonCandyPink{background-image:url(spritesmith-main-6.png);background-position:-1590px -1166px;width:105px;height:105px}.Mount_Body_PandaCub-Desert{background-image:url(spritesmith-main-6.png);background-position:-1590px -1272px;width:105px;height:105px}.Mount_Body_PandaCub-Golden{background-image:url(spritesmith-main-6.png);background-position:-1590px -1378px;width:105px;height:105px}.Mount_Body_PandaCub-Peppermint{background-image:url(spritesmith-main-6.png);background-position:0 -1529px;width:105px;height:105px}.Mount_Body_PandaCub-Red{background-image:url(spritesmith-main-6.png);background-position:-106px -1529px;width:105px;height:105px}.Mount_Body_PandaCub-Shade{background-image:url(spritesmith-main-6.png);background-position:-212px -1529px;width:105px;height:105px}.Mount_Body_PandaCub-Skeleton{background-image:url(spritesmith-main-6.png);background-position:-318px -1529px;width:105px;height:105px}.Mount_Body_PandaCub-Spooky{background-image:url(spritesmith-main-6.png);background-position:-424px -1529px;width:105px;height:105px}.Mount_Body_PandaCub-White{background-image:url(spritesmith-main-6.png);background-position:-530px -1529px;width:105px;height:105px}.Mount_Body_PandaCub-Zombie{background-image:url(spritesmith-main-6.png);background-position:-636px -1529px;width:105px;height:105px}.Mount_Body_Parrot-Base{background-image:url(spritesmith-main-6.png);background-position:-742px -1529px;width:105px;height:105px}.Mount_Body_Parrot-CottonCandyBlue{background-image:url(spritesmith-main-6.png);background-position:-848px -1529px;width:105px;height:105px}.Mount_Body_Parrot-CottonCandyPink{background-image:url(spritesmith-main-6.png);background-position:-954px -1529px;width:105px;height:105px}.Mount_Body_Parrot-Desert{background-image:url(spritesmith-main-6.png);background-position:-1060px -1529px;width:105px;height:105px}.Mount_Body_Parrot-Golden{background-image:url(spritesmith-main-6.png);background-position:-1166px -1529px;width:105px;height:105px}.Mount_Body_Parrot-Red{background-image:url(spritesmith-main-6.png);background-position:-1272px -1529px;width:105px;height:105px}.Mount_Body_Parrot-Shade{background-image:url(spritesmith-main-6.png);background-position:-1378px -1529px;width:105px;height:105px}.Mount_Body_Parrot-Skeleton{background-image:url(spritesmith-main-6.png);background-position:-1484px 0;width:105px;height:105px}.Mount_Body_Parrot-White{background-image:url(spritesmith-main-6.png);background-position:-1272px -212px;width:105px;height:105px}.Mount_Body_Parrot-Zombie{background-image:url(spritesmith-main-6.png);background-position:-433px -469px;width:105px;height:105px}.Mount_Body_Penguin-Base{background-image:url(spritesmith-main-6.png);background-position:-327px -469px;width:105px;height:105px}.Mount_Body_Penguin-CottonCandyBlue{background-image:url(spritesmith-main-6.png);background-position:-221px -469px;width:105px;height:105px}.Mount_Body_Penguin-CottonCandyPink{background-image:url(spritesmith-main-6.png);background-position:-530px -327px;width:105px;height:105px}.Mount_Body_Penguin-Desert{background-image:url(spritesmith-main-6.png);background-position:-530px -221px;width:105px;height:105px}.Mount_Body_Penguin-Golden{background-image:url(spritesmith-main-6.png);background-position:-212px -1423px;width:105px;height:105px}.Mount_Body_Penguin-Red{background-image:url(spritesmith-main-6.png);background-position:-106px -1423px;width:105px;height:105px}.Mount_Body_Penguin-Shade{background-image:url(spritesmith-main-6.png);background-position:-1484px -1060px;width:105px;height:105px}.Mount_Body_Penguin-Skeleton{background-image:url(spritesmith-main-6.png);background-position:-742px -1211px;width:105px;height:105px}.Mount_Body_Penguin-White{background-image:url(spritesmith-main-6.png);background-position:-636px -1211px;width:105px;height:105px}.Mount_Body_Penguin-Zombie{background-image:url(spritesmith-main-6.png);background-position:-530px -1211px;width:105px;height:105px}.Mount_Body_Phoenix-Base{background-image:url(spritesmith-main-6.png);background-position:-424px -1211px;width:105px;height:105px}.Mount_Body_Rat-Base{background-image:url(spritesmith-main-6.png);background-position:-318px -1211px;width:105px;height:105px}.Mount_Body_Rat-CottonCandyBlue{background-image:url(spritesmith-main-6.png);background-position:-212px -1211px;width:105px;height:105px}.Mount_Body_Rat-CottonCandyPink{background-image:url(spritesmith-main-6.png);background-position:-106px -1211px;width:105px;height:105px}.Mount_Body_Rat-Desert{background-image:url(spritesmith-main-6.png);background-position:0 -1211px;width:105px;height:105px}.Mount_Body_Rat-Golden{background-image:url(spritesmith-main-6.png);background-position:-1272px -1060px;width:105px;height:105px}.Mount_Body_Rat-Red{background-image:url(spritesmith-main-6.png);background-position:-1272px -954px;width:105px;height:105px}.Mount_Body_Rat-Shade{background-image:url(spritesmith-main-6.png);background-position:-424px -893px;width:105px;height:105px}.Mount_Body_Rat-Skeleton{background-image:url(spritesmith-main-6.png);background-position:-318px -893px;width:105px;height:105px}.Mount_Body_Rat-White{background-image:url(spritesmith-main-6.png);background-position:-212px -893px;width:105px;height:105px}.Mount_Body_Rat-Zombie{background-image:url(spritesmith-main-6.png);background-position:-106px -893px;width:105px;height:105px}.Mount_Body_Rock-Base{background-image:url(spritesmith-main-6.png);background-position:0 -893px;width:105px;height:105px}.Mount_Body_Rock-CottonCandyBlue{background-image:url(spritesmith-main-6.png);background-position:-954px -742px;width:105px;height:105px}.Mount_Body_Rock-CottonCandyPink{background-image:url(spritesmith-main-6.png);background-position:-954px -636px;width:105px;height:105px}.Mount_Body_Rock-Desert{background-image:url(spritesmith-main-6.png);background-position:-954px -530px;width:105px;height:105px}.Mount_Body_Rock-Golden{background-image:url(spritesmith-main-6.png);background-position:-954px -424px;width:105px;height:105px}.Mount_Body_Rock-Red{background-image:url(spritesmith-main-6.png);background-position:-954px -318px;width:105px;height:105px}.Mount_Body_Rock-Shade{background-image:url(spritesmith-main-7.png);background-position:-998px -530px;width:105px;height:105px}.Mount_Body_Rock-Skeleton{background-image:url(spritesmith-main-7.png);background-position:-954px -1113px;width:105px;height:105px}.Mount_Body_Rock-White{background-image:url(spritesmith-main-7.png);background-position:-998px -636px;width:105px;height:105px}.Mount_Body_Rock-Zombie{background-image:url(spritesmith-main-7.png);background-position:-998px -742px;width:105px;height:105px}.Mount_Body_Rooster-Base{background-image:url(spritesmith-main-7.png);background-position:0 -901px;width:105px;height:105px}.Mount_Body_Rooster-CottonCandyBlue{background-image:url(spritesmith-main-7.png);background-position:-106px -901px;width:105px;height:105px}.Mount_Body_Rooster-CottonCandyPink{background-image:url(spritesmith-main-7.png);background-position:-212px -901px;width:105px;height:105px}.Mount_Body_Rooster-Desert{background-image:url(spritesmith-main-7.png);background-position:-318px -901px;width:105px;height:105px}.Mount_Body_Rooster-Golden{background-image:url(spritesmith-main-7.png);background-position:-424px -901px;width:105px;height:105px}.Mount_Body_Rooster-Red{background-image:url(spritesmith-main-7.png);background-position:-530px -901px;width:105px;height:105px}.Mount_Body_Rooster-Shade{background-image:url(spritesmith-main-7.png);background-position:-636px -901px;width:105px;height:105px}.Mount_Body_Rooster-Skeleton{background-image:url(spritesmith-main-7.png);background-position:-1210px 0;width:105px;height:105px}.Mount_Body_Rooster-White{background-image:url(spritesmith-main-7.png);background-position:-1210px -106px;width:105px;height:105px}.Mount_Body_Rooster-Zombie{background-image:url(spritesmith-main-7.png);background-position:-1210px -212px;width:105px;height:105px}.Mount_Body_Seahorse-Base{background-image:url(spritesmith-main-7.png);background-position:-1210px -318px;width:105px;height:105px}.Mount_Body_Seahorse-CottonCandyBlue{background-image:url(spritesmith-main-7.png);background-position:-1210px -424px;width:105px;height:105px}.Mount_Body_Seahorse-CottonCandyPink{background-image:url(spritesmith-main-7.png);background-position:-1210px -530px;width:105px;height:105px}.Mount_Body_Seahorse-Desert{background-image:url(spritesmith-main-7.png);background-position:-1210px -636px;width:105px;height:105px}.Mount_Body_Seahorse-Golden{background-image:url(spritesmith-main-7.png);background-position:-1210px -742px;width:105px;height:105px}.Mount_Body_Seahorse-Red{background-image:url(spritesmith-main-7.png);background-position:-1210px -848px;width:105px;height:105px}.Mount_Body_Seahorse-Shade{background-image:url(spritesmith-main-7.png);background-position:-1210px -954px;width:105px;height:105px}.Mount_Body_Seahorse-Skeleton{background-image:url(spritesmith-main-7.png);background-position:0 -1113px;width:105px;height:105px}.Mount_Body_Seahorse-White{background-image:url(spritesmith-main-7.png);background-position:-106px -1113px;width:105px;height:105px}.Mount_Body_Seahorse-Zombie{background-image:url(spritesmith-main-7.png);background-position:-1422px -1166px;width:105px;height:105px}.Mount_Body_Sheep-Base{background-image:url(spritesmith-main-7.png);background-position:0 -1325px;width:105px;height:105px}.Mount_Body_Sheep-CottonCandyBlue{background-image:url(spritesmith-main-7.png);background-position:-106px -1325px;width:105px;height:105px}.Mount_Body_Sheep-CottonCandyPink{background-image:url(spritesmith-main-7.png);background-position:-212px -1325px;width:105px;height:105px}.Mount_Body_Sheep-Desert{background-image:url(spritesmith-main-7.png);background-position:-318px -1325px;width:105px;height:105px}.Mount_Body_Sheep-Golden{background-image:url(spritesmith-main-7.png);background-position:-424px -1325px;width:105px;height:105px}.Mount_Body_Sheep-Red{background-image:url(spritesmith-main-7.png);background-position:-530px -1325px;width:105px;height:105px}.Mount_Body_Sheep-Shade{background-image:url(spritesmith-main-7.png);background-position:-636px -1325px;width:105px;height:105px}.Mount_Body_Sheep-Skeleton{background-image:url(spritesmith-main-7.png);background-position:-742px -1325px;width:105px;height:105px}.Mount_Body_Sheep-White{background-image:url(spritesmith-main-7.png);background-position:-848px -1325px;width:105px;height:105px}.Mount_Body_Sheep-Zombie{background-image:url(spritesmith-main-7.png);background-position:-954px -1537px;width:105px;height:105px}.Mount_Body_Slime-Base{background-image:url(spritesmith-main-7.png);background-position:-1060px -1537px;width:105px;height:105px}.Mount_Body_Slime-CottonCandyBlue{background-image:url(spritesmith-main-7.png);background-position:-1166px -1537px;width:105px;height:105px}.Mount_Body_Slime-CottonCandyPink{background-image:url(spritesmith-main-7.png);background-position:-1272px -1537px;width:105px;height:105px}.Mount_Body_Slime-Desert{background-image:url(spritesmith-main-7.png);background-position:-1378px -1537px;width:105px;height:105px}.Mount_Body_Slime-Golden{background-image:url(spritesmith-main-7.png);background-position:-1484px -1537px;width:105px;height:105px}.Mount_Body_Slime-Red{background-image:url(spritesmith-main-7.png);background-position:-1590px -1537px;width:105px;height:105px}.Mount_Body_Slime-Shade{background-image:url(spritesmith-main-7.png);background-position:-1740px 0;width:105px;height:105px}.Mount_Body_Slime-Skeleton{background-image:url(spritesmith-main-7.png);background-position:-1740px -106px;width:105px;height:105px}.Mount_Body_Slime-White{background-image:url(spritesmith-main-7.png);background-position:-1740px -212px;width:105px;height:105px}.Mount_Body_Slime-Zombie{background-image:url(spritesmith-main-7.png);background-position:-892px 0;width:105px;height:105px}.Mount_Body_Snake-Base{background-image:url(spritesmith-main-7.png);background-position:-892px -106px;width:105px;height:105px}.Mount_Body_Snake-CottonCandyBlue{background-image:url(spritesmith-main-7.png);background-position:-892px -212px;width:105px;height:105px}.Mount_Body_Snake-CottonCandyPink{background-image:url(spritesmith-main-7.png);background-position:-892px -318px;width:105px;height:105px}.Mount_Body_Snake-Desert{background-image:url(spritesmith-main-7.png);background-position:-892px -424px;width:105px;height:105px}.Mount_Body_Snake-Golden{background-image:url(spritesmith-main-7.png);background-position:-892px -530px;width:105px;height:105px}.Mount_Body_Snake-Red{background-image:url(spritesmith-main-7.png);background-position:-892px -636px;width:105px;height:105px}.Mount_Body_Snake-Shade{background-image:url(spritesmith-main-7.png);background-position:0 -795px;width:105px;height:105px}.Mount_Body_Snake-Skeleton{background-image:url(spritesmith-main-7.png);background-position:-106px -795px;width:105px;height:105px}.Mount_Body_Snake-White{background-image:url(spritesmith-main-7.png);background-position:-212px -795px;width:105px;height:105px}.Mount_Body_Snake-Zombie{background-image:url(spritesmith-main-7.png);background-position:-318px -795px;width:105px;height:105px}.Mount_Body_Spider-Base{background-image:url(spritesmith-main-7.png);background-position:-424px -795px;width:105px;height:105px}.Mount_Body_Spider-CottonCandyBlue{background-image:url(spritesmith-main-7.png);background-position:-530px -795px;width:105px;height:105px}.Mount_Body_Spider-CottonCandyPink{background-image:url(spritesmith-main-7.png);background-position:-636px -795px;width:105px;height:105px}.Mount_Body_Spider-Desert{background-image:url(spritesmith-main-7.png);background-position:-742px -795px;width:105px;height:105px}.Mount_Body_Spider-Golden{background-image:url(spritesmith-main-7.png);background-position:-848px -795px;width:105px;height:105px}.Mount_Body_Spider-Red{background-image:url(spritesmith-main-7.png);background-position:-998px 0;width:105px;height:105px}.Mount_Body_Spider-Shade{background-image:url(spritesmith-main-7.png);background-position:-998px -106px;width:105px;height:105px}.Mount_Body_Spider-Skeleton{background-image:url(spritesmith-main-7.png);background-position:-998px -212px;width:105px;height:105px}.Mount_Body_Spider-White{background-image:url(spritesmith-main-7.png);background-position:-998px -318px;width:105px;height:105px}.Mount_Body_Spider-Zombie{background-image:url(spritesmith-main-7.png);background-position:-998px -424px;width:105px;height:105px}.Mount_Body_TRex-Base{background-image:url(spritesmith-main-7.png);background-position:0 -544px;width:135px;height:135px}.Mount_Body_TRex-CottonCandyBlue{background-image:url(spritesmith-main-7.png);background-position:-408px -272px;width:135px;height:135px}.Mount_Body_TRex-CottonCandyPink{background-image:url(spritesmith-main-7.png);background-position:0 -136px;width:135px;height:135px}.Mount_Body_TRex-Desert{background-image:url(spritesmith-main-7.png);background-position:-136px -136px;width:135px;height:135px}.Mount_Body_TRex-Golden{background-image:url(spritesmith-main-7.png);background-position:-272px 0;width:135px;height:135px}.Mount_Body_TRex-Red{background-image:url(spritesmith-main-7.png);background-position:-272px -136px;width:135px;height:135px}.Mount_Body_TRex-Shade{background-image:url(spritesmith-main-7.png);background-position:0 -272px;width:135px;height:135px}.Mount_Body_TRex-Skeleton{background-image:url(spritesmith-main-7.png);background-position:-136px -272px;width:135px;height:135px}.Mount_Body_TRex-White{background-image:url(spritesmith-main-7.png);background-position:-272px -272px;width:135px;height:135px}.Mount_Body_TRex-Zombie{background-image:url(spritesmith-main-7.png);background-position:-408px 0;width:135px;height:135px}.Mount_Body_TigerCub-Base{background-image:url(spritesmith-main-7.png);background-position:-742px -901px;width:105px;height:105px}.Mount_Body_TigerCub-CottonCandyBlue{background-image:url(spritesmith-main-7.png);background-position:-848px -901px;width:105px;height:105px}.Mount_Body_TigerCub-CottonCandyPink{background-image:url(spritesmith-main-7.png);background-position:-954px -901px;width:105px;height:105px}.Mount_Body_TigerCub-Desert{background-image:url(spritesmith-main-7.png);background-position:-1104px 0;width:105px;height:105px}.Mount_Body_TigerCub-Golden{background-image:url(spritesmith-main-7.png);background-position:-1104px -106px;width:105px;height:105px}.Mount_Body_TigerCub-Peppermint{background-image:url(spritesmith-main-7.png);background-position:-1104px -212px;width:105px;height:105px}.Mount_Body_TigerCub-Red{background-image:url(spritesmith-main-7.png);background-position:-1104px -318px;width:105px;height:105px}.Mount_Body_TigerCub-Shade{background-image:url(spritesmith-main-7.png);background-position:-1104px -424px;width:105px;height:105px}.Mount_Body_TigerCub-Skeleton{background-image:url(spritesmith-main-7.png);background-position:-1104px -530px;width:105px;height:105px}.Mount_Body_TigerCub-Spooky{background-image:url(spritesmith-main-7.png);background-position:-1104px -636px;width:105px;height:105px}.Mount_Body_TigerCub-White{background-image:url(spritesmith-main-7.png);background-position:-1104px -742px;width:105px;height:105px}.Mount_Body_TigerCub-Zombie{background-image:url(spritesmith-main-7.png);background-position:-1104px -848px;width:105px;height:105px}.Mount_Body_Turkey-Base{background-image:url(spritesmith-main-7.png);background-position:0 -1007px;width:105px;height:105px}.Mount_Body_Whale-Base{background-image:url(spritesmith-main-7.png);background-position:-106px -1007px;width:105px;height:105px}.Mount_Body_Whale-CottonCandyBlue{background-image:url(spritesmith-main-7.png);background-position:-212px -1007px;width:105px;height:105px}.Mount_Body_Whale-CottonCandyPink{background-image:url(spritesmith-main-7.png);background-position:-318px -1007px;width:105px;height:105px}.Mount_Body_Whale-Desert{background-image:url(spritesmith-main-7.png);background-position:-424px -1007px;width:105px;height:105px}.Mount_Body_Whale-Golden{background-image:url(spritesmith-main-7.png);background-position:-530px -1007px;width:105px;height:105px}.Mount_Body_Whale-Red{background-image:url(spritesmith-main-7.png);background-position:-636px -1007px;width:105px;height:105px}.Mount_Body_Whale-Shade{background-image:url(spritesmith-main-7.png);background-position:-742px -1007px;width:105px;height:105px}.Mount_Body_Whale-Skeleton{background-image:url(spritesmith-main-7.png);background-position:-848px -1007px;width:105px;height:105px}.Mount_Body_Whale-White{background-image:url(spritesmith-main-7.png);background-position:-954px -1007px;width:105px;height:105px}.Mount_Body_Whale-Zombie{background-image:url(spritesmith-main-7.png);background-position:-1060px -1007px;width:105px;height:105px}.Mount_Body_Wolf-Base{background-image:url(spritesmith-main-7.png);background-position:-408px -136px;width:135px;height:135px}.Mount_Body_Wolf-CottonCandyBlue{background-image:url(spritesmith-main-7.png);background-position:0 0;width:135px;height:135px}.Mount_Body_Wolf-CottonCandyPink{background-image:url(spritesmith-main-7.png);background-position:0 -408px;width:135px;height:135px}.Mount_Body_Wolf-Desert{background-image:url(spritesmith-main-7.png);background-position:-136px -408px;width:135px;height:135px}.Mount_Body_Wolf-Golden{background-image:url(spritesmith-main-7.png);background-position:-272px -408px;width:135px;height:135px}.Mount_Body_Wolf-Peppermint{background-image:url(spritesmith-main-7.png);background-position:-408px -408px;width:135px;height:135px}.Mount_Body_Wolf-Red{background-image:url(spritesmith-main-7.png);background-position:-544px 0;width:135px;height:135px}.Mount_Body_Wolf-Shade{background-image:url(spritesmith-main-7.png);background-position:-544px -136px;width:135px;height:135px}.Mount_Body_Wolf-Skeleton{background-image:url(spritesmith-main-7.png);background-position:-544px -272px;width:135px;height:135px}.Mount_Body_Wolf-Spooky{background-image:url(spritesmith-main-7.png);background-position:-544px -408px;width:135px;height:135px}.Mount_Body_Wolf-White{background-image:url(spritesmith-main-7.png);background-position:-136px 0;width:135px;height:135px}.Mount_Body_Wolf-Zombie{background-image:url(spritesmith-main-7.png);background-position:-136px -544px;width:135px;height:135px}.Mount_Head_BearCub-Base{background-image:url(spritesmith-main-7.png);background-position:-212px -1113px;width:105px;height:105px}.Mount_Head_BearCub-CottonCandyBlue{background-image:url(spritesmith-main-7.png);background-position:-318px -1113px;width:105px;height:105px}.Mount_Head_BearCub-CottonCandyPink{background-image:url(spritesmith-main-7.png);background-position:-424px -1113px;width:105px;height:105px}.Mount_Head_BearCub-Desert{background-image:url(spritesmith-main-7.png);background-position:-530px -1113px;width:105px;height:105px}.Mount_Head_BearCub-Golden{background-image:url(spritesmith-main-7.png);background-position:-636px -1113px;width:105px;height:105px}.Mount_Head_BearCub-Peppermint{background-image:url(spritesmith-main-7.png);background-position:-742px -1113px;width:105px;height:105px}.Mount_Head_BearCub-Polar{background-image:url(spritesmith-main-7.png);background-position:-848px -1113px;width:105px;height:105px}.Mount_Head_BearCub-Red{background-image:url(spritesmith-main-7.png);background-position:-742px -680px;width:105px;height:105px}.Mount_Head_BearCub-Shade{background-image:url(spritesmith-main-7.png);background-position:-1060px -1113px;width:105px;height:105px}.Mount_Head_BearCub-Skeleton{background-image:url(spritesmith-main-7.png);background-position:-1166px -1113px;width:105px;height:105px}.Mount_Head_BearCub-Spooky{background-image:url(spritesmith-main-7.png);background-position:-1316px 0;width:105px;height:105px}.Mount_Head_BearCub-White{background-image:url(spritesmith-main-7.png);background-position:-1316px -106px;width:105px;height:105px}.Mount_Head_BearCub-Zombie{background-image:url(spritesmith-main-7.png);background-position:-1316px -212px;width:105px;height:105px}.Mount_Head_Bunny-Base{background-image:url(spritesmith-main-7.png);background-position:-1316px -318px;width:105px;height:105px}.Mount_Head_Bunny-CottonCandyBlue{background-image:url(spritesmith-main-7.png);background-position:-1316px -424px;width:105px;height:105px}.Mount_Head_Bunny-CottonCandyPink{background-image:url(spritesmith-main-7.png);background-position:-1316px -530px;width:105px;height:105px}.Mount_Head_Bunny-Desert{background-image:url(spritesmith-main-7.png);background-position:-1316px -636px;width:105px;height:105px}.Mount_Head_Bunny-Golden{background-image:url(spritesmith-main-7.png);background-position:-1316px -742px;width:105px;height:105px}.Mount_Head_Bunny-Red{background-image:url(spritesmith-main-7.png);background-position:-1316px -848px;width:105px;height:105px}.Mount_Head_Bunny-Shade{background-image:url(spritesmith-main-7.png);background-position:-1316px -954px;width:105px;height:105px}.Mount_Head_Bunny-Skeleton{background-image:url(spritesmith-main-7.png);background-position:-1316px -1060px;width:105px;height:105px}.Mount_Head_Bunny-White{background-image:url(spritesmith-main-7.png);background-position:0 -1219px;width:105px;height:105px}.Mount_Head_Bunny-Zombie{background-image:url(spritesmith-main-7.png);background-position:-106px -1219px;width:105px;height:105px}.Mount_Head_Cactus-Base{background-image:url(spritesmith-main-7.png);background-position:-212px -1219px;width:105px;height:105px}.Mount_Head_Cactus-CottonCandyBlue{background-image:url(spritesmith-main-7.png);background-position:-318px -1219px;width:105px;height:105px}.Mount_Head_Cactus-CottonCandyPink{background-image:url(spritesmith-main-7.png);background-position:-424px -1219px;width:105px;height:105px}.Mount_Head_Cactus-Desert{background-image:url(spritesmith-main-7.png);background-position:-530px -1219px;width:105px;height:105px}.Mount_Head_Cactus-Golden{background-image:url(spritesmith-main-7.png);background-position:-636px -1219px;width:105px;height:105px}.Mount_Head_Cactus-Peppermint{background-image:url(spritesmith-main-7.png);background-position:-742px -1219px;width:105px;height:105px}.Mount_Head_Cactus-Red{background-image:url(spritesmith-main-7.png);background-position:-848px -1219px;width:105px;height:105px}.Mount_Head_Cactus-Shade{background-image:url(spritesmith-main-7.png);background-position:-954px -1219px;width:105px;height:105px}.Mount_Head_Cactus-Skeleton{background-image:url(spritesmith-main-7.png);background-position:-1060px -1219px;width:105px;height:105px}.Mount_Head_Cactus-Spooky{background-image:url(spritesmith-main-7.png);background-position:-1166px -1219px;width:105px;height:105px}.Mount_Head_Cactus-White{background-image:url(spritesmith-main-7.png);background-position:-1272px -1219px;width:105px;height:105px}.Mount_Head_Cactus-Zombie{background-image:url(spritesmith-main-7.png);background-position:-1422px 0;width:105px;height:105px}.Mount_Head_Cheetah-Base{background-image:url(spritesmith-main-7.png);background-position:-1422px -106px;width:105px;height:105px}.Mount_Head_Cheetah-CottonCandyBlue{background-image:url(spritesmith-main-7.png);background-position:-1422px -212px;width:105px;height:105px}.Mount_Head_Cheetah-CottonCandyPink{background-image:url(spritesmith-main-7.png);background-position:-1422px -318px;width:105px;height:105px}.Mount_Head_Cheetah-Desert{background-image:url(spritesmith-main-7.png);background-position:-1422px -424px;width:105px;height:105px}.Mount_Head_Cheetah-Golden{background-image:url(spritesmith-main-7.png);background-position:-1422px -530px;width:105px;height:105px}.Mount_Head_Cheetah-Red{background-image:url(spritesmith-main-7.png);background-position:-1422px -636px;width:105px;height:105px}.Mount_Head_Cheetah-Shade{background-image:url(spritesmith-main-7.png);background-position:-1422px -742px;width:105px;height:105px}.Mount_Head_Cheetah-Skeleton{background-image:url(spritesmith-main-7.png);background-position:-1422px -848px;width:105px;height:105px}.Mount_Head_Cheetah-White{background-image:url(spritesmith-main-7.png);background-position:-1422px -954px;width:105px;height:105px}.Mount_Head_Cheetah-Zombie{background-image:url(spritesmith-main-7.png);background-position:-1422px -1060px;width:105px;height:105px}.Mount_Head_Cuttlefish-Base{background-image:url(spritesmith-main-7.png);background-position:-378px -544px;width:105px;height:114px}.Mount_Head_Cuttlefish-CottonCandyBlue{background-image:url(spritesmith-main-7.png);background-position:-484px -544px;width:105px;height:114px}.Mount_Head_Cuttlefish-CottonCandyPink{background-image:url(spritesmith-main-7.png);background-position:-680px 0;width:105px;height:114px}.Mount_Head_Cuttlefish-Desert{background-image:url(spritesmith-main-7.png);background-position:-680px -115px;width:105px;height:114px}.Mount_Head_Cuttlefish-Golden{background-image:url(spritesmith-main-7.png);background-position:-680px -230px;width:105px;height:114px}.Mount_Head_Cuttlefish-Red{background-image:url(spritesmith-main-7.png);background-position:-680px -345px;width:105px;height:114px}.Mount_Head_Cuttlefish-Shade{background-image:url(spritesmith-main-7.png);background-position:-680px -460px;width:105px;height:114px}.Mount_Head_Cuttlefish-Skeleton{background-image:url(spritesmith-main-7.png);background-position:-786px 0;width:105px;height:114px}.Mount_Head_Cuttlefish-White{background-image:url(spritesmith-main-7.png);background-position:-786px -115px;width:105px;height:114px}.Mount_Head_Cuttlefish-Zombie{background-image:url(spritesmith-main-7.png);background-position:-786px -230px;width:105px;height:114px}.Mount_Head_Deer-Base{background-image:url(spritesmith-main-7.png);background-position:-954px -1325px;width:105px;height:105px}.Mount_Head_Deer-CottonCandyBlue{background-image:url(spritesmith-main-7.png);background-position:-1060px -1325px;width:105px;height:105px}.Mount_Head_Deer-CottonCandyPink{background-image:url(spritesmith-main-7.png);background-position:-1166px -1325px;width:105px;height:105px}.Mount_Head_Deer-Desert{background-image:url(spritesmith-main-7.png);background-position:-1272px -1325px;width:105px;height:105px}.Mount_Head_Deer-Golden{background-image:url(spritesmith-main-7.png);background-position:-1378px -1325px;width:105px;height:105px}.Mount_Head_Deer-Red{background-image:url(spritesmith-main-7.png);background-position:-1528px 0;width:105px;height:105px}.Mount_Head_Deer-Shade{background-image:url(spritesmith-main-7.png);background-position:-1528px -106px;width:105px;height:105px}.Mount_Head_Deer-Skeleton{background-image:url(spritesmith-main-7.png);background-position:-1528px -212px;width:105px;height:105px}.Mount_Head_Deer-White{background-image:url(spritesmith-main-7.png);background-position:-1528px -318px;width:105px;height:105px}.Mount_Head_Deer-Zombie{background-image:url(spritesmith-main-7.png);background-position:-1528px -424px;width:105px;height:105px}.Mount_Head_Dragon-Base{background-image:url(spritesmith-main-7.png);background-position:-1528px -530px;width:105px;height:105px}.Mount_Head_Dragon-CottonCandyBlue{background-image:url(spritesmith-main-7.png);background-position:-1528px -636px;width:105px;height:105px}.Mount_Head_Dragon-CottonCandyPink{background-image:url(spritesmith-main-7.png);background-position:-1528px -742px;width:105px;height:105px}.Mount_Head_Dragon-Desert{background-image:url(spritesmith-main-7.png);background-position:-1528px -848px;width:105px;height:105px}.Mount_Head_Dragon-Golden{background-image:url(spritesmith-main-7.png);background-position:-1528px -954px;width:105px;height:105px}.Mount_Head_Dragon-Peppermint{background-image:url(spritesmith-main-7.png);background-position:-1528px -1060px;width:105px;height:105px}.Mount_Head_Dragon-Red{background-image:url(spritesmith-main-7.png);background-position:-1528px -1166px;width:105px;height:105px}.Mount_Head_Dragon-Shade{background-image:url(spritesmith-main-7.png);background-position:-1528px -1272px;width:105px;height:105px}.Mount_Head_Dragon-Skeleton{background-image:url(spritesmith-main-7.png);background-position:0 -1431px;width:105px;height:105px}.Mount_Head_Dragon-Spooky{background-image:url(spritesmith-main-7.png);background-position:-106px -1431px;width:105px;height:105px}.Mount_Head_Dragon-White{background-image:url(spritesmith-main-7.png);background-position:-212px -1431px;width:105px;height:105px}.Mount_Head_Dragon-Zombie{background-image:url(spritesmith-main-7.png);background-position:-318px -1431px;width:105px;height:105px}.Mount_Head_Egg-Base{background-image:url(spritesmith-main-7.png);background-position:-424px -1431px;width:105px;height:105px}.Mount_Head_Egg-CottonCandyBlue{background-image:url(spritesmith-main-7.png);background-position:-530px -1431px;width:105px;height:105px}.Mount_Head_Egg-CottonCandyPink{background-image:url(spritesmith-main-7.png);background-position:-636px -1431px;width:105px;height:105px}.Mount_Head_Egg-Desert{background-image:url(spritesmith-main-7.png);background-position:-742px -1431px;width:105px;height:105px}.Mount_Head_Egg-Golden{background-image:url(spritesmith-main-7.png);background-position:-848px -1431px;width:105px;height:105px}.Mount_Head_Egg-Red{background-image:url(spritesmith-main-7.png);background-position:-954px -1431px;width:105px;height:105px}.Mount_Head_Egg-Shade{background-image:url(spritesmith-main-7.png);background-position:-1060px -1431px;width:105px;height:105px}.Mount_Head_Egg-Skeleton{background-image:url(spritesmith-main-7.png);background-position:-1166px -1431px;width:105px;height:105px}.Mount_Head_Egg-White{background-image:url(spritesmith-main-7.png);background-position:-1272px -1431px;width:105px;height:105px}.Mount_Head_Egg-Zombie{background-image:url(spritesmith-main-7.png);background-position:-1378px -1431px;width:105px;height:105px}.Mount_Head_FlyingPig-Base{background-image:url(spritesmith-main-7.png);background-position:-1484px -1431px;width:105px;height:105px}.Mount_Head_FlyingPig-CottonCandyBlue{background-image:url(spritesmith-main-7.png);background-position:-1634px 0;width:105px;height:105px}.Mount_Head_FlyingPig-CottonCandyPink{background-image:url(spritesmith-main-7.png);background-position:-1634px -106px;width:105px;height:105px}.Mount_Head_FlyingPig-Desert{background-image:url(spritesmith-main-7.png);background-position:-1634px -212px;width:105px;height:105px}.Mount_Head_FlyingPig-Golden{background-image:url(spritesmith-main-7.png);background-position:-1634px -318px;width:105px;height:105px}.Mount_Head_FlyingPig-Peppermint{background-image:url(spritesmith-main-7.png);background-position:-1634px -424px;width:105px;height:105px}.Mount_Head_FlyingPig-Red{background-image:url(spritesmith-main-7.png);background-position:-1634px -530px;width:105px;height:105px}.Mount_Head_FlyingPig-Shade{background-image:url(spritesmith-main-7.png);background-position:-1634px -636px;width:105px;height:105px}.Mount_Head_FlyingPig-Skeleton{background-image:url(spritesmith-main-7.png);background-position:-1634px -742px;width:105px;height:105px}.Mount_Head_FlyingPig-Spooky{background-image:url(spritesmith-main-7.png);background-position:-1634px -848px;width:105px;height:105px}.Mount_Head_FlyingPig-White{background-image:url(spritesmith-main-7.png);background-position:-1634px -954px;width:105px;height:105px}.Mount_Head_FlyingPig-Zombie{background-image:url(spritesmith-main-7.png);background-position:-1634px -1060px;width:105px;height:105px}.Mount_Head_Fox-Base{background-image:url(spritesmith-main-7.png);background-position:-1634px -1166px;width:105px;height:105px}.Mount_Head_Fox-CottonCandyBlue{background-image:url(spritesmith-main-7.png);background-position:-1634px -1272px;width:105px;height:105px}.Mount_Head_Fox-CottonCandyPink{background-image:url(spritesmith-main-7.png);background-position:-1634px -1378px;width:105px;height:105px}.Mount_Head_Fox-Desert{background-image:url(spritesmith-main-7.png);background-position:0 -1537px;width:105px;height:105px}.Mount_Head_Fox-Golden{background-image:url(spritesmith-main-7.png);background-position:-106px -1537px;width:105px;height:105px}.Mount_Head_Fox-Peppermint{background-image:url(spritesmith-main-7.png);background-position:-212px -1537px;width:105px;height:105px}.Mount_Head_Fox-Red{background-image:url(spritesmith-main-7.png);background-position:-318px -1537px;width:105px;height:105px}.Mount_Head_Fox-Shade{background-image:url(spritesmith-main-7.png);background-position:-424px -1537px;width:105px;height:105px}.Mount_Head_Fox-Skeleton{background-image:url(spritesmith-main-7.png);background-position:-530px -1537px;width:105px;height:105px}.Mount_Head_Fox-Spooky{background-image:url(spritesmith-main-7.png);background-position:-636px -1537px;width:105px;height:105px}.Mount_Head_Fox-White{background-image:url(spritesmith-main-7.png);background-position:-742px -1537px;width:105px;height:105px}.Mount_Head_Fox-Zombie{background-image:url(spritesmith-main-7.png);background-position:-848px -1537px;width:105px;height:105px}.Mount_Head_Frog-Base{background-image:url(spritesmith-main-7.png);background-position:-786px -345px;width:105px;height:114px}.Mount_Head_Frog-CottonCandyBlue{background-image:url(spritesmith-main-7.png);background-position:-786px -460px;width:105px;height:114px}.Mount_Head_Frog-CottonCandyPink{background-image:url(spritesmith-main-7.png);background-position:0 -680px;width:105px;height:114px}.Mount_Head_Frog-Desert{background-image:url(spritesmith-main-7.png);background-position:-106px -680px;width:105px;height:114px}.Mount_Head_Frog-Golden{background-image:url(spritesmith-main-7.png);background-position:-212px -680px;width:105px;height:114px}.Mount_Head_Frog-Red{background-image:url(spritesmith-main-7.png);background-position:-318px -680px;width:105px;height:114px}.Mount_Head_Frog-Shade{background-image:url(spritesmith-main-7.png);background-position:-424px -680px;width:105px;height:114px}.Mount_Head_Frog-Skeleton{background-image:url(spritesmith-main-7.png);background-position:-530px -680px;width:105px;height:114px}.Mount_Head_Frog-White{background-image:url(spritesmith-main-7.png);background-position:-636px -680px;width:105px;height:114px}.Mount_Head_Frog-Zombie{background-image:url(spritesmith-main-7.png);background-position:-272px -544px;width:105px;height:114px}.Mount_Head_Gryphon-Base{background-image:url(spritesmith-main-7.png);background-position:-1740px -318px;width:105px;height:105px}.Mount_Head_Gryphon-CottonCandyBlue{background-image:url(spritesmith-main-7.png);background-position:-1740px -424px;width:105px;height:105px}.Mount_Head_Gryphon-CottonCandyPink{background-image:url(spritesmith-main-8.png);background-position:-680px -424px;width:105px;height:105px}.Mount_Head_Gryphon-Desert{background-image:url(spritesmith-main-8.png);background-position:-1210px -954px;width:105px;height:105px}.Mount_Head_Gryphon-Golden{background-image:url(spritesmith-main-8.png);background-position:-786px -106px;width:105px;height:105px}.Mount_Head_Gryphon-Red{background-image:url(spritesmith-main-8.png);background-position:-786px -530px;width:105px;height:105px}.Mount_Head_Gryphon-RoyalPurple{background-image:url(spritesmith-main-8.png);background-position:-786px -636px;width:105px;height:105px}.Mount_Head_Gryphon-Shade{background-image:url(spritesmith-main-8.png);background-position:-848px -1422px;width:105px;height:105px}.Mount_Head_Gryphon-Skeleton{background-image:url(spritesmith-main-8.png);background-position:-954px -1422px;width:105px;height:105px}.Mount_Head_Gryphon-White{background-image:url(spritesmith-main-8.png);background-position:-1060px -1422px;width:105px;height:105px}.Mount_Head_Gryphon-Zombie{background-image:url(spritesmith-main-8.png);background-position:-1166px -1422px;width:105px;height:105px}.Mount_Head_Hedgehog-Base{background-image:url(spritesmith-main-8.png);background-position:-1272px -1422px;width:105px;height:105px}.Mount_Head_Hedgehog-CottonCandyBlue{background-image:url(spritesmith-main-8.png);background-position:-1378px -1422px;width:105px;height:105px}.Mount_Head_Hedgehog-CottonCandyPink{background-image:url(spritesmith-main-8.png);background-position:-1528px 0;width:105px;height:105px}.Mount_Head_Hedgehog-Desert{background-image:url(spritesmith-main-8.png);background-position:-1528px -106px;width:105px;height:105px}.Mount_Head_Hedgehog-Golden{background-image:url(spritesmith-main-8.png);background-position:-1528px -212px;width:105px;height:105px}.Mount_Head_Hedgehog-Red{background-image:url(spritesmith-main-8.png);background-position:-1528px -318px;width:105px;height:105px}.Mount_Head_Hedgehog-Shade{background-image:url(spritesmith-main-8.png);background-position:-1378px -1528px;width:105px;height:105px}.Mount_Head_Hedgehog-Skeleton{background-image:url(spritesmith-main-8.png);background-position:-1484px -1528px;width:105px;height:105px}.Mount_Head_Hedgehog-White{background-image:url(spritesmith-main-8.png);background-position:-1634px 0;width:105px;height:105px}.Mount_Head_Hedgehog-Zombie{background-image:url(spritesmith-main-8.png);background-position:-1634px -106px;width:105px;height:105px}.Mount_Head_Horse-Base{background-image:url(spritesmith-main-8.png);background-position:-1634px -212px;width:105px;height:105px}.Mount_Head_Horse-CottonCandyBlue{background-image:url(spritesmith-main-8.png);background-position:-1634px -318px;width:105px;height:105px}.Mount_Head_Horse-CottonCandyPink{background-image:url(spritesmith-main-8.png);background-position:-1634px -424px;width:105px;height:105px}.Mount_Head_Horse-Desert{background-image:url(spritesmith-main-8.png);background-position:-1634px -530px;width:105px;height:105px}.Mount_Head_Horse-Golden{background-image:url(spritesmith-main-8.png);background-position:-1634px -636px;width:105px;height:105px}.Mount_Head_Horse-Red{background-image:url(spritesmith-main-8.png);background-position:-1634px -742px;width:105px;height:105px}.Mount_Head_Horse-Shade{background-image:url(spritesmith-main-8.png);background-position:-1634px -848px;width:105px;height:105px}.Mount_Head_Horse-Skeleton{background-image:url(spritesmith-main-8.png);background-position:-680px -106px;width:105px;height:105px}.Mount_Head_Horse-White{background-image:url(spritesmith-main-8.png);background-position:-680px -212px;width:105px;height:105px}.Mount_Head_Horse-Zombie{background-image:url(spritesmith-main-8.png);background-position:-680px -318px;width:105px;height:105px}.Mount_Head_JackOLantern-Base{background-image:url(spritesmith-main-8.png);background-position:-1634px -954px;width:90px;height:105px}.Mount_Head_LionCub-Base{background-image:url(spritesmith-main-8.png);background-position:-680px -530px;width:105px;height:105px}.Mount_Head_LionCub-CottonCandyBlue{background-image:url(spritesmith-main-8.png);background-position:0 -680px;width:105px;height:105px}.Mount_Head_LionCub-CottonCandyPink{background-image:url(spritesmith-main-8.png);background-position:-106px -680px;width:105px;height:105px}.Mount_Head_LionCub-Desert{background-image:url(spritesmith-main-8.png);background-position:-212px -680px;width:105px;height:105px}.Mount_Head_LionCub-Ethereal{background-image:url(spritesmith-main-8.png);background-position:-318px -680px;width:105px;height:105px}.Mount_Head_LionCub-Golden{background-image:url(spritesmith-main-8.png);background-position:-424px -680px;width:105px;height:105px}.Mount_Head_LionCub-Peppermint{background-image:url(spritesmith-main-8.png);background-position:-530px -680px;width:105px;height:105px}.Mount_Head_LionCub-Red{background-image:url(spritesmith-main-8.png);background-position:-636px -680px;width:105px;height:105px}.Mount_Head_LionCub-Shade{background-image:url(spritesmith-main-8.png);background-position:-786px 0;width:105px;height:105px}.Mount_Head_LionCub-Skeleton{background-image:url(spritesmith-main-8.png);background-position:-378px -544px;width:105px;height:110px}.Mount_Head_LionCub-Spooky{background-image:url(spritesmith-main-8.png);background-position:-786px -212px;width:105px;height:105px}.Mount_Head_LionCub-White{background-image:url(spritesmith-main-8.png);background-position:-786px -318px;width:105px;height:105px}.Mount_Head_LionCub-Zombie{background-image:url(spritesmith-main-8.png);background-position:-786px -424px;width:105px;height:105px}.Mount_Head_Mammoth-Base{background-image:url(spritesmith-main-8.png);background-position:-272px -544px;width:105px;height:123px}.Mount_Head_MantisShrimp-Base{background-image:url(spritesmith-main-8.png);background-position:-484px -544px;width:108px;height:105px}.Mount_Head_Octopus-Base{background-image:url(spritesmith-main-8.png);background-position:0 -786px;width:105px;height:105px}.Mount_Head_Octopus-CottonCandyBlue{background-image:url(spritesmith-main-8.png);background-position:-106px -786px;width:105px;height:105px}.Mount_Head_Octopus-CottonCandyPink{background-image:url(spritesmith-main-8.png);background-position:-212px -786px;width:105px;height:105px}.Mount_Head_Octopus-Desert{background-image:url(spritesmith-main-8.png);background-position:-318px -786px;width:105px;height:105px}.Mount_Head_Octopus-Golden{background-image:url(spritesmith-main-8.png);background-position:-424px -786px;width:105px;height:105px}.Mount_Head_Octopus-Red{background-image:url(spritesmith-main-8.png);background-position:-530px -786px;width:105px;height:105px}.Mount_Head_Octopus-Shade{background-image:url(spritesmith-main-8.png);background-position:-636px -786px;width:105px;height:105px}.Mount_Head_Octopus-Skeleton{background-image:url(spritesmith-main-8.png);background-position:-742px -786px;width:105px;height:105px}.Mount_Head_Octopus-White{background-image:url(spritesmith-main-8.png);background-position:-892px 0;width:105px;height:105px}.Mount_Head_Octopus-Zombie{background-image:url(spritesmith-main-8.png);background-position:-892px -106px;width:105px;height:105px}.Mount_Head_Orca-Base{background-image:url(spritesmith-main-8.png);background-position:-892px -212px;width:105px;height:105px}.Mount_Head_Owl-Base{background-image:url(spritesmith-main-8.png);background-position:-892px -318px;width:105px;height:105px}.Mount_Head_Owl-CottonCandyBlue{background-image:url(spritesmith-main-8.png);background-position:-892px -424px;width:105px;height:105px}.Mount_Head_Owl-CottonCandyPink{background-image:url(spritesmith-main-8.png);background-position:-892px -530px;width:105px;height:105px}.Mount_Head_Owl-Desert{background-image:url(spritesmith-main-8.png);background-position:-892px -636px;width:105px;height:105px}.Mount_Head_Owl-Golden{background-image:url(spritesmith-main-8.png);background-position:-892px -742px;width:105px;height:105px}.Mount_Head_Owl-Red{background-image:url(spritesmith-main-8.png);background-position:0 -892px;width:105px;height:105px}.Mount_Head_Owl-Shade{background-image:url(spritesmith-main-8.png);background-position:-106px -892px;width:105px;height:105px}.Mount_Head_Owl-Skeleton{background-image:url(spritesmith-main-8.png);background-position:-212px -892px;width:105px;height:105px}.Mount_Head_Owl-White{background-image:url(spritesmith-main-8.png);background-position:-318px -892px;width:105px;height:105px}.Mount_Head_Owl-Zombie{background-image:url(spritesmith-main-8.png);background-position:-424px -892px;width:105px;height:105px}.Mount_Head_PandaCub-Base{background-image:url(spritesmith-main-8.png);background-position:-530px -892px;width:105px;height:105px}.Mount_Head_PandaCub-CottonCandyBlue{background-image:url(spritesmith-main-8.png);background-position:-636px -892px;width:105px;height:105px}.Mount_Head_PandaCub-CottonCandyPink{background-image:url(spritesmith-main-8.png);background-position:-742px -892px;width:105px;height:105px}.Mount_Head_PandaCub-Desert{background-image:url(spritesmith-main-8.png);background-position:-848px -892px;width:105px;height:105px}.Mount_Head_PandaCub-Golden{background-image:url(spritesmith-main-8.png);background-position:-998px 0;width:105px;height:105px}.Mount_Head_PandaCub-Peppermint{background-image:url(spritesmith-main-8.png);background-position:-998px -106px;width:105px;height:105px}.Mount_Head_PandaCub-Red{background-image:url(spritesmith-main-8.png);background-position:-998px -212px;width:105px;height:105px}.Mount_Head_PandaCub-Shade{background-image:url(spritesmith-main-8.png);background-position:-998px -318px;width:105px;height:105px}.Mount_Head_PandaCub-Skeleton{background-image:url(spritesmith-main-8.png);background-position:-998px -424px;width:105px;height:105px}.Mount_Head_PandaCub-Spooky{background-image:url(spritesmith-main-8.png);background-position:-998px -530px;width:105px;height:105px}.Mount_Head_PandaCub-White{background-image:url(spritesmith-main-8.png);background-position:-998px -636px;width:105px;height:105px}.Mount_Head_PandaCub-Zombie{background-image:url(spritesmith-main-8.png);background-position:-998px -742px;width:105px;height:105px}.Mount_Head_Parrot-Base{background-image:url(spritesmith-main-8.png);background-position:-998px -848px;width:105px;height:105px}.Mount_Head_Parrot-CottonCandyBlue{background-image:url(spritesmith-main-8.png);background-position:0 -998px;width:105px;height:105px}.Mount_Head_Parrot-CottonCandyPink{background-image:url(spritesmith-main-8.png);background-position:-106px -998px;width:105px;height:105px}.Mount_Head_Parrot-Desert{background-image:url(spritesmith-main-8.png);background-position:-212px -998px;width:105px;height:105px}.Mount_Head_Parrot-Golden{background-image:url(spritesmith-main-8.png);background-position:-318px -998px;width:105px;height:105px}.Mount_Head_Parrot-Red{background-image:url(spritesmith-main-8.png);background-position:-424px -998px;width:105px;height:105px}.Mount_Head_Parrot-Shade{background-image:url(spritesmith-main-8.png);background-position:-530px -998px;width:105px;height:105px}.Mount_Head_Parrot-Skeleton{background-image:url(spritesmith-main-8.png);background-position:-636px -998px;width:105px;height:105px}.Mount_Head_Parrot-White{background-image:url(spritesmith-main-8.png);background-position:-742px -998px;width:105px;height:105px}.Mount_Head_Parrot-Zombie{background-image:url(spritesmith-main-8.png);background-position:-848px -998px;width:105px;height:105px}.Mount_Head_Penguin-Base{background-image:url(spritesmith-main-8.png);background-position:-954px -998px;width:105px;height:105px}.Mount_Head_Penguin-CottonCandyBlue{background-image:url(spritesmith-main-8.png);background-position:-1104px 0;width:105px;height:105px}.Mount_Head_Penguin-CottonCandyPink{background-image:url(spritesmith-main-8.png);background-position:-1104px -106px;width:105px;height:105px}.Mount_Head_Penguin-Desert{background-image:url(spritesmith-main-8.png);background-position:-1104px -212px;width:105px;height:105px}.Mount_Head_Penguin-Golden{background-image:url(spritesmith-main-8.png);background-position:-1104px -318px;width:105px;height:105px}.Mount_Head_Penguin-Red{background-image:url(spritesmith-main-8.png);background-position:-1104px -424px;width:105px;height:105px}.Mount_Head_Penguin-Shade{background-image:url(spritesmith-main-8.png);background-position:-1104px -530px;width:105px;height:105px}.Mount_Head_Penguin-Skeleton{background-image:url(spritesmith-main-8.png);background-position:-1104px -636px;width:105px;height:105px}.Mount_Head_Penguin-White{background-image:url(spritesmith-main-8.png);background-position:-1104px -742px;width:105px;height:105px}.Mount_Head_Penguin-Zombie{background-image:url(spritesmith-main-8.png);background-position:-1104px -848px;width:105px;height:105px}.Mount_Head_Phoenix-Base{background-image:url(spritesmith-main-8.png);background-position:-1104px -954px;width:105px;height:105px}.Mount_Head_Rat-Base{background-image:url(spritesmith-main-8.png);background-position:0 -1104px;width:105px;height:105px}.Mount_Head_Rat-CottonCandyBlue{background-image:url(spritesmith-main-8.png);background-position:-106px -1104px;width:105px;height:105px}.Mount_Head_Rat-CottonCandyPink{background-image:url(spritesmith-main-8.png);background-position:-212px -1104px;width:105px;height:105px}.Mount_Head_Rat-Desert{background-image:url(spritesmith-main-8.png);background-position:-318px -1104px;width:105px;height:105px}.Mount_Head_Rat-Golden{background-image:url(spritesmith-main-8.png);background-position:-424px -1104px;width:105px;height:105px}.Mount_Head_Rat-Red{background-image:url(spritesmith-main-8.png);background-position:-530px -1104px;width:105px;height:105px}.Mount_Head_Rat-Shade{background-image:url(spritesmith-main-8.png);background-position:-636px -1104px;width:105px;height:105px}.Mount_Head_Rat-Skeleton{background-image:url(spritesmith-main-8.png);background-position:-742px -1104px;width:105px;height:105px}.Mount_Head_Rat-White{background-image:url(spritesmith-main-8.png);background-position:-848px -1104px;width:105px;height:105px}.Mount_Head_Rat-Zombie{background-image:url(spritesmith-main-8.png);background-position:-954px -1104px;width:105px;height:105px}.Mount_Head_Rock-Base{background-image:url(spritesmith-main-8.png);background-position:-1060px -1104px;width:105px;height:105px}.Mount_Head_Rock-CottonCandyBlue{background-image:url(spritesmith-main-8.png);background-position:-1210px 0;width:105px;height:105px}.Mount_Head_Rock-CottonCandyPink{background-image:url(spritesmith-main-8.png);background-position:-1210px -106px;width:105px;height:105px}.Mount_Head_Rock-Desert{background-image:url(spritesmith-main-8.png);background-position:-1210px -212px;width:105px;height:105px}.Mount_Head_Rock-Golden{background-image:url(spritesmith-main-8.png);background-position:-1210px -318px;width:105px;height:105px}.Mount_Head_Rock-Red{background-image:url(spritesmith-main-8.png);background-position:-1210px -424px;width:105px;height:105px}.Mount_Head_Rock-Shade{background-image:url(spritesmith-main-8.png);background-position:-1210px -530px;width:105px;height:105px}.Mount_Head_Rock-Skeleton{background-image:url(spritesmith-main-8.png);background-position:-1210px -636px;width:105px;height:105px}.Mount_Head_Rock-White{background-image:url(spritesmith-main-8.png);background-position:-1210px -742px;width:105px;height:105px}.Mount_Head_Rock-Zombie{background-image:url(spritesmith-main-8.png);background-position:-1210px -848px;width:105px;height:105px}.Mount_Head_Rooster-Base{background-image:url(spritesmith-main-8.png);background-position:-680px 0;width:105px;height:105px}.Mount_Head_Rooster-CottonCandyBlue{background-image:url(spritesmith-main-8.png);background-position:-1210px -1060px;width:105px;height:105px}.Mount_Head_Rooster-CottonCandyPink{background-image:url(spritesmith-main-8.png);background-position:0 -1210px;width:105px;height:105px}.Mount_Head_Rooster-Desert{background-image:url(spritesmith-main-8.png);background-position:-106px -1210px;width:105px;height:105px}.Mount_Head_Rooster-Golden{background-image:url(spritesmith-main-8.png);background-position:-212px -1210px;width:105px;height:105px}.Mount_Head_Rooster-Red{background-image:url(spritesmith-main-8.png);background-position:-318px -1210px;width:105px;height:105px}.Mount_Head_Rooster-Shade{background-image:url(spritesmith-main-8.png);background-position:-424px -1210px;width:105px;height:105px}.Mount_Head_Rooster-Skeleton{background-image:url(spritesmith-main-8.png);background-position:-530px -1210px;width:105px;height:105px}.Mount_Head_Rooster-White{background-image:url(spritesmith-main-8.png);background-position:-636px -1210px;width:105px;height:105px}.Mount_Head_Rooster-Zombie{background-image:url(spritesmith-main-8.png);background-position:-742px -1210px;width:105px;height:105px}.Mount_Head_Seahorse-Base{background-image:url(spritesmith-main-8.png);background-position:-848px -1210px;width:105px;height:105px}.Mount_Head_Seahorse-CottonCandyBlue{background-image:url(spritesmith-main-8.png);background-position:-954px -1210px;width:105px;height:105px}.Mount_Head_Seahorse-CottonCandyPink{background-image:url(spritesmith-main-8.png);background-position:-1060px -1210px;width:105px;height:105px}.Mount_Head_Seahorse-Desert{background-image:url(spritesmith-main-8.png);background-position:-1166px -1210px;width:105px;height:105px}.Mount_Head_Seahorse-Golden{background-image:url(spritesmith-main-8.png);background-position:-1316px 0;width:105px;height:105px}.Mount_Head_Seahorse-Red{background-image:url(spritesmith-main-8.png);background-position:-1316px -106px;width:105px;height:105px}.Mount_Head_Seahorse-Shade{background-image:url(spritesmith-main-8.png);background-position:-1316px -212px;width:105px;height:105px}.Mount_Head_Seahorse-Skeleton{background-image:url(spritesmith-main-8.png);background-position:-1316px -318px;width:105px;height:105px}.Mount_Head_Seahorse-White{background-image:url(spritesmith-main-8.png);background-position:-1316px -424px;width:105px;height:105px}.Mount_Head_Seahorse-Zombie{background-image:url(spritesmith-main-8.png);background-position:-1316px -530px;width:105px;height:105px}.Mount_Head_Sheep-Base{background-image:url(spritesmith-main-8.png);background-position:-1316px -636px;width:105px;height:105px}.Mount_Head_Sheep-CottonCandyBlue{background-image:url(spritesmith-main-8.png);background-position:-1316px -742px;width:105px;height:105px}.Mount_Head_Sheep-CottonCandyPink{background-image:url(spritesmith-main-8.png);background-position:-1316px -848px;width:105px;height:105px}.Mount_Head_Sheep-Desert{background-image:url(spritesmith-main-8.png);background-position:-1316px -954px;width:105px;height:105px}.Mount_Head_Sheep-Golden{background-image:url(spritesmith-main-8.png);background-position:-1316px -1060px;width:105px;height:105px}.Mount_Head_Sheep-Red{background-image:url(spritesmith-main-8.png);background-position:-1316px -1166px;width:105px;height:105px}.Mount_Head_Sheep-Shade{background-image:url(spritesmith-main-8.png);background-position:0 -1316px;width:105px;height:105px}.Mount_Head_Sheep-Skeleton{background-image:url(spritesmith-main-8.png);background-position:-106px -1316px;width:105px;height:105px}.Mount_Head_Sheep-White{background-image:url(spritesmith-main-8.png);background-position:-212px -1316px;width:105px;height:105px}.Mount_Head_Sheep-Zombie{background-image:url(spritesmith-main-8.png);background-position:-318px -1316px;width:105px;height:105px}.Mount_Head_Slime-Base{background-image:url(spritesmith-main-8.png);background-position:-424px -1316px;width:105px;height:105px}.Mount_Head_Slime-CottonCandyBlue{background-image:url(spritesmith-main-8.png);background-position:-530px -1316px;width:105px;height:105px}.Mount_Head_Slime-CottonCandyPink{background-image:url(spritesmith-main-8.png);background-position:-636px -1316px;width:105px;height:105px}.Mount_Head_Slime-Desert{background-image:url(spritesmith-main-8.png);background-position:-742px -1316px;width:105px;height:105px}.Mount_Head_Slime-Golden{background-image:url(spritesmith-main-8.png);background-position:-848px -1316px;width:105px;height:105px}.Mount_Head_Slime-Red{background-image:url(spritesmith-main-8.png);background-position:-954px -1316px;width:105px;height:105px}.Mount_Head_Slime-Shade{background-image:url(spritesmith-main-8.png);background-position:-1060px -1316px;width:105px;height:105px}.Mount_Head_Slime-Skeleton{background-image:url(spritesmith-main-8.png);background-position:-1166px -1316px;width:105px;height:105px}.Mount_Head_Slime-White{background-image:url(spritesmith-main-8.png);background-position:-1272px -1316px;width:105px;height:105px}.Mount_Head_Slime-Zombie{background-image:url(spritesmith-main-8.png);background-position:-1422px 0;width:105px;height:105px}.Mount_Head_Snake-Base{background-image:url(spritesmith-main-8.png);background-position:-1422px -106px;width:105px;height:105px}.Mount_Head_Snake-CottonCandyBlue{background-image:url(spritesmith-main-8.png);background-position:-1422px -212px;width:105px;height:105px}.Mount_Head_Snake-CottonCandyPink{background-image:url(spritesmith-main-8.png);background-position:-1422px -318px;width:105px;height:105px}.Mount_Head_Snake-Desert{background-image:url(spritesmith-main-8.png);background-position:-1422px -424px;width:105px;height:105px}.Mount_Head_Snake-Golden{background-image:url(spritesmith-main-8.png);background-position:-1422px -530px;width:105px;height:105px}.Mount_Head_Snake-Red{background-image:url(spritesmith-main-8.png);background-position:-1422px -636px;width:105px;height:105px}.Mount_Head_Snake-Shade{background-image:url(spritesmith-main-8.png);background-position:-1422px -742px;width:105px;height:105px}.Mount_Head_Snake-Skeleton{background-image:url(spritesmith-main-8.png);background-position:-1422px -848px;width:105px;height:105px}.Mount_Head_Snake-White{background-image:url(spritesmith-main-8.png);background-position:-1422px -954px;width:105px;height:105px}.Mount_Head_Snake-Zombie{background-image:url(spritesmith-main-8.png);background-position:-1422px -1060px;width:105px;height:105px}.Mount_Head_Spider-Base{background-image:url(spritesmith-main-8.png);background-position:-1422px -1166px;width:105px;height:105px}.Mount_Head_Spider-CottonCandyBlue{background-image:url(spritesmith-main-8.png);background-position:-1422px -1272px;width:105px;height:105px}.Mount_Head_Spider-CottonCandyPink{background-image:url(spritesmith-main-8.png);background-position:0 -1422px;width:105px;height:105px}.Mount_Head_Spider-Desert{background-image:url(spritesmith-main-8.png);background-position:-106px -1422px;width:105px;height:105px}.Mount_Head_Spider-Golden{background-image:url(spritesmith-main-8.png);background-position:-212px -1422px;width:105px;height:105px}.Mount_Head_Spider-Red{background-image:url(spritesmith-main-8.png);background-position:-318px -1422px;width:105px;height:105px}.Mount_Head_Spider-Shade{background-image:url(spritesmith-main-8.png);background-position:-424px -1422px;width:105px;height:105px}.Mount_Head_Spider-Skeleton{background-image:url(spritesmith-main-8.png);background-position:-530px -1422px;width:105px;height:105px}.Mount_Head_Spider-White{background-image:url(spritesmith-main-8.png);background-position:-636px -1422px;width:105px;height:105px}.Mount_Head_Spider-Zombie{background-image:url(spritesmith-main-8.png);background-position:-742px -1422px;width:105px;height:105px}.Mount_Head_TRex-Base{background-image:url(spritesmith-main-8.png);background-position:-272px -136px;width:135px;height:135px}.Mount_Head_TRex-CottonCandyBlue{background-image:url(spritesmith-main-8.png);background-position:0 -272px;width:135px;height:135px}.Mount_Head_TRex-CottonCandyPink{background-image:url(spritesmith-main-8.png);background-position:-136px -272px;width:135px;height:135px}.Mount_Head_TRex-Desert{background-image:url(spritesmith-main-8.png);background-position:-272px -272px;width:135px;height:135px}.Mount_Head_TRex-Golden{background-image:url(spritesmith-main-8.png);background-position:-408px 0;width:135px;height:135px}.Mount_Head_TRex-Red{background-image:url(spritesmith-main-8.png);background-position:-408px -136px;width:135px;height:135px}.Mount_Head_TRex-Shade{background-image:url(spritesmith-main-8.png);background-position:-408px -272px;width:135px;height:135px}.Mount_Head_TRex-Skeleton{background-image:url(spritesmith-main-8.png);background-position:0 -408px;width:135px;height:135px}.Mount_Head_TRex-White{background-image:url(spritesmith-main-8.png);background-position:0 0;width:135px;height:135px}.Mount_Head_TRex-Zombie{background-image:url(spritesmith-main-8.png);background-position:-272px -408px;width:135px;height:135px}.Mount_Head_TigerCub-Base{background-image:url(spritesmith-main-8.png);background-position:-1528px -424px;width:105px;height:105px}.Mount_Head_TigerCub-CottonCandyBlue{background-image:url(spritesmith-main-8.png);background-position:-1528px -530px;width:105px;height:105px}.Mount_Head_TigerCub-CottonCandyPink{background-image:url(spritesmith-main-8.png);background-position:-1528px -636px;width:105px;height:105px}.Mount_Head_TigerCub-Desert{background-image:url(spritesmith-main-8.png);background-position:-1528px -742px;width:105px;height:105px}.Mount_Head_TigerCub-Golden{background-image:url(spritesmith-main-8.png);background-position:-1528px -848px;width:105px;height:105px}.Mount_Head_TigerCub-Peppermint{background-image:url(spritesmith-main-8.png);background-position:-1528px -954px;width:105px;height:105px}.Mount_Head_TigerCub-Red{background-image:url(spritesmith-main-8.png);background-position:-1528px -1060px;width:105px;height:105px}.Mount_Head_TigerCub-Shade{background-image:url(spritesmith-main-8.png);background-position:-1528px -1166px;width:105px;height:105px}.Mount_Head_TigerCub-Skeleton{background-image:url(spritesmith-main-8.png);background-position:-1528px -1272px;width:105px;height:105px}.Mount_Head_TigerCub-Spooky{background-image:url(spritesmith-main-8.png);background-position:-1528px -1378px;width:105px;height:105px}.Mount_Head_TigerCub-White{background-image:url(spritesmith-main-8.png);background-position:0 -1528px;width:105px;height:105px}.Mount_Head_TigerCub-Zombie{background-image:url(spritesmith-main-8.png);background-position:-106px -1528px;width:105px;height:105px}.Mount_Head_Turkey-Base{background-image:url(spritesmith-main-8.png);background-position:-212px -1528px;width:105px;height:105px}.Mount_Head_Whale-Base{background-image:url(spritesmith-main-8.png);background-position:-318px -1528px;width:105px;height:105px}.Mount_Head_Whale-CottonCandyBlue{background-image:url(spritesmith-main-8.png);background-position:-424px -1528px;width:105px;height:105px}.Mount_Head_Whale-CottonCandyPink{background-image:url(spritesmith-main-8.png);background-position:-530px -1528px;width:105px;height:105px}.Mount_Head_Whale-Desert{background-image:url(spritesmith-main-8.png);background-position:-636px -1528px;width:105px;height:105px}.Mount_Head_Whale-Golden{background-image:url(spritesmith-main-8.png);background-position:-742px -1528px;width:105px;height:105px}.Mount_Head_Whale-Red{background-image:url(spritesmith-main-8.png);background-position:-848px -1528px;width:105px;height:105px}.Mount_Head_Whale-Shade{background-image:url(spritesmith-main-8.png);background-position:-954px -1528px;width:105px;height:105px}.Mount_Head_Whale-Skeleton{background-image:url(spritesmith-main-8.png);background-position:-1060px -1528px;width:105px;height:105px}.Mount_Head_Whale-White{background-image:url(spritesmith-main-8.png);background-position:-1166px -1528px;width:105px;height:105px}.Mount_Head_Whale-Zombie{background-image:url(spritesmith-main-8.png);background-position:-1272px -1528px;width:105px;height:105px}.Mount_Head_Wolf-Base{background-image:url(spritesmith-main-8.png);background-position:-408px -408px;width:135px;height:135px}.Mount_Head_Wolf-CottonCandyBlue{background-image:url(spritesmith-main-8.png);background-position:-544px 0;width:135px;height:135px}.Mount_Head_Wolf-CottonCandyPink{background-image:url(spritesmith-main-8.png);background-position:-544px -136px;width:135px;height:135px}.Mount_Head_Wolf-Desert{background-image:url(spritesmith-main-8.png);background-position:-544px -272px;width:135px;height:135px}.Mount_Head_Wolf-Golden{background-image:url(spritesmith-main-8.png);background-position:-544px -408px;width:135px;height:135px}.Mount_Head_Wolf-Peppermint{background-image:url(spritesmith-main-8.png);background-position:0 -544px;width:135px;height:135px}.Mount_Head_Wolf-Red{background-image:url(spritesmith-main-8.png);background-position:-136px -544px;width:135px;height:135px}.Mount_Head_Wolf-Shade{background-image:url(spritesmith-main-8.png);background-position:-272px 0;width:135px;height:135px}.Mount_Head_Wolf-Skeleton{background-image:url(spritesmith-main-8.png);background-position:-136px -136px;width:135px;height:135px}.Mount_Head_Wolf-Spooky{background-image:url(spritesmith-main-8.png);background-position:0 -136px;width:135px;height:135px}.Mount_Head_Wolf-White{background-image:url(spritesmith-main-8.png);background-position:-136px 0;width:135px;height:135px}.Mount_Head_Wolf-Zombie{background-image:url(spritesmith-main-8.png);background-position:-136px -408px;width:135px;height:135px}.Mount_Icon_BearCub-Base{background-image:url(spritesmith-main-8.png);background-position:0 -1634px;width:81px;height:99px}.Mount_Icon_BearCub-CottonCandyBlue{background-image:url(spritesmith-main-8.png);background-position:-1634px -1160px;width:81px;height:99px}.Mount_Icon_BearCub-CottonCandyPink{background-image:url(spritesmith-main-8.png);background-position:-1634px -1260px;width:81px;height:99px}.Mount_Icon_BearCub-Desert{background-image:url(spritesmith-main-8.png);background-position:-1634px -1360px;width:81px;height:99px}.Mount_Icon_BearCub-Golden{background-image:url(spritesmith-main-8.png);background-position:-1634px -1460px;width:81px;height:99px}.Mount_Icon_BearCub-Peppermint{background-image:url(spritesmith-main-8.png);background-position:-593px -544px;width:81px;height:99px}.Mount_Icon_BearCub-Polar{background-image:url(spritesmith-main-8.png);background-position:-574px -1634px;width:81px;height:99px}.Mount_Icon_BearCub-Red{background-image:url(spritesmith-main-8.png);background-position:-82px -1634px;width:81px;height:99px}.Mount_Icon_BearCub-Shade{background-image:url(spritesmith-main-8.png);background-position:-164px -1634px;width:81px;height:99px}.Mount_Icon_BearCub-Skeleton{background-image:url(spritesmith-main-8.png);background-position:-246px -1634px;width:81px;height:99px}.Mount_Icon_BearCub-Spooky{background-image:url(spritesmith-main-8.png);background-position:-328px -1634px;width:81px;height:99px}.Mount_Icon_BearCub-White{background-image:url(spritesmith-main-8.png);background-position:-410px -1634px;width:81px;height:99px}.Mount_Icon_BearCub-Zombie{background-image:url(spritesmith-main-8.png);background-position:-492px -1634px;width:81px;height:99px}.Mount_Icon_Bunny-Base{background-image:url(spritesmith-main-8.png);background-position:-1634px -1060px;width:81px;height:99px}.Mount_Icon_Bunny-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-328px -845px;width:81px;height:99px}.Mount_Icon_Bunny-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-1244px -100px;width:81px;height:99px}.Mount_Icon_Bunny-Desert{background-image:url(spritesmith-main-9.png);background-position:-410px -845px;width:81px;height:99px}.Mount_Icon_Bunny-Golden{background-image:url(spritesmith-main-9.png);background-position:-492px -845px;width:81px;height:99px}.Mount_Icon_Bunny-Red{background-image:url(spritesmith-main-9.png);background-position:-574px -845px;width:81px;height:99px}.Mount_Icon_Bunny-Shade{background-image:url(spritesmith-main-9.png);background-position:-656px -845px;width:81px;height:99px}.Mount_Icon_Bunny-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-738px -845px;width:81px;height:99px}.Mount_Icon_Bunny-White{background-image:url(spritesmith-main-9.png);background-position:-820px -845px;width:81px;height:99px}.Mount_Icon_Bunny-Zombie{background-image:url(spritesmith-main-9.png);background-position:-902px -845px;width:81px;height:99px}.Mount_Icon_Cactus-Base{background-image:url(spritesmith-main-9.png);background-position:-998px 0;width:81px;height:99px}.Mount_Icon_Cactus-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-998px -100px;width:81px;height:99px}.Mount_Icon_Cactus-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-82px -1045px;width:81px;height:99px}.Mount_Icon_Cactus-Desert{background-image:url(spritesmith-main-9.png);background-position:-492px -1245px;width:81px;height:99px}.Mount_Icon_Cactus-Golden{background-image:url(spritesmith-main-9.png);background-position:-424px -100px;width:81px;height:99px}.Mount_Icon_Cactus-Peppermint{background-image:url(spritesmith-main-9.png);background-position:-424px -200px;width:81px;height:99px}.Mount_Icon_Cactus-Red{background-image:url(spritesmith-main-9.png);background-position:0 -345px;width:81px;height:99px}.Mount_Icon_Cactus-Shade{background-image:url(spritesmith-main-9.png);background-position:-82px -345px;width:81px;height:99px}.Mount_Icon_Cactus-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-164px -345px;width:81px;height:99px}.Mount_Icon_Cactus-Spooky{background-image:url(spritesmith-main-9.png);background-position:-246px -345px;width:81px;height:99px}.Mount_Icon_Cactus-White{background-image:url(spritesmith-main-9.png);background-position:-328px -345px;width:81px;height:99px}.Mount_Icon_Cactus-Zombie{background-image:url(spritesmith-main-9.png);background-position:-410px -345px;width:81px;height:99px}.Mount_Icon_Cheetah-Base{background-image:url(spritesmith-main-9.png);background-position:-506px 0;width:81px;height:99px}.Mount_Icon_Cheetah-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-506px -100px;width:81px;height:99px}.Mount_Icon_Cheetah-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-506px -200px;width:81px;height:99px}.Mount_Icon_Cheetah-Desert{background-image:url(spritesmith-main-9.png);background-position:-506px -300px;width:81px;height:99px}.Mount_Icon_Cheetah-Golden{background-image:url(spritesmith-main-9.png);background-position:0 -445px;width:81px;height:99px}.Mount_Icon_Cheetah-Red{background-image:url(spritesmith-main-9.png);background-position:-82px -445px;width:81px;height:99px}.Mount_Icon_Cheetah-Shade{background-image:url(spritesmith-main-9.png);background-position:-164px -445px;width:81px;height:99px}.Mount_Icon_Cheetah-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-246px -445px;width:81px;height:99px}.Mount_Icon_Cheetah-White{background-image:url(spritesmith-main-9.png);background-position:-328px -445px;width:81px;height:99px}.Mount_Icon_Cheetah-Zombie{background-image:url(spritesmith-main-9.png);background-position:-410px -445px;width:81px;height:99px}.Mount_Icon_Cuttlefish-Base{background-image:url(spritesmith-main-9.png);background-position:-492px -445px;width:81px;height:99px}.Mount_Icon_Cuttlefish-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-588px 0;width:81px;height:99px}.Mount_Icon_Cuttlefish-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-588px -100px;width:81px;height:99px}.Mount_Icon_Cuttlefish-Desert{background-image:url(spritesmith-main-9.png);background-position:-588px -200px;width:81px;height:99px}.Mount_Icon_Cuttlefish-Golden{background-image:url(spritesmith-main-9.png);background-position:-588px -300px;width:81px;height:99px}.Mount_Icon_Cuttlefish-Red{background-image:url(spritesmith-main-9.png);background-position:-588px -400px;width:81px;height:99px}.Mount_Icon_Cuttlefish-Shade{background-image:url(spritesmith-main-9.png);background-position:0 -545px;width:81px;height:99px}.Mount_Icon_Cuttlefish-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-82px -545px;width:81px;height:99px}.Mount_Icon_Cuttlefish-White{background-image:url(spritesmith-main-9.png);background-position:-164px -545px;width:81px;height:99px}.Mount_Icon_Cuttlefish-Zombie{background-image:url(spritesmith-main-9.png);background-position:-246px -545px;width:81px;height:99px}.Mount_Icon_Deer-Base{background-image:url(spritesmith-main-9.png);background-position:-328px -545px;width:81px;height:99px}.Mount_Icon_Deer-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-410px -545px;width:81px;height:99px}.Mount_Icon_Deer-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-492px -545px;width:81px;height:99px}.Mount_Icon_Deer-Desert{background-image:url(spritesmith-main-9.png);background-position:-574px -545px;width:81px;height:99px}.Mount_Icon_Deer-Golden{background-image:url(spritesmith-main-9.png);background-position:-670px 0;width:81px;height:99px}.Mount_Icon_Deer-Red{background-image:url(spritesmith-main-9.png);background-position:-670px -100px;width:81px;height:99px}.Mount_Icon_Deer-Shade{background-image:url(spritesmith-main-9.png);background-position:-670px -200px;width:81px;height:99px}.Mount_Icon_Deer-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-670px -300px;width:81px;height:99px}.Mount_Icon_Deer-White{background-image:url(spritesmith-main-9.png);background-position:-670px -400px;width:81px;height:99px}.Mount_Icon_Deer-Zombie{background-image:url(spritesmith-main-9.png);background-position:-670px -500px;width:81px;height:99px}.Mount_Icon_Dragon-Base{background-image:url(spritesmith-main-9.png);background-position:0 -645px;width:81px;height:99px}.Mount_Icon_Dragon-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-82px -645px;width:81px;height:99px}.Mount_Icon_Dragon-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-164px -645px;width:81px;height:99px}.Mount_Icon_Dragon-Desert{background-image:url(spritesmith-main-9.png);background-position:-246px -645px;width:81px;height:99px}.Mount_Icon_Dragon-Golden{background-image:url(spritesmith-main-9.png);background-position:-328px -645px;width:81px;height:99px}.Mount_Icon_Dragon-Peppermint{background-image:url(spritesmith-main-9.png);background-position:-410px -645px;width:81px;height:99px}.Mount_Icon_Dragon-Red{background-image:url(spritesmith-main-9.png);background-position:-492px -645px;width:81px;height:99px}.Mount_Icon_Dragon-Shade{background-image:url(spritesmith-main-9.png);background-position:-574px -645px;width:81px;height:99px}.Mount_Icon_Dragon-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-656px -645px;width:81px;height:99px}.Mount_Icon_Dragon-Spooky{background-image:url(spritesmith-main-9.png);background-position:-752px 0;width:81px;height:99px}.Mount_Icon_Dragon-White{background-image:url(spritesmith-main-9.png);background-position:-752px -100px;width:81px;height:99px}.Mount_Icon_Dragon-Zombie{background-image:url(spritesmith-main-9.png);background-position:-752px -200px;width:81px;height:99px}.Mount_Icon_Egg-Base{background-image:url(spritesmith-main-9.png);background-position:-752px -300px;width:81px;height:99px}.Mount_Icon_Egg-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-752px -400px;width:81px;height:99px}.Mount_Icon_Egg-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-752px -500px;width:81px;height:99px}.Mount_Icon_Egg-Desert{background-image:url(spritesmith-main-9.png);background-position:-752px -600px;width:81px;height:99px}.Mount_Icon_Egg-Golden{background-image:url(spritesmith-main-9.png);background-position:-834px 0;width:81px;height:99px}.Mount_Icon_Egg-Red{background-image:url(spritesmith-main-9.png);background-position:-834px -100px;width:81px;height:99px}.Mount_Icon_Egg-Shade{background-image:url(spritesmith-main-9.png);background-position:-834px -200px;width:81px;height:99px}.Mount_Icon_Egg-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-834px -300px;width:81px;height:99px}.Mount_Icon_Egg-White{background-image:url(spritesmith-main-9.png);background-position:-834px -400px;width:81px;height:99px}.Mount_Icon_Egg-Zombie{background-image:url(spritesmith-main-9.png);background-position:-834px -500px;width:81px;height:99px}.Mount_Icon_FlyingPig-Base{background-image:url(spritesmith-main-9.png);background-position:-834px -600px;width:81px;height:99px}.Mount_Icon_FlyingPig-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:0 -745px;width:81px;height:99px}.Mount_Icon_FlyingPig-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-82px -745px;width:81px;height:99px}.Mount_Icon_FlyingPig-Desert{background-image:url(spritesmith-main-9.png);background-position:-164px -745px;width:81px;height:99px}.Mount_Icon_FlyingPig-Golden{background-image:url(spritesmith-main-9.png);background-position:-246px -745px;width:81px;height:99px}.Mount_Icon_FlyingPig-Peppermint{background-image:url(spritesmith-main-9.png);background-position:-328px -745px;width:81px;height:99px}.Mount_Icon_FlyingPig-Red{background-image:url(spritesmith-main-9.png);background-position:-410px -745px;width:81px;height:99px}.Mount_Icon_FlyingPig-Shade{background-image:url(spritesmith-main-9.png);background-position:-492px -745px;width:81px;height:99px}.Mount_Icon_FlyingPig-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-574px -745px;width:81px;height:99px}.Mount_Icon_FlyingPig-Spooky{background-image:url(spritesmith-main-9.png);background-position:-656px -745px;width:81px;height:99px}.Mount_Icon_FlyingPig-White{background-image:url(spritesmith-main-9.png);background-position:-738px -745px;width:81px;height:99px}.Mount_Icon_FlyingPig-Zombie{background-image:url(spritesmith-main-9.png);background-position:-820px -745px;width:81px;height:99px}.Mount_Icon_Fox-Base{background-image:url(spritesmith-main-9.png);background-position:-916px 0;width:81px;height:99px}.Mount_Icon_Fox-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-916px -100px;width:81px;height:99px}.Mount_Icon_Fox-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-916px -200px;width:81px;height:99px}.Mount_Icon_Fox-Desert{background-image:url(spritesmith-main-9.png);background-position:-916px -300px;width:81px;height:99px}.Mount_Icon_Fox-Golden{background-image:url(spritesmith-main-9.png);background-position:-916px -400px;width:81px;height:99px}.Mount_Icon_Fox-Peppermint{background-image:url(spritesmith-main-9.png);background-position:-916px -500px;width:81px;height:99px}.Mount_Icon_Fox-Red{background-image:url(spritesmith-main-9.png);background-position:-916px -600px;width:81px;height:99px}.Mount_Icon_Fox-Shade{background-image:url(spritesmith-main-9.png);background-position:-916px -700px;width:81px;height:99px}.Mount_Icon_Fox-Skeleton{background-image:url(spritesmith-main-9.png);background-position:0 -845px;width:81px;height:99px}.Mount_Icon_Fox-Spooky{background-image:url(spritesmith-main-9.png);background-position:-82px -845px;width:81px;height:99px}.Mount_Icon_Fox-White{background-image:url(spritesmith-main-9.png);background-position:-164px -845px;width:81px;height:99px}.Mount_Icon_Fox-Zombie{background-image:url(spritesmith-main-9.png);background-position:-246px -845px;width:81px;height:99px}.Mount_Icon_Frog-Base{background-image:url(spritesmith-main-9.png);background-position:-212px -115px;width:105px;height:114px}.Mount_Icon_Frog-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-106px 0;width:105px;height:114px}.Mount_Icon_Frog-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-212px 0;width:105px;height:114px}.Mount_Icon_Frog-Desert{background-image:url(spritesmith-main-9.png);background-position:0 -115px;width:105px;height:114px}.Mount_Icon_Frog-Golden{background-image:url(spritesmith-main-9.png);background-position:-106px -115px;width:105px;height:114px}.Mount_Icon_Frog-Red{background-image:url(spritesmith-main-9.png);background-position:0 0;width:105px;height:114px}.Mount_Icon_Frog-Shade{background-image:url(spritesmith-main-9.png);background-position:-318px 0;width:105px;height:114px}.Mount_Icon_Frog-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-318px -115px;width:105px;height:114px}.Mount_Icon_Frog-White{background-image:url(spritesmith-main-9.png);background-position:0 -230px;width:105px;height:114px}.Mount_Icon_Frog-Zombie{background-image:url(spritesmith-main-9.png);background-position:-106px -230px;width:105px;height:114px}.Mount_Icon_Gryphon-Base{background-image:url(spritesmith-main-9.png);background-position:-998px -200px;width:81px;height:99px}.Mount_Icon_Gryphon-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-998px -300px;width:81px;height:99px}.Mount_Icon_Gryphon-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-998px -400px;width:81px;height:99px}.Mount_Icon_Gryphon-Desert{background-image:url(spritesmith-main-9.png);background-position:-998px -500px;width:81px;height:99px}.Mount_Icon_Gryphon-Golden{background-image:url(spritesmith-main-9.png);background-position:-998px -600px;width:81px;height:99px}.Mount_Icon_Gryphon-Red{background-image:url(spritesmith-main-9.png);background-position:-998px -700px;width:81px;height:99px}.Mount_Icon_Gryphon-RoyalPurple{background-image:url(spritesmith-main-9.png);background-position:-998px -800px;width:81px;height:99px}.Mount_Icon_Gryphon-Shade{background-image:url(spritesmith-main-9.png);background-position:0 -945px;width:81px;height:99px}.Mount_Icon_Gryphon-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-82px -945px;width:81px;height:99px}.Mount_Icon_Gryphon-White{background-image:url(spritesmith-main-9.png);background-position:-164px -945px;width:81px;height:99px}.Mount_Icon_Gryphon-Zombie{background-image:url(spritesmith-main-9.png);background-position:-246px -945px;width:81px;height:99px}.Mount_Icon_Hedgehog-Base{background-image:url(spritesmith-main-9.png);background-position:-328px -945px;width:81px;height:99px}.Mount_Icon_Hedgehog-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-410px -945px;width:81px;height:99px}.Mount_Icon_Hedgehog-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-492px -945px;width:81px;height:99px}.Mount_Icon_Hedgehog-Desert{background-image:url(spritesmith-main-9.png);background-position:-574px -945px;width:81px;height:99px}.Mount_Icon_Hedgehog-Golden{background-image:url(spritesmith-main-9.png);background-position:-656px -945px;width:81px;height:99px}.Mount_Icon_Hedgehog-Red{background-image:url(spritesmith-main-9.png);background-position:-738px -945px;width:81px;height:99px}.Mount_Icon_Hedgehog-Shade{background-image:url(spritesmith-main-9.png);background-position:-820px -945px;width:81px;height:99px}.Mount_Icon_Hedgehog-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-902px -945px;width:81px;height:99px}.Mount_Icon_Hedgehog-White{background-image:url(spritesmith-main-9.png);background-position:-984px -945px;width:81px;height:99px}.Mount_Icon_Hedgehog-Zombie{background-image:url(spritesmith-main-9.png);background-position:-1080px 0;width:81px;height:99px}.Mount_Icon_Horse-Base{background-image:url(spritesmith-main-9.png);background-position:-1080px -100px;width:81px;height:99px}.Mount_Icon_Horse-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-1080px -200px;width:81px;height:99px}.Mount_Icon_Horse-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-1080px -300px;width:81px;height:99px}.Mount_Icon_Horse-Desert{background-image:url(spritesmith-main-9.png);background-position:-1080px -400px;width:81px;height:99px}.Mount_Icon_Horse-Golden{background-image:url(spritesmith-main-9.png);background-position:-1080px -500px;width:81px;height:99px}.Mount_Icon_Horse-Red{background-image:url(spritesmith-main-9.png);background-position:-1080px -600px;width:81px;height:99px}.Mount_Icon_Horse-Shade{background-image:url(spritesmith-main-9.png);background-position:-1080px -700px;width:81px;height:99px}.Mount_Icon_Horse-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-1080px -800px;width:81px;height:99px}.Mount_Icon_Horse-White{background-image:url(spritesmith-main-9.png);background-position:-1080px -900px;width:81px;height:99px}.Mount_Icon_Horse-Zombie{background-image:url(spritesmith-main-9.png);background-position:0 -1045px;width:81px;height:99px}.Mount_Icon_JackOLantern-Base{background-image:url(spritesmith-main-9.png);background-position:-318px -230px;width:90px;height:105px}.Mount_Icon_LionCub-Base{background-image:url(spritesmith-main-9.png);background-position:-164px -1045px;width:81px;height:99px}.Mount_Icon_LionCub-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-246px -1045px;width:81px;height:99px}.Mount_Icon_LionCub-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-328px -1045px;width:81px;height:99px}.Mount_Icon_LionCub-Desert{background-image:url(spritesmith-main-9.png);background-position:-410px -1045px;width:81px;height:99px}.Mount_Icon_LionCub-Ethereal{background-image:url(spritesmith-main-9.png);background-position:-492px -1045px;width:81px;height:99px}.Mount_Icon_LionCub-Golden{background-image:url(spritesmith-main-9.png);background-position:-574px -1045px;width:81px;height:99px}.Mount_Icon_LionCub-Peppermint{background-image:url(spritesmith-main-9.png);background-position:-656px -1045px;width:81px;height:99px}.Mount_Icon_LionCub-Red{background-image:url(spritesmith-main-9.png);background-position:-738px -1045px;width:81px;height:99px}.Mount_Icon_LionCub-Shade{background-image:url(spritesmith-main-9.png);background-position:-820px -1045px;width:81px;height:99px}.Mount_Icon_LionCub-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-902px -1045px;width:81px;height:99px}.Mount_Icon_LionCub-Spooky{background-image:url(spritesmith-main-9.png);background-position:-984px -1045px;width:81px;height:99px}.Mount_Icon_LionCub-White{background-image:url(spritesmith-main-9.png);background-position:-1066px -1045px;width:81px;height:99px}.Mount_Icon_LionCub-Zombie{background-image:url(spritesmith-main-9.png);background-position:-1162px 0;width:81px;height:99px}.Mount_Icon_Mammoth-Base{background-image:url(spritesmith-main-9.png);background-position:-1162px -100px;width:81px;height:99px}.Mount_Icon_MantisShrimp-Base{background-image:url(spritesmith-main-9.png);background-position:-1162px -200px;width:81px;height:99px}.Mount_Icon_Octopus-Base{background-image:url(spritesmith-main-9.png);background-position:-1162px -300px;width:81px;height:99px}.Mount_Icon_Octopus-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-1162px -400px;width:81px;height:99px}.Mount_Icon_Octopus-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-1162px -500px;width:81px;height:99px}.Mount_Icon_Octopus-Desert{background-image:url(spritesmith-main-9.png);background-position:-1162px -600px;width:81px;height:99px}.Mount_Icon_Octopus-Golden{background-image:url(spritesmith-main-9.png);background-position:-1162px -700px;width:81px;height:99px}.Mount_Icon_Octopus-Red{background-image:url(spritesmith-main-9.png);background-position:-1162px -800px;width:81px;height:99px}.Mount_Icon_Octopus-Shade{background-image:url(spritesmith-main-9.png);background-position:-1162px -900px;width:81px;height:99px}.Mount_Icon_Octopus-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-1162px -1000px;width:81px;height:99px}.Mount_Icon_Octopus-White{background-image:url(spritesmith-main-9.png);background-position:-1244px 0;width:81px;height:99px}.Mount_Icon_Octopus-Zombie{background-image:url(spritesmith-main-9.png);background-position:-424px 0;width:81px;height:99px}.Mount_Icon_Orca-Base{background-image:url(spritesmith-main-9.png);background-position:-1244px -200px;width:81px;height:99px}.Mount_Icon_Owl-Base{background-image:url(spritesmith-main-9.png);background-position:-1244px -300px;width:81px;height:99px}.Mount_Icon_Owl-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-1244px -400px;width:81px;height:99px}.Mount_Icon_Owl-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-1244px -500px;width:81px;height:99px}.Mount_Icon_Owl-Desert{background-image:url(spritesmith-main-9.png);background-position:-1244px -600px;width:81px;height:99px}.Mount_Icon_Owl-Golden{background-image:url(spritesmith-main-9.png);background-position:-1244px -700px;width:81px;height:99px}.Mount_Icon_Owl-Red{background-image:url(spritesmith-main-9.png);background-position:-1244px -800px;width:81px;height:99px}.Mount_Icon_Owl-Shade{background-image:url(spritesmith-main-9.png);background-position:-1244px -900px;width:81px;height:99px}.Mount_Icon_Owl-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-1244px -1000px;width:81px;height:99px}.Mount_Icon_Owl-White{background-image:url(spritesmith-main-9.png);background-position:0 -1145px;width:81px;height:99px}.Mount_Icon_Owl-Zombie{background-image:url(spritesmith-main-9.png);background-position:-82px -1145px;width:81px;height:99px}.Mount_Icon_PandaCub-Base{background-image:url(spritesmith-main-9.png);background-position:-164px -1145px;width:81px;height:99px}.Mount_Icon_PandaCub-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-246px -1145px;width:81px;height:99px}.Mount_Icon_PandaCub-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-328px -1145px;width:81px;height:99px}.Mount_Icon_PandaCub-Desert{background-image:url(spritesmith-main-9.png);background-position:-410px -1145px;width:81px;height:99px}.Mount_Icon_PandaCub-Golden{background-image:url(spritesmith-main-9.png);background-position:-492px -1145px;width:81px;height:99px}.Mount_Icon_PandaCub-Peppermint{background-image:url(spritesmith-main-9.png);background-position:-574px -1145px;width:81px;height:99px}.Mount_Icon_PandaCub-Red{background-image:url(spritesmith-main-9.png);background-position:-656px -1145px;width:81px;height:99px}.Mount_Icon_PandaCub-Shade{background-image:url(spritesmith-main-9.png);background-position:-738px -1145px;width:81px;height:99px}.Mount_Icon_PandaCub-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-820px -1145px;width:81px;height:99px}.Mount_Icon_PandaCub-Spooky{background-image:url(spritesmith-main-9.png);background-position:-902px -1145px;width:81px;height:99px}.Mount_Icon_PandaCub-White{background-image:url(spritesmith-main-9.png);background-position:-984px -1145px;width:81px;height:99px}.Mount_Icon_PandaCub-Zombie{background-image:url(spritesmith-main-9.png);background-position:-1066px -1145px;width:81px;height:99px}.Mount_Icon_Parrot-Base{background-image:url(spritesmith-main-9.png);background-position:-1148px -1145px;width:81px;height:99px}.Mount_Icon_Parrot-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-1230px -1145px;width:81px;height:99px}.Mount_Icon_Parrot-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-1326px 0;width:81px;height:99px}.Mount_Icon_Parrot-Desert{background-image:url(spritesmith-main-9.png);background-position:-1326px -100px;width:81px;height:99px}.Mount_Icon_Parrot-Golden{background-image:url(spritesmith-main-9.png);background-position:-1326px -200px;width:81px;height:99px}.Mount_Icon_Parrot-Red{background-image:url(spritesmith-main-9.png);background-position:-1326px -300px;width:81px;height:99px}.Mount_Icon_Parrot-Shade{background-image:url(spritesmith-main-9.png);background-position:-1326px -400px;width:81px;height:99px}.Mount_Icon_Parrot-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-1326px -500px;width:81px;height:99px}.Mount_Icon_Parrot-White{background-image:url(spritesmith-main-9.png);background-position:-1326px -600px;width:81px;height:99px}.Mount_Icon_Parrot-Zombie{background-image:url(spritesmith-main-9.png);background-position:-1326px -700px;width:81px;height:99px}.Mount_Icon_Penguin-Base{background-image:url(spritesmith-main-9.png);background-position:-1326px -800px;width:81px;height:99px}.Mount_Icon_Penguin-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-1326px -900px;width:81px;height:99px}.Mount_Icon_Penguin-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-1326px -1000px;width:81px;height:99px}.Mount_Icon_Penguin-Desert{background-image:url(spritesmith-main-9.png);background-position:-1326px -1100px;width:81px;height:99px}.Mount_Icon_Penguin-Golden{background-image:url(spritesmith-main-9.png);background-position:0 -1245px;width:81px;height:99px}.Mount_Icon_Penguin-Red{background-image:url(spritesmith-main-9.png);background-position:-82px -1245px;width:81px;height:99px}.Mount_Icon_Penguin-Shade{background-image:url(spritesmith-main-9.png);background-position:-164px -1245px;width:81px;height:99px}.Mount_Icon_Penguin-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-246px -1245px;width:81px;height:99px}.Mount_Icon_Penguin-White{background-image:url(spritesmith-main-9.png);background-position:-328px -1245px;width:81px;height:99px}.Mount_Icon_Penguin-Zombie{background-image:url(spritesmith-main-9.png);background-position:-410px -1245px;width:81px;height:99px}.Mount_Icon_Phoenix-Base{background-image:url(spritesmith-main-9.png);background-position:-212px -230px;width:105px;height:105px}.Mount_Icon_Rat-Base{background-image:url(spritesmith-main-9.png);background-position:-574px -1245px;width:81px;height:99px}.Mount_Icon_Rat-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-656px -1245px;width:81px;height:99px}.Mount_Icon_Rat-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-738px -1245px;width:81px;height:99px}.Mount_Icon_Rat-Desert{background-image:url(spritesmith-main-9.png);background-position:-820px -1245px;width:81px;height:99px}.Mount_Icon_Rat-Golden{background-image:url(spritesmith-main-9.png);background-position:-902px -1245px;width:81px;height:99px}.Mount_Icon_Rat-Red{background-image:url(spritesmith-main-9.png);background-position:-984px -1245px;width:81px;height:99px}.Mount_Icon_Rat-Shade{background-image:url(spritesmith-main-9.png);background-position:-1066px -1245px;width:81px;height:99px}.Mount_Icon_Rat-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-1148px -1245px;width:81px;height:99px}.Mount_Icon_Rat-White{background-image:url(spritesmith-main-9.png);background-position:-1230px -1245px;width:81px;height:99px}.Mount_Icon_Rat-Zombie{background-image:url(spritesmith-main-9.png);background-position:-1312px -1245px;width:81px;height:99px}.Mount_Icon_Rock-Base{background-image:url(spritesmith-main-9.png);background-position:-1408px 0;width:81px;height:99px}.Mount_Icon_Rock-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-1408px -100px;width:81px;height:99px}.Mount_Icon_Rock-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-1408px -200px;width:81px;height:99px}.Mount_Icon_Rock-Desert{background-image:url(spritesmith-main-9.png);background-position:-1408px -300px;width:81px;height:99px}.Mount_Icon_Rock-Golden{background-image:url(spritesmith-main-9.png);background-position:-1408px -400px;width:81px;height:99px}.Mount_Icon_Rock-Red{background-image:url(spritesmith-main-9.png);background-position:-1408px -500px;width:81px;height:99px}.Mount_Icon_Rock-Shade{background-image:url(spritesmith-main-9.png);background-position:-1408px -600px;width:81px;height:99px}.Mount_Icon_Rock-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-1408px -700px;width:81px;height:99px}.Mount_Icon_Rock-White{background-image:url(spritesmith-main-9.png);background-position:-1408px -800px;width:81px;height:99px}.Mount_Icon_Rock-Zombie{background-image:url(spritesmith-main-9.png);background-position:-1408px -900px;width:81px;height:99px}.Mount_Icon_Rooster-Base{background-image:url(spritesmith-main-9.png);background-position:-1408px -1000px;width:81px;height:99px}.Mount_Icon_Rooster-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-1408px -1100px;width:81px;height:99px}.Mount_Icon_Rooster-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-1408px -1200px;width:81px;height:99px}.Mount_Icon_Rooster-Desert{background-image:url(spritesmith-main-9.png);background-position:0 -1345px;width:81px;height:99px}.Mount_Icon_Rooster-Golden{background-image:url(spritesmith-main-9.png);background-position:-82px -1345px;width:81px;height:99px}.Mount_Icon_Rooster-Red{background-image:url(spritesmith-main-9.png);background-position:-164px -1345px;width:81px;height:99px}.Mount_Icon_Rooster-Shade{background-image:url(spritesmith-main-9.png);background-position:-246px -1345px;width:81px;height:99px}.Mount_Icon_Rooster-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-328px -1345px;width:81px;height:99px}.Mount_Icon_Rooster-White{background-image:url(spritesmith-main-9.png);background-position:-410px -1345px;width:81px;height:99px}.Mount_Icon_Rooster-Zombie{background-image:url(spritesmith-main-9.png);background-position:-492px -1345px;width:81px;height:99px}.Mount_Icon_Seahorse-Base{background-image:url(spritesmith-main-9.png);background-position:-574px -1345px;width:81px;height:99px}.Mount_Icon_Seahorse-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-656px -1345px;width:81px;height:99px}.Mount_Icon_Seahorse-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-738px -1345px;width:81px;height:99px}.Mount_Icon_Seahorse-Desert{background-image:url(spritesmith-main-9.png);background-position:-820px -1345px;width:81px;height:99px}.Mount_Icon_Seahorse-Golden{background-image:url(spritesmith-main-9.png);background-position:-902px -1345px;width:81px;height:99px}.Mount_Icon_Seahorse-Red{background-image:url(spritesmith-main-9.png);background-position:-984px -1345px;width:81px;height:99px}.Mount_Icon_Seahorse-Shade{background-image:url(spritesmith-main-9.png);background-position:-1066px -1345px;width:81px;height:99px}.Mount_Icon_Seahorse-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-1148px -1345px;width:81px;height:99px}.Mount_Icon_Seahorse-White{background-image:url(spritesmith-main-9.png);background-position:-1230px -1345px;width:81px;height:99px}.Mount_Icon_Seahorse-Zombie{background-image:url(spritesmith-main-9.png);background-position:-1312px -1345px;width:81px;height:99px}.Mount_Icon_Sheep-Base{background-image:url(spritesmith-main-9.png);background-position:-1394px -1345px;width:81px;height:99px}.Mount_Icon_Sheep-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-1490px 0;width:81px;height:99px}.Mount_Icon_Sheep-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-1490px -100px;width:81px;height:99px}.Mount_Icon_Sheep-Desert{background-image:url(spritesmith-main-9.png);background-position:-1490px -200px;width:81px;height:99px}.Mount_Icon_Sheep-Golden{background-image:url(spritesmith-main-9.png);background-position:-1490px -300px;width:81px;height:99px}.Mount_Icon_Sheep-Red{background-image:url(spritesmith-main-9.png);background-position:-1490px -400px;width:81px;height:99px}.Mount_Icon_Sheep-Shade{background-image:url(spritesmith-main-9.png);background-position:-1490px -500px;width:81px;height:99px}.Mount_Icon_Sheep-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-1490px -600px;width:81px;height:99px}.Mount_Icon_Sheep-White{background-image:url(spritesmith-main-9.png);background-position:-1490px -700px;width:81px;height:99px}.Mount_Icon_Sheep-Zombie{background-image:url(spritesmith-main-9.png);background-position:-1490px -800px;width:81px;height:99px}.Mount_Icon_Slime-Base{background-image:url(spritesmith-main-9.png);background-position:-1490px -900px;width:81px;height:99px}.Mount_Icon_Slime-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-1490px -1000px;width:81px;height:99px}.Mount_Icon_Slime-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-1490px -1100px;width:81px;height:99px}.Mount_Icon_Slime-Desert{background-image:url(spritesmith-main-9.png);background-position:-1490px -1200px;width:81px;height:99px}.Mount_Icon_Slime-Golden{background-image:url(spritesmith-main-9.png);background-position:-1490px -1300px;width:81px;height:99px}.Mount_Icon_Slime-Red{background-image:url(spritesmith-main-9.png);background-position:0 -1445px;width:81px;height:99px}.Mount_Icon_Slime-Shade{background-image:url(spritesmith-main-9.png);background-position:-82px -1445px;width:81px;height:99px}.Mount_Icon_Slime-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-164px -1445px;width:81px;height:99px}.Mount_Icon_Slime-White{background-image:url(spritesmith-main-9.png);background-position:-246px -1445px;width:81px;height:99px}.Mount_Icon_Slime-Zombie{background-image:url(spritesmith-main-9.png);background-position:-328px -1445px;width:81px;height:99px}.Mount_Icon_Snake-Base{background-image:url(spritesmith-main-9.png);background-position:-410px -1445px;width:81px;height:99px}.Mount_Icon_Snake-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-492px -1445px;width:81px;height:99px}.Mount_Icon_Snake-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-574px -1445px;width:81px;height:99px}.Mount_Icon_Snake-Desert{background-image:url(spritesmith-main-9.png);background-position:-656px -1445px;width:81px;height:99px}.Mount_Icon_Snake-Golden{background-image:url(spritesmith-main-9.png);background-position:-738px -1445px;width:81px;height:99px}.Mount_Icon_Snake-Red{background-image:url(spritesmith-main-9.png);background-position:-820px -1445px;width:81px;height:99px}.Mount_Icon_Snake-Shade{background-image:url(spritesmith-main-9.png);background-position:-902px -1445px;width:81px;height:99px}.Mount_Icon_Snake-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-984px -1445px;width:81px;height:99px}.Mount_Icon_Snake-White{background-image:url(spritesmith-main-9.png);background-position:-1066px -1445px;width:81px;height:99px}.Mount_Icon_Snake-Zombie{background-image:url(spritesmith-main-9.png);background-position:-1148px -1445px;width:81px;height:99px}.Mount_Icon_Spider-Base{background-image:url(spritesmith-main-9.png);background-position:-1230px -1445px;width:81px;height:99px}.Mount_Icon_Spider-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-1312px -1445px;width:81px;height:99px}.Mount_Icon_Spider-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-1394px -1445px;width:81px;height:99px}.Mount_Icon_Spider-Desert{background-image:url(spritesmith-main-9.png);background-position:-1476px -1445px;width:81px;height:99px}.Mount_Icon_Spider-Golden{background-image:url(spritesmith-main-9.png);background-position:-1572px 0;width:81px;height:99px}.Mount_Icon_Spider-Red{background-image:url(spritesmith-main-9.png);background-position:-1572px -100px;width:81px;height:99px}.Mount_Icon_Spider-Shade{background-image:url(spritesmith-main-9.png);background-position:-1572px -200px;width:81px;height:99px}.Mount_Icon_Spider-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-1572px -300px;width:81px;height:99px}.Mount_Icon_Spider-White{background-image:url(spritesmith-main-9.png);background-position:-1572px -400px;width:81px;height:99px}.Mount_Icon_Spider-Zombie{background-image:url(spritesmith-main-9.png);background-position:-1572px -500px;width:81px;height:99px}.Mount_Icon_TRex-Base{background-image:url(spritesmith-main-9.png);background-position:-1572px -600px;width:81px;height:99px}.Mount_Icon_TRex-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-1572px -700px;width:81px;height:99px}.Mount_Icon_TRex-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-1572px -800px;width:81px;height:99px}.Mount_Icon_TRex-Desert{background-image:url(spritesmith-main-9.png);background-position:-1572px -900px;width:81px;height:99px}.Mount_Icon_TRex-Golden{background-image:url(spritesmith-main-9.png);background-position:-1572px -1000px;width:81px;height:99px}.Mount_Icon_TRex-Red{background-image:url(spritesmith-main-9.png);background-position:-1572px -1100px;width:81px;height:99px}.Mount_Icon_TRex-Shade{background-image:url(spritesmith-main-9.png);background-position:-1572px -1200px;width:81px;height:99px}.Mount_Icon_TRex-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-1572px -1300px;width:81px;height:99px}.Mount_Icon_TRex-White{background-image:url(spritesmith-main-9.png);background-position:-1572px -1400px;width:81px;height:99px}.Mount_Icon_TRex-Zombie{background-image:url(spritesmith-main-9.png);background-position:0 -1545px;width:81px;height:99px}.Mount_Icon_TigerCub-Base{background-image:url(spritesmith-main-9.png);background-position:-82px -1545px;width:81px;height:99px}.Mount_Icon_TigerCub-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-164px -1545px;width:81px;height:99px}.Mount_Icon_TigerCub-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-246px -1545px;width:81px;height:99px}.Mount_Icon_TigerCub-Desert{background-image:url(spritesmith-main-9.png);background-position:-328px -1545px;width:81px;height:99px}.Mount_Icon_TigerCub-Golden{background-image:url(spritesmith-main-9.png);background-position:-410px -1545px;width:81px;height:99px}.Mount_Icon_TigerCub-Peppermint{background-image:url(spritesmith-main-9.png);background-position:-492px -1545px;width:81px;height:99px}.Mount_Icon_TigerCub-Red{background-image:url(spritesmith-main-9.png);background-position:-574px -1545px;width:81px;height:99px}.Mount_Icon_TigerCub-Shade{background-image:url(spritesmith-main-9.png);background-position:-656px -1545px;width:81px;height:99px}.Mount_Icon_TigerCub-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-738px -1545px;width:81px;height:99px}.Mount_Icon_TigerCub-Spooky{background-image:url(spritesmith-main-9.png);background-position:-820px -1545px;width:81px;height:99px}.Mount_Icon_TigerCub-White{background-image:url(spritesmith-main-9.png);background-position:-902px -1545px;width:81px;height:99px}.Mount_Icon_TigerCub-Zombie{background-image:url(spritesmith-main-9.png);background-position:-984px -1545px;width:81px;height:99px}.Mount_Icon_Turkey-Base{background-image:url(spritesmith-main-9.png);background-position:-1066px -1545px;width:81px;height:99px}.Mount_Icon_Whale-Base{background-image:url(spritesmith-main-9.png);background-position:-1148px -1545px;width:81px;height:99px}.Mount_Icon_Whale-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-1230px -1545px;width:81px;height:99px}.Mount_Icon_Whale-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-1312px -1545px;width:81px;height:99px}.Mount_Icon_Whale-Desert{background-image:url(spritesmith-main-9.png);background-position:-1394px -1545px;width:81px;height:99px}.Mount_Icon_Whale-Golden{background-image:url(spritesmith-main-9.png);background-position:-1476px -1545px;width:81px;height:99px}.Mount_Icon_Whale-Red{background-image:url(spritesmith-main-9.png);background-position:-1558px -1545px;width:81px;height:99px}.Mount_Icon_Whale-Shade{background-image:url(spritesmith-main-9.png);background-position:-1654px 0;width:81px;height:99px}.Mount_Icon_Whale-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-1654px -100px;width:81px;height:99px}.Mount_Icon_Whale-White{background-image:url(spritesmith-main-9.png);background-position:-1654px -200px;width:81px;height:99px}.Mount_Icon_Whale-Zombie{background-image:url(spritesmith-main-9.png);background-position:-1654px -300px;width:81px;height:99px}.Mount_Icon_Wolf-Base{background-image:url(spritesmith-main-9.png);background-position:-1654px -400px;width:81px;height:99px}.Mount_Icon_Wolf-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-1654px -500px;width:81px;height:99px}.Mount_Icon_Wolf-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-1654px -600px;width:81px;height:99px}.Mount_Icon_Wolf-Desert{background-image:url(spritesmith-main-9.png);background-position:-1654px -700px;width:81px;height:99px}.Mount_Icon_Wolf-Golden{background-image:url(spritesmith-main-9.png);background-position:-1654px -800px;width:81px;height:99px}.Mount_Icon_Wolf-Peppermint{background-image:url(spritesmith-main-9.png);background-position:-1654px -900px;width:81px;height:99px}.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}.quest_burnout{background:url(/common/img/sprites/quest_burnout.gif) no-repeat;width:219px;height:249px}.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/spritesmith-largeSprites-0.css b/common/dist/sprites/spritesmith-largeSprites-0.css index cdfd478c95..2632bfb2e4 100644 --- a/common/dist/sprites/spritesmith-largeSprites-0.css +++ b/common/dist/sprites/spritesmith-largeSprites-0.css @@ -1,30 +1,36 @@ .2014_Fall_HealerPROMO2 { background-image: url(spritesmith-largeSprites-0.png); - background-position: -822px -995px; + background-position: -943px -616px; width: 90px; height: 90px; } .2014_Fall_Mage_PROMO9 { background-image: url(spritesmith-largeSprites-0.png); - background-position: -306px -417px; + background-position: -943px -252px; width: 120px; height: 90px; } .2014_Fall_RoguePROMO3 { background-image: url(spritesmith-largeSprites-0.png); - background-position: -808px -621px; + background-position: -943px -343px; width: 105px; height: 90px; } .2014_Fall_Warrior_PROMO { background-image: url(spritesmith-largeSprites-0.png); - background-position: -276px -995px; + background-position: -306px -402px; width: 90px; height: 90px; } +.promo_android { + background-image: url(spritesmith-largeSprites-0.png); + background-position: -943px 0px; + width: 175px; + height: 175px; +} .promo_backtoschool { background-image: url(spritesmith-largeSprites-0.png); - background-position: -943px -522px; + background-position: -1119px -251px; width: 150px; height: 150px; } @@ -48,7 +54,7 @@ } .promo_dilatoryDistress { background-image: url(spritesmith-largeSprites-0.png); - background-position: -458px -995px; + background-position: -452px -417px; width: 90px; height: 90px; } @@ -60,25 +66,25 @@ } .promo_enchanted_armoire_201507 { background-image: url(spritesmith-largeSprites-0.png); - background-position: -943px -673px; + background-position: -1119px -550px; width: 217px; height: 90px; } .promo_enchanted_armoire_201508 { background-image: url(spritesmith-largeSprites-0.png); - background-position: -648px -724px; + background-position: -1119px -824px; width: 180px; height: 90px; } .promo_enchanted_armoire_201509 { background-image: url(spritesmith-largeSprites-0.png); - background-position: -549px -995px; + background-position: -543px -417px; width: 90px; height: 90px; } .promo_enchanted_armoire_201511 { background-image: url(spritesmith-largeSprites-0.png); - background-position: -306px -326px; + background-position: -1225px -991px; width: 122px; height: 90px; } @@ -96,151 +102,151 @@ } .promo_haunted_hair { background-image: url(spritesmith-largeSprites-0.png); - background-position: -1094px -522px; + background-position: -1260px -402px; width: 100px; height: 137px; } .customize-option.promo_haunted_hair { background-image: url(spritesmith-largeSprites-0.png); - background-position: -1119px -537px; + background-position: -1285px -417px; width: 60px; height: 60px; } .promo_item_notif { background-image: url(spritesmith-largeSprites-0.png); - background-position: -943px -271px; + background-position: -1119px 0px; width: 249px; height: 102px; } .promo_mystery_201405 { background-image: url(spritesmith-largeSprites-0.png); - background-position: -1095px -995px; + background-position: -380px -1008px; width: 90px; height: 90px; } .promo_mystery_201406 { background-image: url(spritesmith-largeSprites-0.png); - background-position: -91px -995px; + background-position: -1270px -251px; width: 90px; height: 96px; } .promo_mystery_201407 { background-image: url(spritesmith-largeSprites-0.png); - background-position: -628px -241px; + background-position: -1037px -525px; width: 42px; height: 62px; } .promo_mystery_201408 { background-image: url(spritesmith-largeSprites-0.png); - background-position: -1161px -764px; + background-position: -1300px -824px; width: 60px; height: 71px; } .promo_mystery_201409 { background-image: url(spritesmith-largeSprites-0.png); - background-position: -731px -995px; + background-position: -306px -311px; width: 90px; height: 90px; } .promo_mystery_201410 { background-image: url(spritesmith-largeSprites-0.png); - background-position: -1161px -673px; + background-position: -1272px -915px; width: 72px; height: 63px; } .promo_mystery_201411 { background-image: url(spritesmith-largeSprites-0.png); - background-position: -913px -995px; + background-position: -808px -621px; width: 90px; height: 90px; } .promo_mystery_201412 { background-image: url(spritesmith-largeSprites-0.png); - background-position: -1195px -592px; + background-position: -1037px -434px; width: 42px; height: 66px; } .promo_mystery_201501 { background-image: url(spritesmith-largeSprites-0.png); - background-position: -1193px -271px; + background-position: -1318px -732px; width: 48px; height: 63px; } .promo_mystery_201502 { background-image: url(spritesmith-largeSprites-0.png); - background-position: -367px -995px; + background-position: -943px -707px; width: 90px; height: 90px; } .promo_mystery_201503 { background-image: url(spritesmith-largeSprites-0.png); - background-position: -91px -1101px; + background-position: -562px -1008px; width: 90px; height: 90px; } .promo_mystery_201504 { background-image: url(spritesmith-largeSprites-0.png); - background-position: -874px -525px; + background-position: -1049px -343px; width: 60px; height: 69px; } .promo_mystery_201505 { background-image: url(spritesmith-largeSprites-0.png); - background-position: -640px -995px; + background-position: -306px -220px; width: 90px; height: 90px; } .promo_mystery_201506 { background-image: url(spritesmith-largeSprites-0.png); - background-position: -1195px -522px; + background-position: -1064px -252px; width: 42px; height: 69px; } .promo_mystery_201507 { background-image: url(spritesmith-largeSprites-0.png); - background-position: 0px -995px; + background-position: -1276px -103px; width: 90px; height: 105px; } .promo_mystery_201508 { background-image: url(spritesmith-largeSprites-0.png); - background-position: -829px -724px; + background-position: -943px -525px; width: 93px; height: 90px; } .promo_mystery_201509 { background-image: url(spritesmith-largeSprites-0.png); - background-position: -1004px -995px; + background-position: -289px -1008px; width: 90px; height: 90px; } .promo_mystery_201510 { background-image: url(spritesmith-largeSprites-0.png); - background-position: -182px -995px; + background-position: -943px -434px; width: 93px; height: 90px; } .promo_mystery_201511 { background-image: url(spritesmith-largeSprites-0.png); - background-position: 0px -1101px; + background-position: -471px -1008px; width: 90px; height: 90px; } .promo_mystery_3014 { background-image: url(spritesmith-largeSprites-0.png); - background-position: -943px -764px; + background-position: -1119px -641px; width: 217px; height: 90px; } .promo_orca { background-image: url(spritesmith-largeSprites-0.png); - background-position: -306px -220px; + background-position: -1119px -991px; width: 105px; height: 105px; } .promo_partyhats { background-image: url(spritesmith-largeSprites-0.png); - background-position: -943px -855px; + background-position: -662px -835px; width: 115px; height: 47px; } @@ -258,13 +264,13 @@ } .promo_pet_skins { background-image: url(spritesmith-largeSprites-0.png); - background-position: -1100px -374px; + background-position: -1119px -402px; width: 140px; height: 147px; } .customize-option.promo_pet_skins { background-image: url(spritesmith-largeSprites-0.png); - background-position: -1125px -389px; + background-position: -1144px -417px; width: 60px; height: 60px; } @@ -282,25 +288,25 @@ } .promo_splashyskins { background-image: url(spritesmith-largeSprites-0.png); - background-position: -452px -417px; + background-position: -1119px -732px; width: 198px; height: 91px; } .customize-option.promo_splashyskins { background-image: url(spritesmith-largeSprites-0.png); - background-position: -477px -432px; + background-position: -1144px -747px; width: 60px; height: 60px; } .promo_springclasses2014 { background-image: url(spritesmith-largeSprites-0.png); - background-position: -943px -180px; + background-position: -648px -724px; width: 288px; height: 90px; } .promo_springclasses2015 { background-image: url(spritesmith-largeSprites-0.png); - background-position: -943px -89px; + background-position: 0px -1008px; width: 288px; height: 90px; } @@ -312,19 +318,19 @@ } .promo_summer_classes_2015 { background-image: url(spritesmith-largeSprites-0.png); - background-position: -943px 0px; + background-position: 0px -919px; width: 300px; height: 88px; } .promo_updos { background-image: url(spritesmith-largeSprites-0.png); - background-position: -943px -374px; + background-position: -1119px -103px; width: 156px; height: 147px; } .promo_veteran_pets { background-image: url(spritesmith-largeSprites-0.png); - background-position: 0px -919px; + background-position: -943px -176px; width: 146px; height: 75px; } @@ -336,13 +342,13 @@ } .promo_winteryhair { background-image: url(spritesmith-largeSprites-0.png); - background-position: -662px -835px; + background-position: -1119px -915px; width: 152px; height: 75px; } .customize-option.promo_winteryhair { background-image: url(spritesmith-largeSprites-0.png); - background-position: -687px -850px; + background-position: -1144px -930px; width: 60px; height: 60px; } diff --git a/common/dist/sprites/spritesmith-largeSprites-0.png b/common/dist/sprites/spritesmith-largeSprites-0.png index 45fab683a6..4874189df2 100644 Binary files a/common/dist/sprites/spritesmith-largeSprites-0.png and b/common/dist/sprites/spritesmith-largeSprites-0.png differ diff --git a/common/dist/sprites/spritesmith-main-0.css b/common/dist/sprites/spritesmith-main-0.css index 31402b00fb..aa55acb916 100644 --- a/common/dist/sprites/spritesmith-main-0.css +++ b/common/dist/sprites/spritesmith-main-0.css @@ -1,468 +1,474 @@ .achievement-alien { background-image: url(spritesmith-main-0.png); - background-position: -1678px -1451px; + background-position: -1208px -1180px; width: 24px; height: 26px; } .achievement-alien2x { background-image: url(spritesmith-main-0.png); - background-position: -895px -979px; + background-position: -1223px -239px; width: 48px; height: 52px; } .achievement-alpha { background-image: url(spritesmith-main-0.png); - background-position: -1678px -1424px; + background-position: -1183px -1180px; width: 24px; height: 26px; } .achievement-armor { background-image: url(spritesmith-main-0.png); - background-position: -1678px -1397px; + background-position: -1232px -1127px; width: 24px; height: 26px; } .achievement-armor2x { background-image: url(spritesmith-main-0.png); - background-position: -944px -979px; + background-position: -1223px -330px; width: 48px; height: 52px; } .achievement-boot { background-image: url(spritesmith-main-0.png); - background-position: -1678px -1343px; + background-position: -1208px -1089px; width: 24px; height: 26px; } .achievement-boot2x { background-image: url(spritesmith-main-0.png); - background-position: -1042px -979px; + background-position: -1223px -512px; width: 48px; height: 52px; } .achievement-bow { background-image: url(spritesmith-main-0.png); - background-position: -1678px -1289px; + background-position: -1232px -1036px; width: 24px; height: 26px; } .achievement-bow2x { background-image: url(spritesmith-main-0.png); - background-position: -504px -1582px; + background-position: -1223px -694px; width: 48px; height: 52px; } .achievement-burnout { background-image: url(spritesmith-main-0.png); - background-position: -1678px -1235px; + background-position: -1248px -929px; width: 24px; height: 26px; } .achievement-burnout2x { background-image: url(spritesmith-main-0.png); - background-position: -602px -1582px; + background-position: -1223px -876px; width: 48px; height: 52px; } .achievement-cactus { background-image: url(spritesmith-main-0.png); - background-position: -1678px -1181px; + background-position: -1248px -838px; width: 24px; height: 26px; } .achievement-cactus2x { background-image: url(spritesmith-main-0.png); - background-position: -700px -1582px; + background-position: -1181px -967px; width: 48px; height: 52px; } .achievement-cake { background-image: url(spritesmith-main-0.png); - background-position: -1678px -1127px; + background-position: -1248px -747px; width: 24px; height: 26px; } .achievement-cake2x { background-image: url(spritesmith-main-0.png); - background-position: -798px -1582px; + background-position: -1183px -1127px; width: 48px; height: 52px; } .achievement-cave { background-image: url(spritesmith-main-0.png); - background-position: -1678px -1073px; + background-position: -1248px -656px; width: 24px; height: 26px; } .achievement-cave2x { background-image: url(spritesmith-main-0.png); - background-position: -896px -1582px; + background-position: -1365px -1309px; width: 48px; height: 52px; } .achievement-coffin { background-image: url(spritesmith-main-0.png); - background-position: -1678px -1019px; + background-position: -1248px -565px; width: 24px; height: 26px; } .achievement-comment { background-image: url(spritesmith-main-0.png); - background-position: -1678px -992px; + background-position: -1223px -565px; width: 24px; height: 26px; } .achievement-comment2x { background-image: url(spritesmith-main-0.png); - background-position: -994px -1582px; + background-position: -1547px -1491px; width: 48px; height: 52px; } .achievement-costumeContest { background-image: url(spritesmith-main-0.png); - background-position: -1678px -938px; + background-position: -1223px -474px; width: 24px; height: 26px; } .achievement-costumeContest2x { background-image: url(spritesmith-main-0.png); - background-position: -1092px -1582px; + background-position: -322px -1582px; width: 48px; height: 52px; } .achievement-dilatory { background-image: url(spritesmith-main-0.png); - background-position: -1678px -884px; + background-position: -1223px -383px; width: 24px; height: 26px; } .achievement-firefox { background-image: url(spritesmith-main-0.png); - background-position: -1678px -857px; + background-position: -1248px -292px; width: 24px; height: 26px; } .achievement-greeting { background-image: url(spritesmith-main-0.png); - background-position: -1678px -830px; + background-position: -1223px -292px; width: 24px; height: 26px; } .achievement-greeting2x { background-image: url(spritesmith-main-0.png); - background-position: -1190px -1582px; + background-position: -420px -1582px; width: 48px; height: 52px; } .achievement-habitBirthday { background-image: url(spritesmith-main-0.png); - background-position: -1678px -776px; + background-position: -1223px -201px; width: 24px; height: 26px; } .achievement-habitBirthday2x { background-image: url(spritesmith-main-0.png); - background-position: -1288px -1582px; + background-position: -518px -1582px; width: 48px; height: 52px; } .achievement-habiticaDay { background-image: url(spritesmith-main-0.png); - background-position: -1678px -722px; + background-position: -1298px -1183px; width: 24px; height: 26px; } .achievement-habiticaDay2x { background-image: url(spritesmith-main-0.png); - background-position: -1386px -1582px; + background-position: -616px -1582px; width: 48px; height: 52px; } .achievement-heart { background-image: url(spritesmith-main-0.png); - background-position: -1678px -668px; + background-position: -1414px -1274px; width: 24px; height: 26px; } .achievement-heart2x { background-image: url(spritesmith-main-0.png); - background-position: -1435px -1582px; + background-position: -665px -1582px; width: 48px; height: 52px; } .achievement-karaoke-2x { background-image: url(spritesmith-main-0.png); - background-position: -1533px -1582px; + background-position: -763px -1582px; width: 48px; height: 52px; } .achievement-karaoke { background-image: url(spritesmith-main-0.png); - background-position: -1678px -587px; + background-position: -1505px -1365px; width: 24px; height: 26px; } .achievement-ninja { background-image: url(spritesmith-main-0.png); - background-position: -1678px -560px; + background-position: -1480px -1365px; width: 24px; height: 26px; } .achievement-ninja2x { background-image: url(spritesmith-main-0.png); - background-position: -1678px 0px; + background-position: -861px -1582px; width: 48px; height: 52px; } .achievement-nye { background-image: url(spritesmith-main-0.png); - background-position: -1678px -506px; + background-position: -1596px -1456px; width: 24px; height: 26px; } .achievement-nye2x { background-image: url(spritesmith-main-0.png); - background-position: -1678px -106px; + background-position: -959px -1582px; width: 48px; height: 52px; } .achievement-perfect { background-image: url(spritesmith-main-0.png); - background-position: -1678px -452px; + background-position: -1546px -1456px; width: 24px; height: 26px; } .achievement-perfect2x { background-image: url(spritesmith-main-0.png); - background-position: -846px -979px; + background-position: -1223px -148px; width: 48px; height: 52px; } .achievement-rat { background-image: url(spritesmith-main-0.png); - background-position: -1678px -911px; + background-position: -1248px -383px; width: 24px; height: 26px; } .achievement-rat2x { background-image: url(spritesmith-main-0.png); - background-position: -1678px -318px; + background-position: -1155px -1582px; width: 48px; height: 52px; } .achievement-seafoam { background-image: url(spritesmith-main-0.png); - background-position: -1678px -398px; + background-position: -1662px -1547px; width: 24px; height: 26px; } .achievement-seafoam2x { background-image: url(spritesmith-main-0.png); - background-position: -1678px -265px; + background-position: -1106px -1582px; width: 48px; height: 52px; } .achievement-shield { background-image: url(spritesmith-main-0.png); - background-position: -1678px -425px; + background-position: -1687px -1547px; width: 24px; height: 26px; } .achievement-shield2x { background-image: url(spritesmith-main-0.png); - background-position: -1678px -159px; + background-position: -1008px -1582px; width: 48px; height: 52px; } .achievement-shinySeed { background-image: url(spritesmith-main-0.png); - background-position: -1678px -479px; + background-position: -1571px -1456px; width: 24px; height: 26px; } .achievement-shinySeed2x { background-image: url(spritesmith-main-0.png); - background-position: -1678px -53px; + background-position: -910px -1582px; width: 48px; height: 52px; } .achievement-snowball { background-image: url(spritesmith-main-0.png); - background-position: -1678px -533px; + background-position: -1455px -1365px; width: 24px; height: 26px; } .achievement-snowball2x { background-image: url(spritesmith-main-0.png); - background-position: -1582px -1582px; + background-position: -812px -1582px; width: 48px; height: 52px; } .achievement-spookDust { background-image: url(spritesmith-main-0.png); - background-position: -1678px -614px; + background-position: -1364px -1274px; width: 24px; height: 26px; } .achievement-spookDust2x { background-image: url(spritesmith-main-0.png); - background-position: -1484px -1582px; + background-position: -714px -1582px; width: 48px; height: 52px; } .achievement-stoikalm { background-image: url(spritesmith-main-0.png); - background-position: -1678px -641px; + background-position: -1389px -1274px; width: 24px; height: 26px; } .achievement-sun { background-image: url(spritesmith-main-0.png); - background-position: -1678px -695px; + background-position: -1273px -1183px; width: 24px; height: 26px; } .achievement-sun2x { background-image: url(spritesmith-main-0.png); - background-position: -1337px -1582px; + background-position: -567px -1582px; width: 48px; height: 52px; } .achievement-sword { background-image: url(spritesmith-main-0.png); - background-position: -1678px -749px; + background-position: -1323px -1183px; width: 24px; height: 26px; } .achievement-sword2x { background-image: url(spritesmith-main-0.png); - background-position: -1239px -1582px; + background-position: -469px -1582px; width: 48px; height: 52px; } .achievement-thankyou { background-image: url(spritesmith-main-0.png); - background-position: -1678px -803px; + background-position: -1248px -201px; width: 24px; height: 26px; } .achievement-thankyou2x { background-image: url(spritesmith-main-0.png); - background-position: -1141px -1582px; + background-position: -371px -1582px; width: 48px; height: 52px; } .achievement-thermometer { background-image: url(spritesmith-main-0.png); - background-position: -1678px -371px; + background-position: -1637px -1547px; width: 24px; height: 26px; } .achievement-thermometer2x { background-image: url(spritesmith-main-0.png); - background-position: -1043px -1582px; + background-position: -273px -1582px; width: 48px; height: 52px; } .achievement-tree { background-image: url(spritesmith-main-0.png); - background-position: -1678px -965px; + background-position: -1248px -474px; width: 24px; height: 26px; } .achievement-tree2x { background-image: url(spritesmith-main-0.png); - background-position: -945px -1582px; + background-position: -1456px -1400px; width: 48px; height: 52px; } .achievement-triadbingo { background-image: url(spritesmith-main-0.png); - background-position: -1678px -1046px; + background-position: -1223px -656px; width: 24px; height: 26px; } .achievement-triadbingo2x { background-image: url(spritesmith-main-0.png); - background-position: -847px -1582px; + background-position: -1274px -1218px; width: 48px; height: 52px; } .achievement-ultimate-healer { background-image: url(spritesmith-main-0.png); - background-position: -1678px -1100px; + background-position: -1223px -747px; width: 24px; height: 26px; } .achievement-ultimate-healer2x { background-image: url(spritesmith-main-0.png); - background-position: -749px -1582px; + background-position: -1183px -1036px; width: 48px; height: 52px; } .achievement-ultimate-mage { background-image: url(spritesmith-main-0.png); - background-position: -1678px -1154px; + background-position: -1223px -838px; width: 24px; height: 26px; } .achievement-ultimate-mage2x { background-image: url(spritesmith-main-0.png); - background-position: -651px -1582px; + background-position: -1132px -967px; width: 48px; height: 52px; } .achievement-ultimate-rogue { background-image: url(spritesmith-main-0.png); - background-position: -1678px -1208px; + background-position: -1223px -929px; width: 24px; height: 26px; } .achievement-ultimate-rogue2x { background-image: url(spritesmith-main-0.png); - background-position: -553px -1582px; + background-position: -1223px -785px; width: 48px; height: 52px; } .achievement-ultimate-warrior { background-image: url(spritesmith-main-0.png); - background-position: -1678px -1262px; + background-position: -1230px -967px; width: 24px; height: 26px; } .achievement-ultimate-warrior2x { background-image: url(spritesmith-main-0.png); - background-position: -455px -1582px; + background-position: -1223px -603px; width: 48px; height: 52px; } .achievement-valentine { background-image: url(spritesmith-main-0.png); - background-position: -1678px -1316px; + background-position: -1183px -1089px; width: 24px; height: 26px; } .achievement-valentine2x { background-image: url(spritesmith-main-0.png); - background-position: -993px -979px; + background-position: -1223px -421px; width: 48px; height: 52px; } .achievement-wolf { background-image: url(spritesmith-main-0.png); - background-position: -1678px -1370px; + background-position: -1233px -1089px; width: 24px; height: 26px; } .achievement-wolf2x { background-image: url(spritesmith-main-0.png); - background-position: -1678px -212px; + background-position: -1057px -1582px; width: 48px; height: 52px; } +.background_alpine_slopes { + background-image: url(spritesmith-main-0.png); + background-position: -705px -592px; + width: 140px; + height: 147px; +} .background_autumn_forest { background-image: url(spritesmith-main-0.png); - background-position: -423px -592px; + background-position: -423px -444px; width: 140px; height: 147px; } @@ -474,85 +480,85 @@ } .background_blacksmithy { background-image: url(spritesmith-main-0.png); - background-position: -709px -148px; + background-position: -709px -444px; width: 140px; height: 147px; } .background_cherry_trees { background-image: url(spritesmith-main-0.png); - background-position: -709px -296px; + background-position: -141px -592px; width: 140px; height: 147px; } .background_clouds { background-image: url(spritesmith-main-0.png); - background-position: 0px -592px; + background-position: -564px -592px; width: 140px; height: 147px; } .background_coral_reef { background-image: url(spritesmith-main-0.png); - background-position: -850px -148px; + background-position: -850px -296px; width: 140px; height: 147px; } .background_crystal_cave { background-image: url(spritesmith-main-0.png); - background-position: -850px -592px; + background-position: 0px -740px; width: 140px; height: 147px; } .background_dilatory_ruins { background-image: url(spritesmith-main-0.png); - background-position: 0px -740px; + background-position: -141px -740px; width: 140px; height: 147px; } .background_distant_castle { background-image: url(spritesmith-main-0.png); - background-position: -423px -888px; + background-position: -705px -888px; width: 140px; height: 147px; } .background_drifting_raft { background-image: url(spritesmith-main-0.png); - background-position: -564px -888px; + background-position: -846px -888px; width: 140px; height: 147px; } .background_dusty_canyons { background-image: url(spritesmith-main-0.png); - background-position: -705px -888px; + background-position: -987px -888px; width: 140px; height: 147px; } .background_fairy_ring { background-image: url(spritesmith-main-0.png); - background-position: -568px 0px; + background-position: -568px -148px; width: 140px; height: 147px; } .background_floating_islands { background-image: url(spritesmith-main-0.png); - background-position: -568px -148px; + background-position: -568px -296px; width: 140px; height: 147px; } .background_floral_meadow { background-image: url(spritesmith-main-0.png); - background-position: -568px -296px; + background-position: 0px -444px; width: 140px; height: 147px; } .background_forest { background-image: url(spritesmith-main-0.png); - background-position: 0px -444px; + background-position: -141px -444px; width: 140px; height: 147px; } .background_frigid_peak { background-image: url(spritesmith-main-0.png); - background-position: -141px -444px; + background-position: -282px -444px; width: 140px; height: 147px; } @@ -564,19 +570,19 @@ } .background_graveyard { background-image: url(spritesmith-main-0.png); - background-position: -423px -444px; + background-position: -564px -444px; width: 140px; height: 147px; } .background_gumdrop_land { background-image: url(spritesmith-main-0.png); - background-position: -564px -444px; + background-position: -709px 0px; width: 140px; height: 147px; } .background_harvest_feast { background-image: url(spritesmith-main-0.png); - background-position: -709px 0px; + background-position: -709px -148px; width: 140px; height: 147px; } @@ -594,7 +600,7 @@ } .background_haunted_house { background-image: url(spritesmith-main-0.png); - background-position: -709px -444px; + background-position: 0px -592px; width: 140px; height: 147px; } @@ -606,2365 +612,2293 @@ } .background_iceberg { background-image: url(spritesmith-main-0.png); - background-position: -141px -592px; + background-position: -282px -592px; width: 140px; height: 147px; } .background_island_waterfalls { background-image: url(spritesmith-main-0.png); - background-position: -282px -592px; + background-position: -423px -592px; width: 140px; height: 147px; } .background_marble_temple { background-image: url(spritesmith-main-0.png); - background-position: -142px 0px; + background-position: 0px 0px; width: 141px; height: 147px; } .background_market { background-image: url(spritesmith-main-0.png); - background-position: -564px -592px; + background-position: -568px 0px; width: 140px; height: 147px; } .background_mountain_lake { background-image: url(spritesmith-main-0.png); - background-position: -705px -592px; + background-position: -850px 0px; width: 140px; height: 147px; } .background_night_dunes { background-image: url(spritesmith-main-0.png); - background-position: -850px 0px; + background-position: -850px -148px; width: 140px; height: 147px; } .background_open_waters { background-image: url(spritesmith-main-0.png); - background-position: 0px 0px; + background-position: -426px -148px; width: 141px; height: 147px; } .background_pagodas { background-image: url(spritesmith-main-0.png); - background-position: -850px -296px; + background-position: -850px -444px; width: 140px; height: 147px; } .background_pumpkin_patch { background-image: url(spritesmith-main-0.png); - background-position: -850px -444px; + background-position: -850px -592px; width: 140px; height: 147px; } .background_pyramids { background-image: url(spritesmith-main-0.png); - background-position: -426px -148px; + background-position: 0px -296px; width: 141px; height: 147px; } .background_rolling_hills { background-image: url(spritesmith-main-0.png); - background-position: 0px -296px; + background-position: -142px -296px; width: 141px; height: 147px; } .background_seafarer_ship { background-image: url(spritesmith-main-0.png); - background-position: -141px -740px; + background-position: -282px -740px; width: 140px; height: 147px; } .background_shimmery_bubbles { background-image: url(spritesmith-main-0.png); - background-position: -282px -740px; + background-position: -423px -740px; width: 140px; height: 147px; } .background_slimy_swamp { background-image: url(spritesmith-main-0.png); - background-position: -423px -740px; + background-position: -564px -740px; width: 140px; height: 147px; } .background_snowy_pines { - background-image: url(spritesmith-main-0.png); - background-position: -564px -740px; - width: 140px; - height: 147px; -} -.background_south_pole { background-image: url(spritesmith-main-0.png); background-position: -705px -740px; width: 140px; height: 147px; } -.background_spring_rain { +.background_snowy_sunrise { background-image: url(spritesmith-main-0.png); background-position: -846px -740px; width: 140px; height: 147px; } -.background_stable { +.background_south_pole { background-image: url(spritesmith-main-0.png); background-position: -991px 0px; width: 140px; height: 147px; } -.background_stained_glass { +.background_spring_rain { background-image: url(spritesmith-main-0.png); background-position: -991px -148px; width: 140px; height: 147px; } -.background_starry_skies { +.background_stable { background-image: url(spritesmith-main-0.png); background-position: -991px -296px; width: 140px; height: 147px; } -.background_sunken_ship { +.background_stained_glass { background-image: url(spritesmith-main-0.png); background-position: -991px -444px; width: 140px; height: 147px; } -.background_sunset_meadow { +.background_starry_skies { background-image: url(spritesmith-main-0.png); background-position: -991px -592px; width: 140px; height: 147px; } -.background_sunset_oasis { +.background_sunken_ship { background-image: url(spritesmith-main-0.png); background-position: -991px -740px; width: 140px; height: 147px; } -.background_sunset_savannah { +.background_sunset_meadow { background-image: url(spritesmith-main-0.png); background-position: 0px -888px; width: 140px; height: 147px; } -.background_swarming_darkness { +.background_sunset_oasis { background-image: url(spritesmith-main-0.png); background-position: -141px -888px; width: 140px; height: 147px; } -.background_tavern { +.background_sunset_savannah { background-image: url(spritesmith-main-0.png); background-position: -282px -888px; width: 140px; height: 147px; } -.background_thunderstorm { +.background_swarming_darkness { background-image: url(spritesmith-main-0.png); - background-position: -142px -296px; - width: 141px; + background-position: -423px -888px; + width: 140px; height: 147px; } -.background_twinkly_lights { +.background_tavern { + background-image: url(spritesmith-main-0.png); + background-position: -564px -888px; + width: 140px; + height: 147px; +} +.background_thunderstorm { background-image: url(spritesmith-main-0.png); background-position: -284px -296px; width: 141px; height: 147px; } -.background_twinkly_party_lights { +.background_twinkly_lights { background-image: url(spritesmith-main-0.png); background-position: -426px -296px; width: 141px; height: 147px; } +.background_twinkly_party_lights { + background-image: url(spritesmith-main-0.png); + background-position: -142px 0px; + width: 141px; + height: 147px; +} .background_volcano { background-image: url(spritesmith-main-0.png); - background-position: -282px -444px; + background-position: -1132px 0px; + width: 140px; + height: 147px; +} +.background_winter_town { + background-image: url(spritesmith-main-0.png); + background-position: -709px -296px; width: 140px; height: 147px; } .hair_beard_1_TRUred { background-image: url(spritesmith-main-0.png); - background-position: -1314px -910px; + background-position: -91px -1309px; width: 90px; height: 90px; } .customize-option.hair_beard_1_TRUred { background-image: url(spritesmith-main-0.png); - background-position: -1339px -925px; + background-position: -116px -1324px; width: 60px; height: 60px; } .hair_beard_1_aurora { background-image: url(spritesmith-main-0.png); - background-position: -1314px -1001px; + background-position: -182px -1309px; width: 90px; height: 90px; } .customize-option.hair_beard_1_aurora { background-image: url(spritesmith-main-0.png); - background-position: -1339px -1016px; + background-position: -207px -1324px; width: 60px; height: 60px; } .hair_beard_1_black { background-image: url(spritesmith-main-0.png); - background-position: -1314px -1092px; + background-position: -273px -1309px; width: 90px; height: 90px; } .customize-option.hair_beard_1_black { background-image: url(spritesmith-main-0.png); - background-position: -1339px -1107px; + background-position: -298px -1324px; width: 60px; height: 60px; } .hair_beard_1_blond { background-image: url(spritesmith-main-0.png); - background-position: -1314px -1183px; + background-position: -364px -1309px; width: 90px; height: 90px; } .customize-option.hair_beard_1_blond { background-image: url(spritesmith-main-0.png); - background-position: -1339px -1198px; + background-position: -389px -1324px; width: 60px; height: 60px; } .hair_beard_1_blue { background-image: url(spritesmith-main-0.png); - background-position: 0px -1309px; + background-position: -455px -1309px; width: 90px; height: 90px; } .customize-option.hair_beard_1_blue { background-image: url(spritesmith-main-0.png); - background-position: -25px -1324px; + background-position: -480px -1324px; width: 60px; height: 60px; } .hair_beard_1_brown { background-image: url(spritesmith-main-0.png); - background-position: -91px -1309px; + background-position: -546px -1309px; width: 90px; height: 90px; } .customize-option.hair_beard_1_brown { background-image: url(spritesmith-main-0.png); - background-position: -116px -1324px; + background-position: -571px -1324px; width: 60px; height: 60px; } .hair_beard_1_candycane { background-image: url(spritesmith-main-0.png); - background-position: -182px -1309px; + background-position: -637px -1309px; width: 90px; height: 90px; } .customize-option.hair_beard_1_candycane { background-image: url(spritesmith-main-0.png); - background-position: -207px -1324px; + background-position: -662px -1324px; width: 60px; height: 60px; } .hair_beard_1_candycorn { background-image: url(spritesmith-main-0.png); - background-position: -273px -1309px; + background-position: -728px -1309px; width: 90px; height: 90px; } .customize-option.hair_beard_1_candycorn { background-image: url(spritesmith-main-0.png); - background-position: -298px -1324px; + background-position: -753px -1324px; width: 60px; height: 60px; } .hair_beard_1_festive { background-image: url(spritesmith-main-0.png); - background-position: -364px -1309px; + background-position: -819px -1309px; width: 90px; height: 90px; } .customize-option.hair_beard_1_festive { background-image: url(spritesmith-main-0.png); - background-position: -389px -1324px; + background-position: -844px -1324px; width: 60px; height: 60px; } .hair_beard_1_frost { background-image: url(spritesmith-main-0.png); - background-position: -455px -1309px; + background-position: -910px -1309px; width: 90px; height: 90px; } .customize-option.hair_beard_1_frost { background-image: url(spritesmith-main-0.png); - background-position: -480px -1324px; + background-position: -935px -1324px; width: 60px; height: 60px; } .hair_beard_1_ghostwhite { background-image: url(spritesmith-main-0.png); - background-position: -546px -1309px; + background-position: -1001px -1309px; width: 90px; height: 90px; } .customize-option.hair_beard_1_ghostwhite { background-image: url(spritesmith-main-0.png); - background-position: -571px -1324px; + background-position: -1026px -1324px; width: 60px; height: 60px; } .hair_beard_1_green { background-image: url(spritesmith-main-0.png); - background-position: -637px -1309px; + background-position: -1092px -1309px; width: 90px; height: 90px; } .customize-option.hair_beard_1_green { background-image: url(spritesmith-main-0.png); - background-position: -662px -1324px; + background-position: -1117px -1324px; width: 60px; height: 60px; } .hair_beard_1_halloween { background-image: url(spritesmith-main-0.png); - background-position: -728px -1309px; + background-position: -1183px -1309px; width: 90px; height: 90px; } .customize-option.hair_beard_1_halloween { background-image: url(spritesmith-main-0.png); - background-position: -753px -1324px; + background-position: -1208px -1324px; width: 60px; height: 60px; } .hair_beard_1_holly { background-image: url(spritesmith-main-0.png); - background-position: -819px -1309px; + background-position: -1274px -1309px; width: 90px; height: 90px; } .customize-option.hair_beard_1_holly { background-image: url(spritesmith-main-0.png); - background-position: -844px -1324px; + background-position: -1299px -1324px; width: 60px; height: 60px; } .hair_beard_1_hollygreen { background-image: url(spritesmith-main-0.png); - background-position: -910px -1309px; + background-position: -1455px 0px; width: 90px; height: 90px; } .customize-option.hair_beard_1_hollygreen { background-image: url(spritesmith-main-0.png); - background-position: -935px -1324px; + background-position: -1480px -15px; width: 60px; height: 60px; } .hair_beard_1_midnight { background-image: url(spritesmith-main-0.png); - background-position: -1001px -1309px; + background-position: -1455px -91px; width: 90px; height: 90px; } .customize-option.hair_beard_1_midnight { background-image: url(spritesmith-main-0.png); - background-position: -1026px -1324px; + background-position: -1480px -106px; width: 60px; height: 60px; } .hair_beard_1_pblue { background-image: url(spritesmith-main-0.png); - background-position: -1092px -1309px; + background-position: -1455px -182px; width: 90px; height: 90px; } .customize-option.hair_beard_1_pblue { background-image: url(spritesmith-main-0.png); - background-position: -1117px -1324px; + background-position: -1480px -197px; width: 60px; height: 60px; } .hair_beard_1_peppermint { background-image: url(spritesmith-main-0.png); - background-position: -1183px -1309px; + background-position: -1455px -273px; width: 90px; height: 90px; } .customize-option.hair_beard_1_peppermint { background-image: url(spritesmith-main-0.png); - background-position: -1208px -1324px; + background-position: -1480px -288px; width: 60px; height: 60px; } .hair_beard_1_pgreen { background-image: url(spritesmith-main-0.png); - background-position: -1274px -1309px; + background-position: -1455px -364px; width: 90px; height: 90px; } .customize-option.hair_beard_1_pgreen { background-image: url(spritesmith-main-0.png); - background-position: -1299px -1324px; + background-position: -1480px -379px; width: 60px; height: 60px; } .hair_beard_1_porange { background-image: url(spritesmith-main-0.png); - background-position: -1405px 0px; + background-position: -1455px -455px; width: 90px; height: 90px; } .customize-option.hair_beard_1_porange { background-image: url(spritesmith-main-0.png); - background-position: -1430px -15px; + background-position: -1480px -470px; width: 60px; height: 60px; } .hair_beard_1_ppink { background-image: url(spritesmith-main-0.png); - background-position: -1405px -91px; + background-position: -1132px -148px; width: 90px; height: 90px; } .customize-option.hair_beard_1_ppink { background-image: url(spritesmith-main-0.png); - background-position: -1430px -106px; + background-position: -1157px -163px; width: 60px; height: 60px; } .hair_beard_1_ppurple { background-image: url(spritesmith-main-0.png); - background-position: -1405px -182px; + background-position: -1455px -637px; width: 90px; height: 90px; } .customize-option.hair_beard_1_ppurple { background-image: url(spritesmith-main-0.png); - background-position: -1430px -197px; + background-position: -1480px -652px; width: 60px; height: 60px; } .hair_beard_1_pumpkin { background-image: url(spritesmith-main-0.png); - background-position: -1405px -273px; + background-position: -1455px -728px; width: 90px; height: 90px; } .customize-option.hair_beard_1_pumpkin { background-image: url(spritesmith-main-0.png); - background-position: -1430px -288px; + background-position: -1480px -743px; width: 60px; height: 60px; } .hair_beard_1_purple { background-image: url(spritesmith-main-0.png); - background-position: -1405px -364px; + background-position: -1455px -819px; width: 90px; height: 90px; } .customize-option.hair_beard_1_purple { background-image: url(spritesmith-main-0.png); - background-position: -1430px -379px; + background-position: -1480px -834px; width: 60px; height: 60px; } .hair_beard_1_pyellow { background-image: url(spritesmith-main-0.png); - background-position: -1405px -455px; + background-position: -1455px -910px; width: 90px; height: 90px; } .customize-option.hair_beard_1_pyellow { background-image: url(spritesmith-main-0.png); - background-position: -1430px -470px; + background-position: -1480px -925px; width: 60px; height: 60px; } .hair_beard_1_rainbow { background-image: url(spritesmith-main-0.png); - background-position: -846px -888px; + background-position: -1455px -1001px; width: 90px; height: 90px; } .customize-option.hair_beard_1_rainbow { background-image: url(spritesmith-main-0.png); - background-position: -871px -903px; + background-position: -1480px -1016px; width: 60px; height: 60px; } .hair_beard_1_red { background-image: url(spritesmith-main-0.png); - background-position: -1405px -637px; + background-position: -1455px -1092px; width: 90px; height: 90px; } .customize-option.hair_beard_1_red { background-image: url(spritesmith-main-0.png); - background-position: -1430px -652px; + background-position: -1480px -1107px; width: 60px; height: 60px; } .hair_beard_1_snowy { background-image: url(spritesmith-main-0.png); - background-position: -1405px -728px; + background-position: -1455px -1183px; width: 90px; height: 90px; } .customize-option.hair_beard_1_snowy { background-image: url(spritesmith-main-0.png); - background-position: -1430px -743px; + background-position: -1480px -1198px; width: 60px; height: 60px; } .hair_beard_1_white { background-image: url(spritesmith-main-0.png); - background-position: -1405px -819px; + background-position: -1455px -1274px; width: 90px; height: 90px; } .customize-option.hair_beard_1_white { background-image: url(spritesmith-main-0.png); - background-position: -1430px -834px; + background-position: -1480px -1289px; width: 60px; height: 60px; } .hair_beard_1_winternight { background-image: url(spritesmith-main-0.png); - background-position: -1405px -910px; + background-position: 0px -1400px; width: 90px; height: 90px; } .customize-option.hair_beard_1_winternight { background-image: url(spritesmith-main-0.png); - background-position: -1430px -925px; + background-position: -25px -1415px; width: 60px; height: 60px; } .hair_beard_1_winterstar { background-image: url(spritesmith-main-0.png); - background-position: -1405px -1001px; + background-position: -91px -1400px; width: 90px; height: 90px; } .customize-option.hair_beard_1_winterstar { background-image: url(spritesmith-main-0.png); - background-position: -1430px -1016px; + background-position: -116px -1415px; width: 60px; height: 60px; } .hair_beard_1_yellow { background-image: url(spritesmith-main-0.png); - background-position: -1405px -1092px; + background-position: -182px -1400px; width: 90px; height: 90px; } .customize-option.hair_beard_1_yellow { background-image: url(spritesmith-main-0.png); - background-position: -1430px -1107px; + background-position: -207px -1415px; width: 60px; height: 60px; } .hair_beard_1_zombie { background-image: url(spritesmith-main-0.png); - background-position: -1405px -1183px; + background-position: -273px -1400px; width: 90px; height: 90px; } .customize-option.hair_beard_1_zombie { background-image: url(spritesmith-main-0.png); - background-position: -1430px -1198px; + background-position: -298px -1415px; width: 60px; height: 60px; } .hair_beard_2_TRUred { background-image: url(spritesmith-main-0.png); - background-position: -1405px -1274px; + background-position: -364px -1400px; width: 90px; height: 90px; } .customize-option.hair_beard_2_TRUred { background-image: url(spritesmith-main-0.png); - background-position: -1430px -1289px; + background-position: -389px -1415px; width: 60px; height: 60px; } .hair_beard_2_aurora { background-image: url(spritesmith-main-0.png); - background-position: 0px -1400px; + background-position: -455px -1400px; width: 90px; height: 90px; } .customize-option.hair_beard_2_aurora { background-image: url(spritesmith-main-0.png); - background-position: -25px -1415px; + background-position: -480px -1415px; width: 60px; height: 60px; } .hair_beard_2_black { background-image: url(spritesmith-main-0.png); - background-position: -91px -1400px; + background-position: -546px -1400px; width: 90px; height: 90px; } .customize-option.hair_beard_2_black { background-image: url(spritesmith-main-0.png); - background-position: -116px -1415px; + background-position: -571px -1415px; width: 60px; height: 60px; } .hair_beard_2_blond { background-image: url(spritesmith-main-0.png); - background-position: -182px -1400px; + background-position: -637px -1400px; width: 90px; height: 90px; } .customize-option.hair_beard_2_blond { background-image: url(spritesmith-main-0.png); - background-position: -207px -1415px; + background-position: -662px -1415px; width: 60px; height: 60px; } .hair_beard_2_blue { background-image: url(spritesmith-main-0.png); - background-position: -273px -1400px; + background-position: -728px -1400px; width: 90px; height: 90px; } .customize-option.hair_beard_2_blue { background-image: url(spritesmith-main-0.png); - background-position: -298px -1415px; + background-position: -753px -1415px; width: 60px; height: 60px; } .hair_beard_2_brown { background-image: url(spritesmith-main-0.png); - background-position: -364px -1400px; + background-position: -819px -1400px; width: 90px; height: 90px; } .customize-option.hair_beard_2_brown { background-image: url(spritesmith-main-0.png); - background-position: -389px -1415px; + background-position: -844px -1415px; width: 60px; height: 60px; } .hair_beard_2_candycane { background-image: url(spritesmith-main-0.png); - background-position: -455px -1400px; + background-position: -910px -1400px; width: 90px; height: 90px; } .customize-option.hair_beard_2_candycane { background-image: url(spritesmith-main-0.png); - background-position: -480px -1415px; + background-position: -935px -1415px; width: 60px; height: 60px; } .hair_beard_2_candycorn { background-image: url(spritesmith-main-0.png); - background-position: -546px -1400px; + background-position: -1001px -1400px; width: 90px; height: 90px; } .customize-option.hair_beard_2_candycorn { background-image: url(spritesmith-main-0.png); - background-position: -571px -1415px; + background-position: -1026px -1415px; width: 60px; height: 60px; } .hair_beard_2_festive { background-image: url(spritesmith-main-0.png); - background-position: -637px -1400px; + background-position: -1092px -1400px; width: 90px; height: 90px; } .customize-option.hair_beard_2_festive { background-image: url(spritesmith-main-0.png); - background-position: -662px -1415px; + background-position: -1117px -1415px; width: 60px; height: 60px; } .hair_beard_2_frost { background-image: url(spritesmith-main-0.png); - background-position: -728px -1400px; + background-position: -1183px -1400px; width: 90px; height: 90px; } .customize-option.hair_beard_2_frost { background-image: url(spritesmith-main-0.png); - background-position: -753px -1415px; + background-position: -1208px -1415px; width: 60px; height: 60px; } .hair_beard_2_ghostwhite { background-image: url(spritesmith-main-0.png); - background-position: -819px -1400px; + background-position: -1274px -1400px; width: 90px; height: 90px; } .customize-option.hair_beard_2_ghostwhite { background-image: url(spritesmith-main-0.png); - background-position: -844px -1415px; + background-position: -1299px -1415px; width: 60px; height: 60px; } .hair_beard_2_green { background-image: url(spritesmith-main-0.png); - background-position: -910px -1400px; + background-position: -1365px -1400px; width: 90px; height: 90px; } .customize-option.hair_beard_2_green { background-image: url(spritesmith-main-0.png); - background-position: -935px -1415px; + background-position: -1390px -1415px; width: 60px; height: 60px; } .hair_beard_2_halloween { background-image: url(spritesmith-main-0.png); - background-position: -1001px -1400px; + background-position: -1546px 0px; width: 90px; height: 90px; } .customize-option.hair_beard_2_halloween { background-image: url(spritesmith-main-0.png); - background-position: -1026px -1415px; + background-position: -1571px -15px; width: 60px; height: 60px; } .hair_beard_2_holly { background-image: url(spritesmith-main-0.png); - background-position: -1092px -1400px; + background-position: -1546px -91px; width: 90px; height: 90px; } .customize-option.hair_beard_2_holly { background-image: url(spritesmith-main-0.png); - background-position: -1117px -1415px; + background-position: -1571px -106px; width: 60px; height: 60px; } .hair_beard_2_hollygreen { background-image: url(spritesmith-main-0.png); - background-position: -1183px -1400px; + background-position: -1546px -182px; width: 90px; height: 90px; } .customize-option.hair_beard_2_hollygreen { background-image: url(spritesmith-main-0.png); - background-position: -1208px -1415px; + background-position: -1571px -197px; width: 60px; height: 60px; } .hair_beard_2_midnight { background-image: url(spritesmith-main-0.png); - background-position: -1274px -1400px; + background-position: -1546px -273px; width: 90px; height: 90px; } .customize-option.hair_beard_2_midnight { background-image: url(spritesmith-main-0.png); - background-position: -1299px -1415px; + background-position: -1571px -288px; width: 60px; height: 60px; } .hair_beard_2_pblue { background-image: url(spritesmith-main-0.png); - background-position: -1365px -1400px; + background-position: -1546px -364px; width: 90px; height: 90px; } .customize-option.hair_beard_2_pblue { background-image: url(spritesmith-main-0.png); - background-position: -1390px -1415px; + background-position: -1571px -379px; width: 60px; height: 60px; } .hair_beard_2_peppermint { background-image: url(spritesmith-main-0.png); - background-position: -1496px 0px; + background-position: -1546px -455px; width: 90px; height: 90px; } .customize-option.hair_beard_2_peppermint { background-image: url(spritesmith-main-0.png); - background-position: -1521px -15px; + background-position: -1571px -470px; width: 60px; height: 60px; } .hair_beard_2_pgreen { background-image: url(spritesmith-main-0.png); - background-position: -1496px -91px; + background-position: -1546px -546px; width: 90px; height: 90px; } .customize-option.hair_beard_2_pgreen { background-image: url(spritesmith-main-0.png); - background-position: -1521px -106px; + background-position: -1571px -561px; width: 60px; height: 60px; } .hair_beard_2_porange { background-image: url(spritesmith-main-0.png); - background-position: -1496px -182px; + background-position: -1546px -637px; width: 90px; height: 90px; } .customize-option.hair_beard_2_porange { background-image: url(spritesmith-main-0.png); - background-position: -1521px -197px; + background-position: -1571px -652px; width: 60px; height: 60px; } .hair_beard_2_ppink { background-image: url(spritesmith-main-0.png); - background-position: -1496px -273px; + background-position: -1546px -728px; width: 90px; height: 90px; } .customize-option.hair_beard_2_ppink { background-image: url(spritesmith-main-0.png); - background-position: -1521px -288px; + background-position: -1571px -743px; width: 60px; height: 60px; } .hair_beard_2_ppurple { background-image: url(spritesmith-main-0.png); - background-position: -1496px -364px; + background-position: -1546px -819px; width: 90px; height: 90px; } .customize-option.hair_beard_2_ppurple { background-image: url(spritesmith-main-0.png); - background-position: -1521px -379px; + background-position: -1571px -834px; width: 60px; height: 60px; } .hair_beard_2_pumpkin { background-image: url(spritesmith-main-0.png); - background-position: -1496px -455px; + background-position: -1546px -910px; width: 90px; height: 90px; } .customize-option.hair_beard_2_pumpkin { background-image: url(spritesmith-main-0.png); - background-position: -1521px -470px; + background-position: -1571px -925px; width: 60px; height: 60px; } .hair_beard_2_purple { background-image: url(spritesmith-main-0.png); - background-position: -1496px -546px; + background-position: -1546px -1001px; width: 90px; height: 90px; } .customize-option.hair_beard_2_purple { background-image: url(spritesmith-main-0.png); - background-position: -1521px -561px; + background-position: -1571px -1016px; width: 60px; height: 60px; } .hair_beard_2_pyellow { background-image: url(spritesmith-main-0.png); - background-position: -1496px -637px; + background-position: -1546px -1092px; width: 90px; height: 90px; } .customize-option.hair_beard_2_pyellow { background-image: url(spritesmith-main-0.png); - background-position: -1521px -652px; + background-position: -1571px -1107px; width: 60px; height: 60px; } .hair_beard_2_rainbow { background-image: url(spritesmith-main-0.png); - background-position: -1496px -728px; + background-position: -1546px -1183px; width: 90px; height: 90px; } .customize-option.hair_beard_2_rainbow { background-image: url(spritesmith-main-0.png); - background-position: -1521px -743px; + background-position: -1571px -1198px; width: 60px; height: 60px; } .hair_beard_2_red { background-image: url(spritesmith-main-0.png); - background-position: -1496px -819px; + background-position: -1546px -1274px; width: 90px; height: 90px; } .customize-option.hair_beard_2_red { background-image: url(spritesmith-main-0.png); - background-position: -1521px -834px; + background-position: -1571px -1289px; width: 60px; height: 60px; } .hair_beard_2_snowy { background-image: url(spritesmith-main-0.png); - background-position: -1496px -910px; + background-position: -1546px -1365px; width: 90px; height: 90px; } .customize-option.hair_beard_2_snowy { background-image: url(spritesmith-main-0.png); - background-position: -1521px -925px; + background-position: -1571px -1380px; width: 60px; height: 60px; } .hair_beard_2_white { background-image: url(spritesmith-main-0.png); - background-position: -1496px -1001px; + background-position: 0px -1491px; width: 90px; height: 90px; } .customize-option.hair_beard_2_white { background-image: url(spritesmith-main-0.png); - background-position: -1521px -1016px; + background-position: -25px -1506px; width: 60px; height: 60px; } .hair_beard_2_winternight { background-image: url(spritesmith-main-0.png); - background-position: -1496px -1092px; + background-position: -91px -1491px; width: 90px; height: 90px; } .customize-option.hair_beard_2_winternight { background-image: url(spritesmith-main-0.png); - background-position: -1521px -1107px; + background-position: -116px -1506px; width: 60px; height: 60px; } .hair_beard_2_winterstar { background-image: url(spritesmith-main-0.png); - background-position: -1496px -1183px; + background-position: -182px -1491px; width: 90px; height: 90px; } .customize-option.hair_beard_2_winterstar { background-image: url(spritesmith-main-0.png); - background-position: -1521px -1198px; + background-position: -207px -1506px; width: 60px; height: 60px; } .hair_beard_2_yellow { background-image: url(spritesmith-main-0.png); - background-position: -1496px -1274px; + background-position: -273px -1491px; width: 90px; height: 90px; } .customize-option.hair_beard_2_yellow { background-image: url(spritesmith-main-0.png); - background-position: -1521px -1289px; + background-position: -298px -1506px; width: 60px; height: 60px; } .hair_beard_2_zombie { background-image: url(spritesmith-main-0.png); - background-position: -1496px -1365px; + background-position: -364px -1491px; width: 90px; height: 90px; } .customize-option.hair_beard_2_zombie { background-image: url(spritesmith-main-0.png); - background-position: -1521px -1380px; + background-position: -389px -1506px; width: 60px; height: 60px; } .hair_beard_3_TRUred { background-image: url(spritesmith-main-0.png); - background-position: 0px -1491px; + background-position: -455px -1491px; width: 90px; height: 90px; } .customize-option.hair_beard_3_TRUred { background-image: url(spritesmith-main-0.png); - background-position: -25px -1506px; + background-position: -480px -1506px; width: 60px; height: 60px; } .hair_beard_3_aurora { background-image: url(spritesmith-main-0.png); - background-position: -91px -1491px; + background-position: -546px -1491px; width: 90px; height: 90px; } .customize-option.hair_beard_3_aurora { background-image: url(spritesmith-main-0.png); - background-position: -116px -1506px; + background-position: -571px -1506px; width: 60px; height: 60px; } .hair_beard_3_black { background-image: url(spritesmith-main-0.png); - background-position: -182px -1491px; + background-position: -637px -1491px; width: 90px; height: 90px; } .customize-option.hair_beard_3_black { background-image: url(spritesmith-main-0.png); - background-position: -207px -1506px; + background-position: -662px -1506px; width: 60px; height: 60px; } .hair_beard_3_blond { background-image: url(spritesmith-main-0.png); - background-position: -273px -1491px; + background-position: -728px -1491px; width: 90px; height: 90px; } .customize-option.hair_beard_3_blond { background-image: url(spritesmith-main-0.png); - background-position: -298px -1506px; + background-position: -753px -1506px; width: 60px; height: 60px; } .hair_beard_3_blue { background-image: url(spritesmith-main-0.png); - background-position: -364px -1491px; + background-position: -819px -1491px; width: 90px; height: 90px; } .customize-option.hair_beard_3_blue { background-image: url(spritesmith-main-0.png); - background-position: -389px -1506px; + background-position: -844px -1506px; width: 60px; height: 60px; } .hair_beard_3_brown { background-image: url(spritesmith-main-0.png); - background-position: -455px -1491px; + background-position: -910px -1491px; width: 90px; height: 90px; } .customize-option.hair_beard_3_brown { background-image: url(spritesmith-main-0.png); - background-position: -480px -1506px; + background-position: -935px -1506px; width: 60px; height: 60px; } .hair_beard_3_candycane { background-image: url(spritesmith-main-0.png); - background-position: -546px -1491px; + background-position: -1001px -1491px; width: 90px; height: 90px; } .customize-option.hair_beard_3_candycane { background-image: url(spritesmith-main-0.png); - background-position: -571px -1506px; + background-position: -1026px -1506px; width: 60px; height: 60px; } .hair_beard_3_candycorn { background-image: url(spritesmith-main-0.png); - background-position: -637px -1491px; + background-position: -1092px -1491px; width: 90px; height: 90px; } .customize-option.hair_beard_3_candycorn { background-image: url(spritesmith-main-0.png); - background-position: -662px -1506px; + background-position: -1117px -1506px; width: 60px; height: 60px; } .hair_beard_3_festive { background-image: url(spritesmith-main-0.png); - background-position: -728px -1491px; + background-position: -1183px -1491px; width: 90px; height: 90px; } .customize-option.hair_beard_3_festive { background-image: url(spritesmith-main-0.png); - background-position: -753px -1506px; + background-position: -1208px -1506px; width: 60px; height: 60px; } .hair_beard_3_frost { background-image: url(spritesmith-main-0.png); - background-position: -819px -1491px; + background-position: -1274px -1491px; width: 90px; height: 90px; } .customize-option.hair_beard_3_frost { background-image: url(spritesmith-main-0.png); - background-position: -844px -1506px; + background-position: -1299px -1506px; width: 60px; height: 60px; } .hair_beard_3_ghostwhite { background-image: url(spritesmith-main-0.png); - background-position: -910px -1491px; + background-position: -1365px -1491px; width: 90px; height: 90px; } .customize-option.hair_beard_3_ghostwhite { background-image: url(spritesmith-main-0.png); - background-position: -935px -1506px; + background-position: -1390px -1506px; width: 60px; height: 60px; } .hair_beard_3_green { background-image: url(spritesmith-main-0.png); - background-position: -1001px -1491px; + background-position: -1456px -1491px; width: 90px; height: 90px; } .customize-option.hair_beard_3_green { background-image: url(spritesmith-main-0.png); - background-position: -1026px -1506px; + background-position: -1481px -1506px; width: 60px; height: 60px; } .hair_beard_3_halloween { background-image: url(spritesmith-main-0.png); - background-position: -1092px -1491px; + background-position: -1637px 0px; width: 90px; height: 90px; } .customize-option.hair_beard_3_halloween { background-image: url(spritesmith-main-0.png); - background-position: -1117px -1506px; + background-position: -1662px -15px; width: 60px; height: 60px; } .hair_beard_3_holly { background-image: url(spritesmith-main-0.png); - background-position: -1183px -1491px; + background-position: -1637px -91px; width: 90px; height: 90px; } .customize-option.hair_beard_3_holly { background-image: url(spritesmith-main-0.png); - background-position: -1208px -1506px; + background-position: -1662px -106px; width: 60px; height: 60px; } .hair_beard_3_hollygreen { background-image: url(spritesmith-main-0.png); - background-position: -1274px -1491px; + background-position: -1637px -182px; width: 90px; height: 90px; } .customize-option.hair_beard_3_hollygreen { background-image: url(spritesmith-main-0.png); - background-position: -1299px -1506px; + background-position: -1662px -197px; width: 60px; height: 60px; } .hair_beard_3_midnight { background-image: url(spritesmith-main-0.png); - background-position: -1365px -1491px; + background-position: -1637px -273px; width: 90px; height: 90px; } .customize-option.hair_beard_3_midnight { background-image: url(spritesmith-main-0.png); - background-position: -1390px -1506px; + background-position: -1662px -288px; width: 60px; height: 60px; } .hair_beard_3_pblue { background-image: url(spritesmith-main-0.png); - background-position: -1456px -1491px; + background-position: -1637px -364px; width: 90px; height: 90px; } .customize-option.hair_beard_3_pblue { background-image: url(spritesmith-main-0.png); - background-position: -1481px -1506px; + background-position: -1662px -379px; width: 60px; height: 60px; } .hair_beard_3_peppermint { background-image: url(spritesmith-main-0.png); - background-position: -1587px 0px; + background-position: -1637px -455px; width: 90px; height: 90px; } .customize-option.hair_beard_3_peppermint { background-image: url(spritesmith-main-0.png); - background-position: -1612px -15px; + background-position: -1662px -470px; width: 60px; height: 60px; } .hair_beard_3_pgreen { background-image: url(spritesmith-main-0.png); - background-position: -1587px -91px; + background-position: -1637px -546px; width: 90px; height: 90px; } .customize-option.hair_beard_3_pgreen { background-image: url(spritesmith-main-0.png); - background-position: -1612px -106px; + background-position: -1662px -561px; width: 60px; height: 60px; } .hair_beard_3_porange { background-image: url(spritesmith-main-0.png); - background-position: -1587px -182px; + background-position: -1637px -637px; width: 90px; height: 90px; } .customize-option.hair_beard_3_porange { background-image: url(spritesmith-main-0.png); - background-position: -1612px -197px; + background-position: -1662px -652px; width: 60px; height: 60px; } .hair_beard_3_ppink { background-image: url(spritesmith-main-0.png); - background-position: -1587px -273px; + background-position: -1637px -728px; width: 90px; height: 90px; } .customize-option.hair_beard_3_ppink { background-image: url(spritesmith-main-0.png); - background-position: -1612px -288px; + background-position: -1662px -743px; width: 60px; height: 60px; } .hair_beard_3_ppurple { background-image: url(spritesmith-main-0.png); - background-position: -1587px -364px; + background-position: -1637px -819px; width: 90px; height: 90px; } .customize-option.hair_beard_3_ppurple { background-image: url(spritesmith-main-0.png); - background-position: -1612px -379px; + background-position: -1662px -834px; width: 60px; height: 60px; } .hair_beard_3_pumpkin { background-image: url(spritesmith-main-0.png); - background-position: -1587px -455px; + background-position: -1637px -910px; width: 90px; height: 90px; } .customize-option.hair_beard_3_pumpkin { background-image: url(spritesmith-main-0.png); - background-position: -1612px -470px; + background-position: -1662px -925px; width: 60px; height: 60px; } .hair_beard_3_purple { background-image: url(spritesmith-main-0.png); - background-position: -1587px -546px; + background-position: -1637px -1001px; width: 90px; height: 90px; } .customize-option.hair_beard_3_purple { background-image: url(spritesmith-main-0.png); - background-position: -1612px -561px; + background-position: -1662px -1016px; width: 60px; height: 60px; } .hair_beard_3_pyellow { background-image: url(spritesmith-main-0.png); - background-position: -1587px -637px; + background-position: -1637px -1092px; width: 90px; height: 90px; } .customize-option.hair_beard_3_pyellow { background-image: url(spritesmith-main-0.png); - background-position: -1612px -652px; + background-position: -1662px -1107px; width: 60px; height: 60px; } .hair_beard_3_rainbow { background-image: url(spritesmith-main-0.png); - background-position: -1587px -728px; + background-position: -1637px -1183px; width: 90px; height: 90px; } .customize-option.hair_beard_3_rainbow { background-image: url(spritesmith-main-0.png); - background-position: -1612px -743px; + background-position: -1662px -1198px; width: 60px; height: 60px; } .hair_beard_3_red { background-image: url(spritesmith-main-0.png); - background-position: -1587px -819px; + background-position: -1637px -1274px; width: 90px; height: 90px; } .customize-option.hair_beard_3_red { background-image: url(spritesmith-main-0.png); - background-position: -1612px -834px; + background-position: -1662px -1289px; width: 60px; height: 60px; } .hair_beard_3_snowy { background-image: url(spritesmith-main-0.png); - background-position: -1587px -910px; + background-position: -1637px -1365px; width: 90px; height: 90px; } .customize-option.hair_beard_3_snowy { background-image: url(spritesmith-main-0.png); - background-position: -1612px -925px; + background-position: -1662px -1380px; width: 60px; height: 60px; } .hair_beard_3_white { background-image: url(spritesmith-main-0.png); - background-position: -1587px -1001px; + background-position: -1637px -1456px; width: 90px; height: 90px; } .customize-option.hair_beard_3_white { background-image: url(spritesmith-main-0.png); - background-position: -1612px -1016px; + background-position: -1662px -1471px; width: 60px; height: 60px; } .hair_beard_3_winternight { background-image: url(spritesmith-main-0.png); - background-position: -1587px -1092px; + background-position: 0px -1582px; width: 90px; height: 90px; } .customize-option.hair_beard_3_winternight { background-image: url(spritesmith-main-0.png); - background-position: -1612px -1107px; + background-position: -25px -1597px; width: 60px; height: 60px; } .hair_beard_3_winterstar { background-image: url(spritesmith-main-0.png); - background-position: -1587px -1183px; + background-position: -91px -1582px; width: 90px; height: 90px; } .customize-option.hair_beard_3_winterstar { background-image: url(spritesmith-main-0.png); - background-position: -1612px -1198px; + background-position: -116px -1597px; width: 60px; height: 60px; } .hair_beard_3_yellow { background-image: url(spritesmith-main-0.png); - background-position: -1587px -1274px; + background-position: -182px -1582px; width: 90px; height: 90px; } .customize-option.hair_beard_3_yellow { background-image: url(spritesmith-main-0.png); - background-position: -1612px -1289px; + background-position: -207px -1597px; width: 60px; height: 60px; } .hair_beard_3_zombie { background-image: url(spritesmith-main-0.png); - background-position: -1587px -1365px; + background-position: -1455px -546px; width: 90px; height: 90px; } .customize-option.hair_beard_3_zombie { background-image: url(spritesmith-main-0.png); - background-position: -1612px -1380px; + background-position: -1480px -561px; width: 60px; height: 60px; } .hair_mustache_1_TRUred { background-image: url(spritesmith-main-0.png); - background-position: -1587px -1456px; + background-position: -910px -1036px; width: 90px; height: 90px; } .customize-option.hair_mustache_1_TRUred { background-image: url(spritesmith-main-0.png); - background-position: -1612px -1471px; + background-position: -935px -1051px; width: 60px; height: 60px; } .hair_mustache_1_aurora { background-image: url(spritesmith-main-0.png); - background-position: 0px -1582px; + background-position: -819px -1036px; width: 90px; height: 90px; } .customize-option.hair_mustache_1_aurora { background-image: url(spritesmith-main-0.png); - background-position: -25px -1597px; + background-position: -844px -1051px; width: 60px; height: 60px; } .hair_mustache_1_black { background-image: url(spritesmith-main-0.png); - background-position: -91px -1582px; + background-position: -728px -1036px; width: 90px; height: 90px; } .customize-option.hair_mustache_1_black { background-image: url(spritesmith-main-0.png); - background-position: -116px -1597px; + background-position: -753px -1051px; width: 60px; height: 60px; } .hair_mustache_1_blond { background-image: url(spritesmith-main-0.png); - background-position: -182px -1582px; + background-position: -637px -1036px; width: 90px; height: 90px; } .customize-option.hair_mustache_1_blond { background-image: url(spritesmith-main-0.png); - background-position: -207px -1597px; + background-position: -662px -1051px; width: 60px; height: 60px; } .hair_mustache_1_blue { background-image: url(spritesmith-main-0.png); - background-position: -273px -1582px; + background-position: -546px -1036px; width: 90px; height: 90px; } .customize-option.hair_mustache_1_blue { background-image: url(spritesmith-main-0.png); - background-position: -298px -1597px; + background-position: -571px -1051px; width: 60px; height: 60px; } .hair_mustache_1_brown { background-image: url(spritesmith-main-0.png); - background-position: -364px -1582px; + background-position: -455px -1036px; width: 90px; height: 90px; } .customize-option.hair_mustache_1_brown { background-image: url(spritesmith-main-0.png); - background-position: -389px -1597px; + background-position: -480px -1051px; width: 60px; height: 60px; } .hair_mustache_1_candycane { background-image: url(spritesmith-main-0.png); - background-position: -1405px -546px; + background-position: -364px -1036px; width: 90px; height: 90px; } .customize-option.hair_mustache_1_candycane { background-image: url(spritesmith-main-0.png); - background-position: -1430px -561px; + background-position: -389px -1051px; width: 60px; height: 60px; } .hair_mustache_1_candycorn { background-image: url(spritesmith-main-0.png); - background-position: -1132px -637px; + background-position: -273px -1036px; width: 90px; height: 90px; } .customize-option.hair_mustache_1_candycorn { background-image: url(spritesmith-main-0.png); - background-position: -1157px -652px; + background-position: -298px -1051px; width: 60px; height: 60px; } .hair_mustache_1_festive { background-image: url(spritesmith-main-0.png); - background-position: -1132px -546px; + background-position: -182px -1036px; width: 90px; height: 90px; } .customize-option.hair_mustache_1_festive { background-image: url(spritesmith-main-0.png); - background-position: -1157px -561px; + background-position: -207px -1051px; width: 60px; height: 60px; } .hair_mustache_1_frost { background-image: url(spritesmith-main-0.png); - background-position: -1132px -455px; + background-position: -91px -1036px; width: 90px; height: 90px; } .customize-option.hair_mustache_1_frost { background-image: url(spritesmith-main-0.png); - background-position: -1157px -470px; + background-position: -116px -1051px; width: 60px; height: 60px; } .hair_mustache_1_ghostwhite { background-image: url(spritesmith-main-0.png); - background-position: -1132px -364px; + background-position: 0px -1036px; width: 90px; height: 90px; } .customize-option.hair_mustache_1_ghostwhite { background-image: url(spritesmith-main-0.png); - background-position: -1157px -379px; + background-position: -25px -1051px; width: 60px; height: 60px; } .hair_mustache_1_green { background-image: url(spritesmith-main-0.png); - background-position: -1132px -273px; + background-position: -1132px -876px; width: 90px; height: 90px; } .customize-option.hair_mustache_1_green { background-image: url(spritesmith-main-0.png); - background-position: -1157px -288px; + background-position: -1157px -891px; width: 60px; height: 60px; } .hair_mustache_1_halloween { background-image: url(spritesmith-main-0.png); - background-position: -1132px -182px; + background-position: -1132px -785px; width: 90px; height: 90px; } .customize-option.hair_mustache_1_halloween { background-image: url(spritesmith-main-0.png); - background-position: -1157px -197px; + background-position: -1157px -800px; width: 60px; height: 60px; } .hair_mustache_1_holly { background-image: url(spritesmith-main-0.png); - background-position: -1132px -91px; + background-position: -1132px -694px; width: 90px; height: 90px; } .customize-option.hair_mustache_1_holly { background-image: url(spritesmith-main-0.png); - background-position: -1157px -106px; + background-position: -1157px -709px; width: 60px; height: 60px; } .hair_mustache_1_hollygreen { background-image: url(spritesmith-main-0.png); - background-position: -1132px 0px; + background-position: -1132px -603px; width: 90px; height: 90px; } .customize-option.hair_mustache_1_hollygreen { background-image: url(spritesmith-main-0.png); - background-position: -1157px -15px; + background-position: -1157px -618px; width: 60px; height: 60px; } .hair_mustache_1_midnight { background-image: url(spritesmith-main-0.png); - background-position: -1001px -1036px; + background-position: -1132px -512px; width: 90px; height: 90px; } .customize-option.hair_mustache_1_midnight { background-image: url(spritesmith-main-0.png); - background-position: -1026px -1051px; + background-position: -1157px -527px; width: 60px; height: 60px; } .hair_mustache_1_pblue { background-image: url(spritesmith-main-0.png); - background-position: -910px -1036px; + background-position: -1132px -421px; width: 90px; height: 90px; } .customize-option.hair_mustache_1_pblue { background-image: url(spritesmith-main-0.png); - background-position: -935px -1051px; + background-position: -1157px -436px; width: 60px; height: 60px; } .hair_mustache_1_peppermint { background-image: url(spritesmith-main-0.png); - background-position: -819px -1036px; + background-position: -1132px -330px; width: 90px; height: 90px; } .customize-option.hair_mustache_1_peppermint { background-image: url(spritesmith-main-0.png); - background-position: -844px -1051px; + background-position: -1157px -345px; width: 60px; height: 60px; } .hair_mustache_1_pgreen { background-image: url(spritesmith-main-0.png); - background-position: -728px -1036px; + background-position: -1132px -239px; width: 90px; height: 90px; } .customize-option.hair_mustache_1_pgreen { background-image: url(spritesmith-main-0.png); - background-position: -753px -1051px; + background-position: -1157px -254px; width: 60px; height: 60px; } .hair_mustache_1_porange { background-image: url(spritesmith-main-0.png); - background-position: -637px -1036px; + background-position: 0px -1309px; width: 90px; height: 90px; } .customize-option.hair_mustache_1_porange { background-image: url(spritesmith-main-0.png); - background-position: -662px -1051px; + background-position: -25px -1324px; width: 60px; height: 60px; } .hair_mustache_1_ppink { background-image: url(spritesmith-main-0.png); - background-position: -546px -1036px; + background-position: -1364px -1183px; width: 90px; height: 90px; } .customize-option.hair_mustache_1_ppink { background-image: url(spritesmith-main-0.png); - background-position: -571px -1051px; + background-position: -1389px -1198px; width: 60px; height: 60px; } .hair_mustache_1_ppurple { background-image: url(spritesmith-main-0.png); - background-position: -455px -1036px; + background-position: -1364px -1092px; width: 90px; height: 90px; } .customize-option.hair_mustache_1_ppurple { background-image: url(spritesmith-main-0.png); - background-position: -480px -1051px; + background-position: -1389px -1107px; width: 60px; height: 60px; } .hair_mustache_1_pumpkin { background-image: url(spritesmith-main-0.png); - background-position: -364px -1036px; + background-position: -1364px -1001px; width: 90px; height: 90px; } .customize-option.hair_mustache_1_pumpkin { background-image: url(spritesmith-main-0.png); - background-position: -389px -1051px; + background-position: -1389px -1016px; width: 60px; height: 60px; } .hair_mustache_1_purple { background-image: url(spritesmith-main-0.png); - background-position: -273px -1036px; + background-position: -1364px -910px; width: 90px; height: 90px; } .customize-option.hair_mustache_1_purple { background-image: url(spritesmith-main-0.png); - background-position: -298px -1051px; + background-position: -1389px -925px; width: 60px; height: 60px; } .hair_mustache_1_pyellow { background-image: url(spritesmith-main-0.png); - background-position: -182px -1036px; + background-position: -1364px -819px; width: 90px; height: 90px; } .customize-option.hair_mustache_1_pyellow { background-image: url(spritesmith-main-0.png); - background-position: -207px -1051px; + background-position: -1389px -834px; width: 60px; height: 60px; } .hair_mustache_1_rainbow { background-image: url(spritesmith-main-0.png); - background-position: -91px -1036px; + background-position: -1364px -728px; width: 90px; height: 90px; } .customize-option.hair_mustache_1_rainbow { background-image: url(spritesmith-main-0.png); - background-position: -116px -1051px; + background-position: -1389px -743px; width: 60px; height: 60px; } .hair_mustache_1_red { background-image: url(spritesmith-main-0.png); - background-position: 0px -1036px; + background-position: -1364px -637px; width: 90px; height: 90px; } .customize-option.hair_mustache_1_red { background-image: url(spritesmith-main-0.png); - background-position: -25px -1051px; + background-position: -1389px -652px; width: 60px; height: 60px; } .hair_mustache_1_snowy { background-image: url(spritesmith-main-0.png); - background-position: -1028px -888px; + background-position: -1364px -546px; width: 90px; height: 90px; } .customize-option.hair_mustache_1_snowy { background-image: url(spritesmith-main-0.png); - background-position: -1053px -903px; + background-position: -1389px -561px; width: 60px; height: 60px; } .hair_mustache_1_white { background-image: url(spritesmith-main-0.png); - background-position: -937px -888px; + background-position: -1364px -455px; width: 90px; height: 90px; } .customize-option.hair_mustache_1_white { background-image: url(spritesmith-main-0.png); - background-position: -962px -903px; + background-position: -1389px -470px; width: 60px; height: 60px; } .hair_mustache_1_winternight { background-image: url(spritesmith-main-0.png); - background-position: -1314px -819px; + background-position: -1364px -364px; width: 90px; height: 90px; } .customize-option.hair_mustache_1_winternight { background-image: url(spritesmith-main-0.png); - background-position: -1339px -834px; + background-position: -1389px -379px; width: 60px; height: 60px; } .hair_mustache_1_winterstar { background-image: url(spritesmith-main-0.png); - background-position: -1314px -728px; + background-position: -1364px -273px; width: 90px; height: 90px; } .customize-option.hair_mustache_1_winterstar { background-image: url(spritesmith-main-0.png); - background-position: -1339px -743px; + background-position: -1389px -288px; width: 60px; height: 60px; } .hair_mustache_1_yellow { background-image: url(spritesmith-main-0.png); - background-position: -1314px -637px; + background-position: -1364px -182px; width: 90px; height: 90px; } .customize-option.hair_mustache_1_yellow { background-image: url(spritesmith-main-0.png); - background-position: -1339px -652px; + background-position: -1389px -197px; width: 60px; height: 60px; } .hair_mustache_1_zombie { background-image: url(spritesmith-main-0.png); - background-position: -1314px -546px; + background-position: -1364px -91px; width: 90px; height: 90px; } .customize-option.hair_mustache_1_zombie { background-image: url(spritesmith-main-0.png); - background-position: -1339px -561px; + background-position: -1389px -106px; width: 60px; height: 60px; } .hair_mustache_2_TRUred { background-image: url(spritesmith-main-0.png); - background-position: -1314px -455px; + background-position: -1364px 0px; width: 90px; height: 90px; } .customize-option.hair_mustache_2_TRUred { background-image: url(spritesmith-main-0.png); - background-position: -1339px -470px; + background-position: -1389px -15px; width: 60px; height: 60px; } .hair_mustache_2_aurora { background-image: url(spritesmith-main-0.png); - background-position: -1314px -364px; + background-position: -1183px -1218px; width: 90px; height: 90px; } .customize-option.hair_mustache_2_aurora { background-image: url(spritesmith-main-0.png); - background-position: -1339px -379px; + background-position: -1208px -1233px; width: 60px; height: 60px; } .hair_mustache_2_black { background-image: url(spritesmith-main-0.png); - background-position: -1314px -273px; + background-position: -1092px -1218px; width: 90px; height: 90px; } .customize-option.hair_mustache_2_black { background-image: url(spritesmith-main-0.png); - background-position: -1339px -288px; + background-position: -1117px -1233px; width: 60px; height: 60px; } .hair_mustache_2_blond { background-image: url(spritesmith-main-0.png); - background-position: -1314px -182px; + background-position: -1001px -1218px; width: 90px; height: 90px; } .customize-option.hair_mustache_2_blond { background-image: url(spritesmith-main-0.png); - background-position: -1339px -197px; + background-position: -1026px -1233px; width: 60px; height: 60px; } .hair_mustache_2_blue { background-image: url(spritesmith-main-0.png); - background-position: -1314px -91px; + background-position: -910px -1218px; width: 90px; height: 90px; } .customize-option.hair_mustache_2_blue { background-image: url(spritesmith-main-0.png); - background-position: -1339px -106px; + background-position: -935px -1233px; width: 60px; height: 60px; } .hair_mustache_2_brown { background-image: url(spritesmith-main-0.png); - background-position: -1314px 0px; + background-position: -819px -1218px; width: 90px; height: 90px; } .customize-option.hair_mustache_2_brown { background-image: url(spritesmith-main-0.png); - background-position: -1339px -15px; + background-position: -844px -1233px; width: 60px; height: 60px; } .hair_mustache_2_candycane { background-image: url(spritesmith-main-0.png); - background-position: -1183px -1218px; + background-position: -728px -1218px; width: 90px; height: 90px; } .customize-option.hair_mustache_2_candycane { background-image: url(spritesmith-main-0.png); - background-position: -1208px -1233px; + background-position: -753px -1233px; width: 60px; height: 60px; } .hair_mustache_2_candycorn { background-image: url(spritesmith-main-0.png); - background-position: -1092px -1218px; + background-position: -637px -1218px; width: 90px; height: 90px; } .customize-option.hair_mustache_2_candycorn { background-image: url(spritesmith-main-0.png); - background-position: -1117px -1233px; + background-position: -662px -1233px; width: 60px; height: 60px; } .hair_mustache_2_festive { background-image: url(spritesmith-main-0.png); - background-position: -1001px -1218px; + background-position: -546px -1218px; width: 90px; height: 90px; } .customize-option.hair_mustache_2_festive { background-image: url(spritesmith-main-0.png); - background-position: -1026px -1233px; + background-position: -571px -1233px; width: 60px; height: 60px; } .hair_mustache_2_frost { background-image: url(spritesmith-main-0.png); - background-position: -910px -1218px; + background-position: -455px -1218px; width: 90px; height: 90px; } .customize-option.hair_mustache_2_frost { background-image: url(spritesmith-main-0.png); - background-position: -935px -1233px; + background-position: -480px -1233px; width: 60px; height: 60px; } .hair_mustache_2_ghostwhite { background-image: url(spritesmith-main-0.png); - background-position: -819px -1218px; + background-position: -364px -1218px; width: 90px; height: 90px; } .customize-option.hair_mustache_2_ghostwhite { background-image: url(spritesmith-main-0.png); - background-position: -844px -1233px; + background-position: -389px -1233px; width: 60px; height: 60px; } .hair_mustache_2_green { background-image: url(spritesmith-main-0.png); - background-position: -728px -1218px; + background-position: -273px -1218px; width: 90px; height: 90px; } .customize-option.hair_mustache_2_green { background-image: url(spritesmith-main-0.png); - background-position: -753px -1233px; + background-position: -298px -1233px; width: 60px; height: 60px; } .hair_mustache_2_halloween { background-image: url(spritesmith-main-0.png); - background-position: -637px -1218px; + background-position: -182px -1218px; width: 90px; height: 90px; } .customize-option.hair_mustache_2_halloween { background-image: url(spritesmith-main-0.png); - background-position: -662px -1233px; + background-position: -207px -1233px; width: 60px; height: 60px; } .hair_mustache_2_holly { background-image: url(spritesmith-main-0.png); - background-position: -546px -1218px; + background-position: -91px -1218px; width: 90px; height: 90px; } .customize-option.hair_mustache_2_holly { background-image: url(spritesmith-main-0.png); - background-position: -571px -1233px; + background-position: -116px -1233px; width: 60px; height: 60px; } .hair_mustache_2_hollygreen { background-image: url(spritesmith-main-0.png); - background-position: -455px -1218px; + background-position: 0px -1218px; width: 90px; height: 90px; } .customize-option.hair_mustache_2_hollygreen { background-image: url(spritesmith-main-0.png); - background-position: -480px -1233px; + background-position: -25px -1233px; width: 60px; height: 60px; } .hair_mustache_2_midnight { background-image: url(spritesmith-main-0.png); - background-position: -364px -1218px; + background-position: -1273px -1092px; width: 90px; height: 90px; } .customize-option.hair_mustache_2_midnight { background-image: url(spritesmith-main-0.png); - background-position: -389px -1233px; + background-position: -1298px -1107px; width: 60px; height: 60px; } .hair_mustache_2_pblue { background-image: url(spritesmith-main-0.png); - background-position: -273px -1218px; + background-position: -1273px -1001px; width: 90px; height: 90px; } .customize-option.hair_mustache_2_pblue { background-image: url(spritesmith-main-0.png); - background-position: -298px -1233px; + background-position: -1298px -1016px; width: 60px; height: 60px; } .hair_mustache_2_peppermint { background-image: url(spritesmith-main-0.png); - background-position: -182px -1218px; + background-position: -1273px -910px; width: 90px; height: 90px; } .customize-option.hair_mustache_2_peppermint { background-image: url(spritesmith-main-0.png); - background-position: -207px -1233px; + background-position: -1298px -925px; width: 60px; height: 60px; } .hair_mustache_2_pgreen { background-image: url(spritesmith-main-0.png); - background-position: -91px -1218px; + background-position: -1273px -819px; width: 90px; height: 90px; } .customize-option.hair_mustache_2_pgreen { background-image: url(spritesmith-main-0.png); - background-position: -116px -1233px; + background-position: -1298px -834px; width: 60px; height: 60px; } .hair_mustache_2_porange { background-image: url(spritesmith-main-0.png); - background-position: 0px -1218px; + background-position: -1273px -728px; width: 90px; height: 90px; } .customize-option.hair_mustache_2_porange { background-image: url(spritesmith-main-0.png); - background-position: -25px -1233px; + background-position: -1298px -743px; width: 60px; height: 60px; } .hair_mustache_2_ppink { background-image: url(spritesmith-main-0.png); - background-position: -1223px -1092px; + background-position: -1273px -637px; width: 90px; height: 90px; } .customize-option.hair_mustache_2_ppink { background-image: url(spritesmith-main-0.png); - background-position: -1248px -1107px; + background-position: -1298px -652px; width: 60px; height: 60px; } .hair_mustache_2_ppurple { background-image: url(spritesmith-main-0.png); - background-position: -1223px -1001px; + background-position: -1273px -546px; width: 90px; height: 90px; } .customize-option.hair_mustache_2_ppurple { background-image: url(spritesmith-main-0.png); - background-position: -1248px -1016px; + background-position: -1298px -561px; width: 60px; height: 60px; } .hair_mustache_2_pumpkin { background-image: url(spritesmith-main-0.png); - background-position: -1223px -910px; + background-position: -1273px -455px; width: 90px; height: 90px; } .customize-option.hair_mustache_2_pumpkin { background-image: url(spritesmith-main-0.png); - background-position: -1248px -925px; + background-position: -1298px -470px; width: 60px; height: 60px; } .hair_mustache_2_purple { background-image: url(spritesmith-main-0.png); - background-position: -1223px -819px; + background-position: -1273px -364px; width: 90px; height: 90px; } .customize-option.hair_mustache_2_purple { background-image: url(spritesmith-main-0.png); - background-position: -1248px -834px; + background-position: -1298px -379px; width: 60px; height: 60px; } .hair_mustache_2_pyellow { background-image: url(spritesmith-main-0.png); - background-position: -1223px -728px; + background-position: -1273px -273px; width: 90px; height: 90px; } .customize-option.hair_mustache_2_pyellow { background-image: url(spritesmith-main-0.png); - background-position: -1248px -743px; + background-position: -1298px -288px; width: 60px; height: 60px; } .hair_mustache_2_rainbow { background-image: url(spritesmith-main-0.png); - background-position: -1223px -637px; + background-position: -1273px -182px; width: 90px; height: 90px; } .customize-option.hair_mustache_2_rainbow { background-image: url(spritesmith-main-0.png); - background-position: -1248px -652px; + background-position: -1298px -197px; width: 60px; height: 60px; } .hair_mustache_2_red { background-image: url(spritesmith-main-0.png); - background-position: -1223px -546px; + background-position: -1273px -91px; width: 90px; height: 90px; } .customize-option.hair_mustache_2_red { background-image: url(spritesmith-main-0.png); - background-position: -1248px -561px; + background-position: -1298px -106px; width: 60px; height: 60px; } .hair_mustache_2_snowy { background-image: url(spritesmith-main-0.png); - background-position: -1223px -455px; + background-position: -1273px 0px; width: 90px; height: 90px; } .customize-option.hair_mustache_2_snowy { background-image: url(spritesmith-main-0.png); - background-position: -1248px -470px; + background-position: -1298px -15px; width: 60px; height: 60px; } .hair_mustache_2_white { background-image: url(spritesmith-main-0.png); - background-position: -1223px -364px; + background-position: -1092px -1127px; width: 90px; height: 90px; } .customize-option.hair_mustache_2_white { background-image: url(spritesmith-main-0.png); - background-position: -1248px -379px; + background-position: -1117px -1142px; width: 60px; height: 60px; } .hair_mustache_2_winternight { background-image: url(spritesmith-main-0.png); - background-position: -1223px -273px; + background-position: -1001px -1127px; width: 90px; height: 90px; } .customize-option.hair_mustache_2_winternight { background-image: url(spritesmith-main-0.png); - background-position: -1248px -288px; + background-position: -1026px -1142px; width: 60px; height: 60px; } .hair_mustache_2_winterstar { background-image: url(spritesmith-main-0.png); - background-position: -1223px -182px; + background-position: -910px -1127px; width: 90px; height: 90px; } .customize-option.hair_mustache_2_winterstar { background-image: url(spritesmith-main-0.png); - background-position: -1248px -197px; + background-position: -935px -1142px; width: 60px; height: 60px; } .hair_mustache_2_yellow { background-image: url(spritesmith-main-0.png); - background-position: -1223px -91px; + background-position: -819px -1127px; width: 90px; height: 90px; } .customize-option.hair_mustache_2_yellow { background-image: url(spritesmith-main-0.png); - background-position: -1248px -106px; + background-position: -844px -1142px; width: 60px; height: 60px; } .hair_mustache_2_zombie { background-image: url(spritesmith-main-0.png); - background-position: -1223px 0px; + background-position: -728px -1127px; width: 90px; height: 90px; } .customize-option.hair_mustache_2_zombie { background-image: url(spritesmith-main-0.png); - background-position: -1248px -15px; + background-position: -753px -1142px; width: 60px; height: 60px; } .hair_flower_1 { background-image: url(spritesmith-main-0.png); - background-position: -1092px -1127px; + background-position: -637px -1127px; width: 90px; height: 90px; } .customize-option.hair_flower_1 { background-image: url(spritesmith-main-0.png); - background-position: -1117px -1142px; + background-position: -662px -1142px; width: 60px; height: 60px; } .hair_flower_2 { background-image: url(spritesmith-main-0.png); - background-position: -1001px -1127px; + background-position: -546px -1127px; width: 90px; height: 90px; } .customize-option.hair_flower_2 { background-image: url(spritesmith-main-0.png); - background-position: -1026px -1142px; + background-position: -571px -1142px; width: 60px; height: 60px; } .hair_flower_3 { background-image: url(spritesmith-main-0.png); - background-position: -910px -1127px; + background-position: -455px -1127px; width: 90px; height: 90px; } .customize-option.hair_flower_3 { background-image: url(spritesmith-main-0.png); - background-position: -935px -1142px; + background-position: -480px -1142px; width: 60px; height: 60px; } .hair_flower_4 { background-image: url(spritesmith-main-0.png); - background-position: -819px -1127px; + background-position: -364px -1127px; width: 90px; height: 90px; } .customize-option.hair_flower_4 { background-image: url(spritesmith-main-0.png); - background-position: -844px -1142px; + background-position: -389px -1142px; width: 60px; height: 60px; } .hair_flower_5 { background-image: url(spritesmith-main-0.png); - background-position: -728px -1127px; + background-position: -273px -1127px; width: 90px; height: 90px; } .customize-option.hair_flower_5 { background-image: url(spritesmith-main-0.png); - background-position: -753px -1142px; + background-position: -298px -1142px; width: 60px; height: 60px; } .hair_flower_6 { background-image: url(spritesmith-main-0.png); - background-position: -637px -1127px; + background-position: -182px -1127px; width: 90px; height: 90px; } .customize-option.hair_flower_6 { background-image: url(spritesmith-main-0.png); - background-position: -662px -1142px; + background-position: -207px -1142px; width: 60px; height: 60px; } .hair_bangs_1_TRUred { background-image: url(spritesmith-main-0.png); - background-position: -546px -1127px; + background-position: -91px -1127px; width: 90px; height: 90px; } .customize-option.hair_bangs_1_TRUred { background-image: url(spritesmith-main-0.png); - background-position: -571px -1142px; + background-position: -116px -1142px; width: 60px; height: 60px; } .hair_bangs_1_aurora { background-image: url(spritesmith-main-0.png); - background-position: -455px -1127px; + background-position: 0px -1127px; width: 90px; height: 90px; } .customize-option.hair_bangs_1_aurora { background-image: url(spritesmith-main-0.png); - background-position: -480px -1142px; + background-position: -25px -1142px; width: 60px; height: 60px; } .hair_bangs_1_black { background-image: url(spritesmith-main-0.png); - background-position: -364px -1127px; + background-position: -1092px -1036px; width: 90px; height: 90px; } .customize-option.hair_bangs_1_black { background-image: url(spritesmith-main-0.png); - background-position: -389px -1142px; + background-position: -1117px -1051px; width: 60px; height: 60px; } .hair_bangs_1_blond { background-image: url(spritesmith-main-0.png); - background-position: -273px -1127px; + background-position: -1001px -1036px; width: 90px; height: 90px; } .customize-option.hair_bangs_1_blond { background-image: url(spritesmith-main-0.png); - background-position: -298px -1142px; - width: 60px; - height: 60px; -} -.hair_bangs_1_blue { - background-image: url(spritesmith-main-0.png); - background-position: -182px -1127px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_1_blue { - background-image: url(spritesmith-main-0.png); - background-position: -207px -1142px; - width: 60px; - height: 60px; -} -.hair_bangs_1_brown { - background-image: url(spritesmith-main-0.png); - background-position: -91px -1127px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_1_brown { - background-image: url(spritesmith-main-0.png); - background-position: -116px -1142px; - width: 60px; - height: 60px; -} -.hair_bangs_1_candycane { - background-image: url(spritesmith-main-0.png); - background-position: 0px -1127px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_1_candycane { - background-image: url(spritesmith-main-0.png); - background-position: -25px -1142px; - width: 60px; - height: 60px; -} -.hair_bangs_1_candycorn { - background-image: url(spritesmith-main-0.png); - background-position: -1132px -1001px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_1_candycorn { - background-image: url(spritesmith-main-0.png); - background-position: -1157px -1016px; - width: 60px; - height: 60px; -} -.hair_bangs_1_festive { - background-image: url(spritesmith-main-0.png); - background-position: -1132px -910px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_1_festive { - background-image: url(spritesmith-main-0.png); - background-position: -1157px -925px; - width: 60px; - height: 60px; -} -.hair_bangs_1_frost { - background-image: url(spritesmith-main-0.png); - background-position: -1132px -819px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_1_frost { - background-image: url(spritesmith-main-0.png); - background-position: -1157px -834px; - width: 60px; - height: 60px; -} -.hair_bangs_1_ghostwhite { - background-image: url(spritesmith-main-0.png); - background-position: -1132px -728px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_1_ghostwhite { - background-image: url(spritesmith-main-0.png); - background-position: -1157px -743px; + background-position: -1026px -1051px; width: 60px; height: 60px; } diff --git a/common/dist/sprites/spritesmith-main-0.png b/common/dist/sprites/spritesmith-main-0.png index 5ed261e89f..45d789f165 100644 Binary files a/common/dist/sprites/spritesmith-main-0.png and b/common/dist/sprites/spritesmith-main-0.png differ diff --git a/common/dist/sprites/spritesmith-main-1.css b/common/dist/sprites/spritesmith-main-1.css index b7b49ac52d..3de7dadb08 100644 --- a/common/dist/sprites/spritesmith-main-1.css +++ b/common/dist/sprites/spritesmith-main-1.css @@ -1,3946 +1,3946 @@ -.hair_bangs_1_green { +.hair_bangs_1_blue { background-image: url(spritesmith-main-1.png); background-position: -91px 0px; width: 90px; height: 90px; } -.customize-option.hair_bangs_1_green { +.customize-option.hair_bangs_1_blue { background-image: url(spritesmith-main-1.png); background-position: -116px -15px; width: 60px; height: 60px; } -.hair_bangs_1_halloween { +.hair_bangs_1_brown { background-image: url(spritesmith-main-1.png); background-position: -728px -1092px; width: 90px; height: 90px; } -.customize-option.hair_bangs_1_halloween { +.customize-option.hair_bangs_1_brown { background-image: url(spritesmith-main-1.png); background-position: -753px -1107px; width: 60px; height: 60px; } -.hair_bangs_1_holly { +.hair_bangs_1_candycane { background-image: url(spritesmith-main-1.png); background-position: 0px -91px; width: 90px; height: 90px; } -.customize-option.hair_bangs_1_holly { +.customize-option.hair_bangs_1_candycane { background-image: url(spritesmith-main-1.png); background-position: -25px -106px; width: 60px; height: 60px; } -.hair_bangs_1_hollygreen { +.hair_bangs_1_candycorn { background-image: url(spritesmith-main-1.png); background-position: -91px -91px; width: 90px; height: 90px; } -.customize-option.hair_bangs_1_hollygreen { +.customize-option.hair_bangs_1_candycorn { background-image: url(spritesmith-main-1.png); background-position: -116px -106px; width: 60px; height: 60px; } -.hair_bangs_1_midnight { +.hair_bangs_1_festive { background-image: url(spritesmith-main-1.png); background-position: -182px 0px; width: 90px; height: 90px; } -.customize-option.hair_bangs_1_midnight { +.customize-option.hair_bangs_1_festive { background-image: url(spritesmith-main-1.png); background-position: -207px -15px; width: 60px; height: 60px; } -.hair_bangs_1_pblue { +.hair_bangs_1_frost { background-image: url(spritesmith-main-1.png); background-position: -182px -91px; width: 90px; height: 90px; } -.customize-option.hair_bangs_1_pblue { +.customize-option.hair_bangs_1_frost { background-image: url(spritesmith-main-1.png); background-position: -207px -106px; width: 60px; height: 60px; } -.hair_bangs_1_pblue2 { +.hair_bangs_1_ghostwhite { background-image: url(spritesmith-main-1.png); background-position: 0px -182px; width: 90px; height: 90px; } -.customize-option.hair_bangs_1_pblue2 { +.customize-option.hair_bangs_1_ghostwhite { background-image: url(spritesmith-main-1.png); background-position: -25px -197px; width: 60px; height: 60px; } -.hair_bangs_1_peppermint { +.hair_bangs_1_green { background-image: url(spritesmith-main-1.png); background-position: -91px -182px; width: 90px; height: 90px; } -.customize-option.hair_bangs_1_peppermint { +.customize-option.hair_bangs_1_green { background-image: url(spritesmith-main-1.png); background-position: -116px -197px; width: 60px; height: 60px; } -.hair_bangs_1_pgreen { +.hair_bangs_1_halloween { background-image: url(spritesmith-main-1.png); background-position: -182px -182px; width: 90px; height: 90px; } -.customize-option.hair_bangs_1_pgreen { +.customize-option.hair_bangs_1_halloween { background-image: url(spritesmith-main-1.png); background-position: -207px -197px; width: 60px; height: 60px; } -.hair_bangs_1_pgreen2 { +.hair_bangs_1_holly { background-image: url(spritesmith-main-1.png); background-position: -273px 0px; width: 90px; height: 90px; } -.customize-option.hair_bangs_1_pgreen2 { +.customize-option.hair_bangs_1_holly { background-image: url(spritesmith-main-1.png); background-position: -298px -15px; width: 60px; height: 60px; } -.hair_bangs_1_porange { +.hair_bangs_1_hollygreen { background-image: url(spritesmith-main-1.png); background-position: -273px -91px; width: 90px; height: 90px; } -.customize-option.hair_bangs_1_porange { +.customize-option.hair_bangs_1_hollygreen { background-image: url(spritesmith-main-1.png); background-position: -298px -106px; width: 60px; height: 60px; } -.hair_bangs_1_porange2 { +.hair_bangs_1_midnight { background-image: url(spritesmith-main-1.png); background-position: -273px -182px; width: 90px; height: 90px; } -.customize-option.hair_bangs_1_porange2 { +.customize-option.hair_bangs_1_midnight { background-image: url(spritesmith-main-1.png); background-position: -298px -197px; width: 60px; height: 60px; } -.hair_bangs_1_ppink { +.hair_bangs_1_pblue { background-image: url(spritesmith-main-1.png); background-position: 0px -273px; width: 90px; height: 90px; } -.customize-option.hair_bangs_1_ppink { +.customize-option.hair_bangs_1_pblue { background-image: url(spritesmith-main-1.png); background-position: -25px -288px; width: 60px; height: 60px; } -.hair_bangs_1_ppink2 { +.hair_bangs_1_pblue2 { background-image: url(spritesmith-main-1.png); background-position: -91px -273px; width: 90px; height: 90px; } -.customize-option.hair_bangs_1_ppink2 { +.customize-option.hair_bangs_1_pblue2 { background-image: url(spritesmith-main-1.png); background-position: -116px -288px; width: 60px; height: 60px; } -.hair_bangs_1_ppurple { +.hair_bangs_1_peppermint { background-image: url(spritesmith-main-1.png); background-position: -182px -273px; width: 90px; height: 90px; } -.customize-option.hair_bangs_1_ppurple { +.customize-option.hair_bangs_1_peppermint { background-image: url(spritesmith-main-1.png); background-position: -207px -288px; width: 60px; height: 60px; } -.hair_bangs_1_ppurple2 { +.hair_bangs_1_pgreen { background-image: url(spritesmith-main-1.png); background-position: -273px -273px; width: 90px; height: 90px; } -.customize-option.hair_bangs_1_ppurple2 { +.customize-option.hair_bangs_1_pgreen { background-image: url(spritesmith-main-1.png); background-position: -298px -288px; width: 60px; height: 60px; } -.hair_bangs_1_pumpkin { +.hair_bangs_1_pgreen2 { background-image: url(spritesmith-main-1.png); background-position: -364px 0px; width: 90px; height: 90px; } -.customize-option.hair_bangs_1_pumpkin { +.customize-option.hair_bangs_1_pgreen2 { background-image: url(spritesmith-main-1.png); background-position: -389px -15px; width: 60px; height: 60px; } -.hair_bangs_1_purple { +.hair_bangs_1_porange { background-image: url(spritesmith-main-1.png); background-position: -364px -91px; width: 90px; height: 90px; } -.customize-option.hair_bangs_1_purple { +.customize-option.hair_bangs_1_porange { background-image: url(spritesmith-main-1.png); background-position: -389px -106px; width: 60px; height: 60px; } -.hair_bangs_1_pyellow { +.hair_bangs_1_porange2 { background-image: url(spritesmith-main-1.png); background-position: -364px -182px; width: 90px; height: 90px; } -.customize-option.hair_bangs_1_pyellow { +.customize-option.hair_bangs_1_porange2 { background-image: url(spritesmith-main-1.png); background-position: -389px -197px; width: 60px; height: 60px; } -.hair_bangs_1_pyellow2 { +.hair_bangs_1_ppink { background-image: url(spritesmith-main-1.png); background-position: -364px -273px; width: 90px; height: 90px; } -.customize-option.hair_bangs_1_pyellow2 { +.customize-option.hair_bangs_1_ppink { background-image: url(spritesmith-main-1.png); background-position: -389px -288px; width: 60px; height: 60px; } -.hair_bangs_1_rainbow { +.hair_bangs_1_ppink2 { background-image: url(spritesmith-main-1.png); background-position: 0px -364px; width: 90px; height: 90px; } -.customize-option.hair_bangs_1_rainbow { +.customize-option.hair_bangs_1_ppink2 { background-image: url(spritesmith-main-1.png); background-position: -25px -379px; width: 60px; height: 60px; } -.hair_bangs_1_red { +.hair_bangs_1_ppurple { background-image: url(spritesmith-main-1.png); background-position: -91px -364px; width: 90px; height: 90px; } -.customize-option.hair_bangs_1_red { +.customize-option.hair_bangs_1_ppurple { background-image: url(spritesmith-main-1.png); background-position: -116px -379px; width: 60px; height: 60px; } -.hair_bangs_1_snowy { +.hair_bangs_1_ppurple2 { background-image: url(spritesmith-main-1.png); background-position: -182px -364px; width: 90px; height: 90px; } -.customize-option.hair_bangs_1_snowy { +.customize-option.hair_bangs_1_ppurple2 { background-image: url(spritesmith-main-1.png); background-position: -207px -379px; width: 60px; height: 60px; } -.hair_bangs_1_white { +.hair_bangs_1_pumpkin { background-image: url(spritesmith-main-1.png); background-position: -273px -364px; width: 90px; height: 90px; } -.customize-option.hair_bangs_1_white { +.customize-option.hair_bangs_1_pumpkin { background-image: url(spritesmith-main-1.png); background-position: -298px -379px; width: 60px; height: 60px; } -.hair_bangs_1_winternight { +.hair_bangs_1_purple { background-image: url(spritesmith-main-1.png); background-position: -364px -364px; width: 90px; height: 90px; } -.customize-option.hair_bangs_1_winternight { +.customize-option.hair_bangs_1_purple { background-image: url(spritesmith-main-1.png); background-position: -389px -379px; width: 60px; height: 60px; } -.hair_bangs_1_winterstar { +.hair_bangs_1_pyellow { background-image: url(spritesmith-main-1.png); background-position: -455px 0px; width: 90px; height: 90px; } -.customize-option.hair_bangs_1_winterstar { +.customize-option.hair_bangs_1_pyellow { background-image: url(spritesmith-main-1.png); background-position: -480px -15px; width: 60px; height: 60px; } -.hair_bangs_1_yellow { +.hair_bangs_1_pyellow2 { background-image: url(spritesmith-main-1.png); background-position: -455px -91px; width: 90px; height: 90px; } -.customize-option.hair_bangs_1_yellow { +.customize-option.hair_bangs_1_pyellow2 { background-image: url(spritesmith-main-1.png); background-position: -480px -106px; width: 60px; height: 60px; } -.hair_bangs_1_zombie { +.hair_bangs_1_rainbow { background-image: url(spritesmith-main-1.png); background-position: -455px -182px; width: 90px; height: 90px; } -.customize-option.hair_bangs_1_zombie { +.customize-option.hair_bangs_1_rainbow { background-image: url(spritesmith-main-1.png); background-position: -480px -197px; width: 60px; height: 60px; } -.hair_bangs_2_TRUred { +.hair_bangs_1_red { background-image: url(spritesmith-main-1.png); background-position: -455px -273px; width: 90px; height: 90px; } -.customize-option.hair_bangs_2_TRUred { +.customize-option.hair_bangs_1_red { background-image: url(spritesmith-main-1.png); background-position: -480px -288px; width: 60px; height: 60px; } -.hair_bangs_2_aurora { +.hair_bangs_1_snowy { background-image: url(spritesmith-main-1.png); background-position: -455px -364px; width: 90px; height: 90px; } -.customize-option.hair_bangs_2_aurora { +.customize-option.hair_bangs_1_snowy { background-image: url(spritesmith-main-1.png); background-position: -480px -379px; width: 60px; height: 60px; } -.hair_bangs_2_black { +.hair_bangs_1_white { background-image: url(spritesmith-main-1.png); background-position: 0px -455px; width: 90px; height: 90px; } -.customize-option.hair_bangs_2_black { +.customize-option.hair_bangs_1_white { background-image: url(spritesmith-main-1.png); background-position: -25px -470px; width: 60px; height: 60px; } -.hair_bangs_2_blond { +.hair_bangs_1_winternight { background-image: url(spritesmith-main-1.png); background-position: -91px -455px; width: 90px; height: 90px; } -.customize-option.hair_bangs_2_blond { +.customize-option.hair_bangs_1_winternight { background-image: url(spritesmith-main-1.png); background-position: -116px -470px; width: 60px; height: 60px; } -.hair_bangs_2_blue { +.hair_bangs_1_winterstar { background-image: url(spritesmith-main-1.png); background-position: -182px -455px; width: 90px; height: 90px; } -.customize-option.hair_bangs_2_blue { +.customize-option.hair_bangs_1_winterstar { background-image: url(spritesmith-main-1.png); background-position: -207px -470px; width: 60px; height: 60px; } -.hair_bangs_2_brown { +.hair_bangs_1_yellow { background-image: url(spritesmith-main-1.png); background-position: -273px -455px; width: 90px; height: 90px; } -.customize-option.hair_bangs_2_brown { +.customize-option.hair_bangs_1_yellow { background-image: url(spritesmith-main-1.png); background-position: -298px -470px; width: 60px; height: 60px; } -.hair_bangs_2_candycane { +.hair_bangs_1_zombie { background-image: url(spritesmith-main-1.png); background-position: -364px -455px; width: 90px; height: 90px; } -.customize-option.hair_bangs_2_candycane { +.customize-option.hair_bangs_1_zombie { background-image: url(spritesmith-main-1.png); background-position: -389px -470px; width: 60px; height: 60px; } -.hair_bangs_2_candycorn { +.hair_bangs_2_TRUred { background-image: url(spritesmith-main-1.png); background-position: -455px -455px; width: 90px; height: 90px; } -.customize-option.hair_bangs_2_candycorn { +.customize-option.hair_bangs_2_TRUred { background-image: url(spritesmith-main-1.png); background-position: -480px -470px; width: 60px; height: 60px; } -.hair_bangs_2_festive { +.hair_bangs_2_aurora { background-image: url(spritesmith-main-1.png); background-position: -546px 0px; width: 90px; height: 90px; } -.customize-option.hair_bangs_2_festive { +.customize-option.hair_bangs_2_aurora { background-image: url(spritesmith-main-1.png); background-position: -571px -15px; width: 60px; height: 60px; } -.hair_bangs_2_frost { +.hair_bangs_2_black { background-image: url(spritesmith-main-1.png); background-position: -546px -91px; width: 90px; height: 90px; } -.customize-option.hair_bangs_2_frost { +.customize-option.hair_bangs_2_black { background-image: url(spritesmith-main-1.png); background-position: -571px -106px; width: 60px; height: 60px; } -.hair_bangs_2_ghostwhite { +.hair_bangs_2_blond { background-image: url(spritesmith-main-1.png); background-position: -546px -182px; width: 90px; height: 90px; } -.customize-option.hair_bangs_2_ghostwhite { +.customize-option.hair_bangs_2_blond { background-image: url(spritesmith-main-1.png); background-position: -571px -197px; width: 60px; height: 60px; } -.hair_bangs_2_green { +.hair_bangs_2_blue { background-image: url(spritesmith-main-1.png); background-position: -546px -273px; width: 90px; height: 90px; } -.customize-option.hair_bangs_2_green { +.customize-option.hair_bangs_2_blue { background-image: url(spritesmith-main-1.png); background-position: -571px -288px; width: 60px; height: 60px; } -.hair_bangs_2_halloween { +.hair_bangs_2_brown { background-image: url(spritesmith-main-1.png); background-position: -546px -364px; width: 90px; height: 90px; } -.customize-option.hair_bangs_2_halloween { +.customize-option.hair_bangs_2_brown { background-image: url(spritesmith-main-1.png); background-position: -571px -379px; width: 60px; height: 60px; } -.hair_bangs_2_holly { +.hair_bangs_2_candycane { background-image: url(spritesmith-main-1.png); background-position: -546px -455px; width: 90px; height: 90px; } -.customize-option.hair_bangs_2_holly { +.customize-option.hair_bangs_2_candycane { background-image: url(spritesmith-main-1.png); background-position: -571px -470px; width: 60px; height: 60px; } -.hair_bangs_2_hollygreen { +.hair_bangs_2_candycorn { background-image: url(spritesmith-main-1.png); background-position: 0px -546px; width: 90px; height: 90px; } -.customize-option.hair_bangs_2_hollygreen { +.customize-option.hair_bangs_2_candycorn { background-image: url(spritesmith-main-1.png); background-position: -25px -561px; width: 60px; height: 60px; } -.hair_bangs_2_midnight { +.hair_bangs_2_festive { background-image: url(spritesmith-main-1.png); background-position: -91px -546px; width: 90px; height: 90px; } -.customize-option.hair_bangs_2_midnight { +.customize-option.hair_bangs_2_festive { background-image: url(spritesmith-main-1.png); background-position: -116px -561px; width: 60px; height: 60px; } -.hair_bangs_2_pblue { +.hair_bangs_2_frost { background-image: url(spritesmith-main-1.png); background-position: -182px -546px; width: 90px; height: 90px; } -.customize-option.hair_bangs_2_pblue { +.customize-option.hair_bangs_2_frost { background-image: url(spritesmith-main-1.png); background-position: -207px -561px; width: 60px; height: 60px; } -.hair_bangs_2_pblue2 { +.hair_bangs_2_ghostwhite { background-image: url(spritesmith-main-1.png); background-position: -273px -546px; width: 90px; height: 90px; } -.customize-option.hair_bangs_2_pblue2 { +.customize-option.hair_bangs_2_ghostwhite { background-image: url(spritesmith-main-1.png); background-position: -298px -561px; width: 60px; height: 60px; } -.hair_bangs_2_peppermint { +.hair_bangs_2_green { background-image: url(spritesmith-main-1.png); background-position: -364px -546px; width: 90px; height: 90px; } -.customize-option.hair_bangs_2_peppermint { +.customize-option.hair_bangs_2_green { background-image: url(spritesmith-main-1.png); background-position: -389px -561px; width: 60px; height: 60px; } -.hair_bangs_2_pgreen { +.hair_bangs_2_halloween { background-image: url(spritesmith-main-1.png); background-position: -455px -546px; width: 90px; height: 90px; } -.customize-option.hair_bangs_2_pgreen { +.customize-option.hair_bangs_2_halloween { background-image: url(spritesmith-main-1.png); background-position: -480px -561px; width: 60px; height: 60px; } -.hair_bangs_2_pgreen2 { +.hair_bangs_2_holly { background-image: url(spritesmith-main-1.png); background-position: -546px -546px; width: 90px; height: 90px; } -.customize-option.hair_bangs_2_pgreen2 { +.customize-option.hair_bangs_2_holly { background-image: url(spritesmith-main-1.png); background-position: -571px -561px; width: 60px; height: 60px; } -.hair_bangs_2_porange { +.hair_bangs_2_hollygreen { background-image: url(spritesmith-main-1.png); background-position: -637px 0px; width: 90px; height: 90px; } -.customize-option.hair_bangs_2_porange { +.customize-option.hair_bangs_2_hollygreen { background-image: url(spritesmith-main-1.png); background-position: -662px -15px; width: 60px; height: 60px; } -.hair_bangs_2_porange2 { +.hair_bangs_2_midnight { background-image: url(spritesmith-main-1.png); background-position: -637px -91px; width: 90px; height: 90px; } -.customize-option.hair_bangs_2_porange2 { +.customize-option.hair_bangs_2_midnight { background-image: url(spritesmith-main-1.png); background-position: -662px -106px; width: 60px; height: 60px; } -.hair_bangs_2_ppink { +.hair_bangs_2_pblue { background-image: url(spritesmith-main-1.png); background-position: -637px -182px; width: 90px; height: 90px; } -.customize-option.hair_bangs_2_ppink { +.customize-option.hair_bangs_2_pblue { background-image: url(spritesmith-main-1.png); background-position: -662px -197px; width: 60px; height: 60px; } -.hair_bangs_2_ppink2 { +.hair_bangs_2_pblue2 { background-image: url(spritesmith-main-1.png); background-position: -637px -273px; width: 90px; height: 90px; } -.customize-option.hair_bangs_2_ppink2 { +.customize-option.hair_bangs_2_pblue2 { background-image: url(spritesmith-main-1.png); background-position: -662px -288px; width: 60px; height: 60px; } -.hair_bangs_2_ppurple { +.hair_bangs_2_peppermint { background-image: url(spritesmith-main-1.png); background-position: -637px -364px; width: 90px; height: 90px; } -.customize-option.hair_bangs_2_ppurple { +.customize-option.hair_bangs_2_peppermint { background-image: url(spritesmith-main-1.png); background-position: -662px -379px; width: 60px; height: 60px; } -.hair_bangs_2_ppurple2 { +.hair_bangs_2_pgreen { background-image: url(spritesmith-main-1.png); background-position: -637px -455px; width: 90px; height: 90px; } -.customize-option.hair_bangs_2_ppurple2 { +.customize-option.hair_bangs_2_pgreen { background-image: url(spritesmith-main-1.png); background-position: -662px -470px; width: 60px; height: 60px; } -.hair_bangs_2_pumpkin { +.hair_bangs_2_pgreen2 { background-image: url(spritesmith-main-1.png); background-position: -637px -546px; width: 90px; height: 90px; } -.customize-option.hair_bangs_2_pumpkin { +.customize-option.hair_bangs_2_pgreen2 { background-image: url(spritesmith-main-1.png); background-position: -662px -561px; width: 60px; height: 60px; } -.hair_bangs_2_purple { +.hair_bangs_2_porange { background-image: url(spritesmith-main-1.png); background-position: 0px -637px; width: 90px; height: 90px; } -.customize-option.hair_bangs_2_purple { +.customize-option.hair_bangs_2_porange { background-image: url(spritesmith-main-1.png); background-position: -25px -652px; width: 60px; height: 60px; } -.hair_bangs_2_pyellow { +.hair_bangs_2_porange2 { background-image: url(spritesmith-main-1.png); background-position: -91px -637px; width: 90px; height: 90px; } -.customize-option.hair_bangs_2_pyellow { +.customize-option.hair_bangs_2_porange2 { background-image: url(spritesmith-main-1.png); background-position: -116px -652px; width: 60px; height: 60px; } -.hair_bangs_2_pyellow2 { +.hair_bangs_2_ppink { background-image: url(spritesmith-main-1.png); background-position: -182px -637px; width: 90px; height: 90px; } -.customize-option.hair_bangs_2_pyellow2 { +.customize-option.hair_bangs_2_ppink { background-image: url(spritesmith-main-1.png); background-position: -207px -652px; width: 60px; height: 60px; } -.hair_bangs_2_rainbow { +.hair_bangs_2_ppink2 { background-image: url(spritesmith-main-1.png); background-position: -273px -637px; width: 90px; height: 90px; } -.customize-option.hair_bangs_2_rainbow { +.customize-option.hair_bangs_2_ppink2 { background-image: url(spritesmith-main-1.png); background-position: -298px -652px; width: 60px; height: 60px; } -.hair_bangs_2_red { +.hair_bangs_2_ppurple { background-image: url(spritesmith-main-1.png); background-position: -364px -637px; width: 90px; height: 90px; } -.customize-option.hair_bangs_2_red { +.customize-option.hair_bangs_2_ppurple { background-image: url(spritesmith-main-1.png); background-position: -389px -652px; width: 60px; height: 60px; } -.hair_bangs_2_snowy { +.hair_bangs_2_ppurple2 { background-image: url(spritesmith-main-1.png); background-position: -455px -637px; width: 90px; height: 90px; } -.customize-option.hair_bangs_2_snowy { +.customize-option.hair_bangs_2_ppurple2 { background-image: url(spritesmith-main-1.png); background-position: -480px -652px; width: 60px; height: 60px; } -.hair_bangs_2_white { +.hair_bangs_2_pumpkin { background-image: url(spritesmith-main-1.png); background-position: -546px -637px; width: 90px; height: 90px; } -.customize-option.hair_bangs_2_white { +.customize-option.hair_bangs_2_pumpkin { background-image: url(spritesmith-main-1.png); background-position: -571px -652px; width: 60px; height: 60px; } -.hair_bangs_2_winternight { +.hair_bangs_2_purple { background-image: url(spritesmith-main-1.png); background-position: -637px -637px; width: 90px; height: 90px; } -.customize-option.hair_bangs_2_winternight { +.customize-option.hair_bangs_2_purple { background-image: url(spritesmith-main-1.png); background-position: -662px -652px; width: 60px; height: 60px; } -.hair_bangs_2_winterstar { +.hair_bangs_2_pyellow { background-image: url(spritesmith-main-1.png); background-position: -728px 0px; width: 90px; height: 90px; } -.customize-option.hair_bangs_2_winterstar { +.customize-option.hair_bangs_2_pyellow { background-image: url(spritesmith-main-1.png); background-position: -753px -15px; width: 60px; height: 60px; } -.hair_bangs_2_yellow { +.hair_bangs_2_pyellow2 { background-image: url(spritesmith-main-1.png); background-position: -728px -91px; width: 90px; height: 90px; } -.customize-option.hair_bangs_2_yellow { +.customize-option.hair_bangs_2_pyellow2 { background-image: url(spritesmith-main-1.png); background-position: -753px -106px; width: 60px; height: 60px; } -.hair_bangs_2_zombie { +.hair_bangs_2_rainbow { background-image: url(spritesmith-main-1.png); background-position: -728px -182px; width: 90px; height: 90px; } -.customize-option.hair_bangs_2_zombie { +.customize-option.hair_bangs_2_rainbow { background-image: url(spritesmith-main-1.png); background-position: -753px -197px; width: 60px; height: 60px; } -.hair_bangs_3_TRUred { +.hair_bangs_2_red { background-image: url(spritesmith-main-1.png); background-position: -728px -273px; width: 90px; height: 90px; } -.customize-option.hair_bangs_3_TRUred { +.customize-option.hair_bangs_2_red { background-image: url(spritesmith-main-1.png); background-position: -753px -288px; width: 60px; height: 60px; } -.hair_bangs_3_aurora { +.hair_bangs_2_snowy { background-image: url(spritesmith-main-1.png); background-position: -728px -364px; width: 90px; height: 90px; } -.customize-option.hair_bangs_3_aurora { +.customize-option.hair_bangs_2_snowy { background-image: url(spritesmith-main-1.png); background-position: -753px -379px; width: 60px; height: 60px; } -.hair_bangs_3_black { +.hair_bangs_2_white { background-image: url(spritesmith-main-1.png); background-position: -728px -455px; width: 90px; height: 90px; } -.customize-option.hair_bangs_3_black { +.customize-option.hair_bangs_2_white { background-image: url(spritesmith-main-1.png); background-position: -753px -470px; width: 60px; height: 60px; } -.hair_bangs_3_blond { +.hair_bangs_2_winternight { background-image: url(spritesmith-main-1.png); background-position: -728px -546px; width: 90px; height: 90px; } -.customize-option.hair_bangs_3_blond { +.customize-option.hair_bangs_2_winternight { background-image: url(spritesmith-main-1.png); background-position: -753px -561px; width: 60px; height: 60px; } -.hair_bangs_3_blue { +.hair_bangs_2_winterstar { background-image: url(spritesmith-main-1.png); background-position: -728px -637px; width: 90px; height: 90px; } -.customize-option.hair_bangs_3_blue { +.customize-option.hair_bangs_2_winterstar { background-image: url(spritesmith-main-1.png); background-position: -753px -652px; width: 60px; height: 60px; } -.hair_bangs_3_brown { +.hair_bangs_2_yellow { background-image: url(spritesmith-main-1.png); background-position: 0px -728px; width: 90px; height: 90px; } -.customize-option.hair_bangs_3_brown { +.customize-option.hair_bangs_2_yellow { background-image: url(spritesmith-main-1.png); background-position: -25px -743px; width: 60px; height: 60px; } -.hair_bangs_3_candycane { +.hair_bangs_2_zombie { background-image: url(spritesmith-main-1.png); background-position: -91px -728px; width: 90px; height: 90px; } -.customize-option.hair_bangs_3_candycane { +.customize-option.hair_bangs_2_zombie { background-image: url(spritesmith-main-1.png); background-position: -116px -743px; width: 60px; height: 60px; } -.hair_bangs_3_candycorn { +.hair_bangs_3_TRUred { background-image: url(spritesmith-main-1.png); background-position: -182px -728px; width: 90px; height: 90px; } -.customize-option.hair_bangs_3_candycorn { +.customize-option.hair_bangs_3_TRUred { background-image: url(spritesmith-main-1.png); background-position: -207px -743px; width: 60px; height: 60px; } -.hair_bangs_3_festive { +.hair_bangs_3_aurora { background-image: url(spritesmith-main-1.png); background-position: -273px -728px; width: 90px; height: 90px; } -.customize-option.hair_bangs_3_festive { +.customize-option.hair_bangs_3_aurora { background-image: url(spritesmith-main-1.png); background-position: -298px -743px; width: 60px; height: 60px; } -.hair_bangs_3_frost { +.hair_bangs_3_black { background-image: url(spritesmith-main-1.png); background-position: -364px -728px; width: 90px; height: 90px; } -.customize-option.hair_bangs_3_frost { +.customize-option.hair_bangs_3_black { background-image: url(spritesmith-main-1.png); background-position: -389px -743px; width: 60px; height: 60px; } -.hair_bangs_3_ghostwhite { +.hair_bangs_3_blond { background-image: url(spritesmith-main-1.png); background-position: -455px -728px; width: 90px; height: 90px; } -.customize-option.hair_bangs_3_ghostwhite { +.customize-option.hair_bangs_3_blond { background-image: url(spritesmith-main-1.png); background-position: -480px -743px; width: 60px; height: 60px; } -.hair_bangs_3_green { +.hair_bangs_3_blue { background-image: url(spritesmith-main-1.png); background-position: -546px -728px; width: 90px; height: 90px; } -.customize-option.hair_bangs_3_green { +.customize-option.hair_bangs_3_blue { background-image: url(spritesmith-main-1.png); background-position: -571px -743px; width: 60px; height: 60px; } -.hair_bangs_3_halloween { +.hair_bangs_3_brown { background-image: url(spritesmith-main-1.png); background-position: -637px -728px; width: 90px; height: 90px; } -.customize-option.hair_bangs_3_halloween { +.customize-option.hair_bangs_3_brown { background-image: url(spritesmith-main-1.png); background-position: -662px -743px; width: 60px; height: 60px; } -.hair_bangs_3_holly { +.hair_bangs_3_candycane { background-image: url(spritesmith-main-1.png); background-position: -728px -728px; width: 90px; height: 90px; } -.customize-option.hair_bangs_3_holly { +.customize-option.hair_bangs_3_candycane { background-image: url(spritesmith-main-1.png); background-position: -753px -743px; width: 60px; height: 60px; } -.hair_bangs_3_hollygreen { +.hair_bangs_3_candycorn { background-image: url(spritesmith-main-1.png); background-position: -819px 0px; width: 90px; height: 90px; } -.customize-option.hair_bangs_3_hollygreen { +.customize-option.hair_bangs_3_candycorn { background-image: url(spritesmith-main-1.png); background-position: -844px -15px; width: 60px; height: 60px; } -.hair_bangs_3_midnight { +.hair_bangs_3_festive { background-image: url(spritesmith-main-1.png); background-position: -819px -91px; width: 90px; height: 90px; } -.customize-option.hair_bangs_3_midnight { +.customize-option.hair_bangs_3_festive { background-image: url(spritesmith-main-1.png); background-position: -844px -106px; width: 60px; height: 60px; } -.hair_bangs_3_pblue { +.hair_bangs_3_frost { background-image: url(spritesmith-main-1.png); background-position: -819px -182px; width: 90px; height: 90px; } -.customize-option.hair_bangs_3_pblue { +.customize-option.hair_bangs_3_frost { background-image: url(spritesmith-main-1.png); background-position: -844px -197px; width: 60px; height: 60px; } -.hair_bangs_3_pblue2 { +.hair_bangs_3_ghostwhite { background-image: url(spritesmith-main-1.png); background-position: -819px -273px; width: 90px; height: 90px; } -.customize-option.hair_bangs_3_pblue2 { +.customize-option.hair_bangs_3_ghostwhite { background-image: url(spritesmith-main-1.png); background-position: -844px -288px; width: 60px; height: 60px; } -.hair_bangs_3_peppermint { +.hair_bangs_3_green { background-image: url(spritesmith-main-1.png); background-position: -819px -364px; width: 90px; height: 90px; } -.customize-option.hair_bangs_3_peppermint { +.customize-option.hair_bangs_3_green { background-image: url(spritesmith-main-1.png); background-position: -844px -379px; width: 60px; height: 60px; } -.hair_bangs_3_pgreen { +.hair_bangs_3_halloween { background-image: url(spritesmith-main-1.png); background-position: -819px -455px; width: 90px; height: 90px; } -.customize-option.hair_bangs_3_pgreen { +.customize-option.hair_bangs_3_halloween { background-image: url(spritesmith-main-1.png); background-position: -844px -470px; width: 60px; height: 60px; } -.hair_bangs_3_pgreen2 { +.hair_bangs_3_holly { background-image: url(spritesmith-main-1.png); background-position: -819px -546px; width: 90px; height: 90px; } -.customize-option.hair_bangs_3_pgreen2 { +.customize-option.hair_bangs_3_holly { background-image: url(spritesmith-main-1.png); background-position: -844px -561px; width: 60px; height: 60px; } -.hair_bangs_3_porange { +.hair_bangs_3_hollygreen { background-image: url(spritesmith-main-1.png); background-position: -819px -637px; width: 90px; height: 90px; } -.customize-option.hair_bangs_3_porange { +.customize-option.hair_bangs_3_hollygreen { background-image: url(spritesmith-main-1.png); background-position: -844px -652px; width: 60px; height: 60px; } -.hair_bangs_3_porange2 { +.hair_bangs_3_midnight { background-image: url(spritesmith-main-1.png); background-position: -819px -728px; width: 90px; height: 90px; } -.customize-option.hair_bangs_3_porange2 { +.customize-option.hair_bangs_3_midnight { background-image: url(spritesmith-main-1.png); background-position: -844px -743px; width: 60px; height: 60px; } -.hair_bangs_3_ppink { +.hair_bangs_3_pblue { background-image: url(spritesmith-main-1.png); background-position: 0px -819px; width: 90px; height: 90px; } -.customize-option.hair_bangs_3_ppink { +.customize-option.hair_bangs_3_pblue { background-image: url(spritesmith-main-1.png); background-position: -25px -834px; width: 60px; height: 60px; } -.hair_bangs_3_ppink2 { +.hair_bangs_3_pblue2 { background-image: url(spritesmith-main-1.png); background-position: -91px -819px; width: 90px; height: 90px; } -.customize-option.hair_bangs_3_ppink2 { +.customize-option.hair_bangs_3_pblue2 { background-image: url(spritesmith-main-1.png); background-position: -116px -834px; width: 60px; height: 60px; } -.hair_bangs_3_ppurple { +.hair_bangs_3_peppermint { background-image: url(spritesmith-main-1.png); background-position: -182px -819px; width: 90px; height: 90px; } -.customize-option.hair_bangs_3_ppurple { +.customize-option.hair_bangs_3_peppermint { background-image: url(spritesmith-main-1.png); background-position: -207px -834px; width: 60px; height: 60px; } -.hair_bangs_3_ppurple2 { +.hair_bangs_3_pgreen { background-image: url(spritesmith-main-1.png); background-position: -273px -819px; width: 90px; height: 90px; } -.customize-option.hair_bangs_3_ppurple2 { +.customize-option.hair_bangs_3_pgreen { background-image: url(spritesmith-main-1.png); background-position: -298px -834px; width: 60px; height: 60px; } -.hair_bangs_3_pumpkin { +.hair_bangs_3_pgreen2 { background-image: url(spritesmith-main-1.png); background-position: -364px -819px; width: 90px; height: 90px; } -.customize-option.hair_bangs_3_pumpkin { +.customize-option.hair_bangs_3_pgreen2 { background-image: url(spritesmith-main-1.png); background-position: -389px -834px; width: 60px; height: 60px; } -.hair_bangs_3_purple { +.hair_bangs_3_porange { background-image: url(spritesmith-main-1.png); background-position: -455px -819px; width: 90px; height: 90px; } -.customize-option.hair_bangs_3_purple { +.customize-option.hair_bangs_3_porange { background-image: url(spritesmith-main-1.png); background-position: -480px -834px; width: 60px; height: 60px; } -.hair_bangs_3_pyellow { +.hair_bangs_3_porange2 { background-image: url(spritesmith-main-1.png); background-position: -546px -819px; width: 90px; height: 90px; } -.customize-option.hair_bangs_3_pyellow { +.customize-option.hair_bangs_3_porange2 { background-image: url(spritesmith-main-1.png); background-position: -571px -834px; width: 60px; height: 60px; } -.hair_bangs_3_pyellow2 { +.hair_bangs_3_ppink { background-image: url(spritesmith-main-1.png); background-position: -637px -819px; width: 90px; height: 90px; } -.customize-option.hair_bangs_3_pyellow2 { +.customize-option.hair_bangs_3_ppink { background-image: url(spritesmith-main-1.png); background-position: -662px -834px; width: 60px; height: 60px; } -.hair_bangs_3_rainbow { +.hair_bangs_3_ppink2 { background-image: url(spritesmith-main-1.png); background-position: -728px -819px; width: 90px; height: 90px; } -.customize-option.hair_bangs_3_rainbow { +.customize-option.hair_bangs_3_ppink2 { background-image: url(spritesmith-main-1.png); background-position: -753px -834px; width: 60px; height: 60px; } -.hair_bangs_3_red { +.hair_bangs_3_ppurple { background-image: url(spritesmith-main-1.png); background-position: -819px -819px; width: 90px; height: 90px; } -.customize-option.hair_bangs_3_red { +.customize-option.hair_bangs_3_ppurple { background-image: url(spritesmith-main-1.png); background-position: -844px -834px; width: 60px; height: 60px; } -.hair_bangs_3_snowy { +.hair_bangs_3_ppurple2 { background-image: url(spritesmith-main-1.png); background-position: -910px 0px; width: 90px; height: 90px; } -.customize-option.hair_bangs_3_snowy { +.customize-option.hair_bangs_3_ppurple2 { background-image: url(spritesmith-main-1.png); background-position: -935px -15px; width: 60px; height: 60px; } -.hair_bangs_3_white { +.hair_bangs_3_pumpkin { background-image: url(spritesmith-main-1.png); background-position: -910px -91px; width: 90px; height: 90px; } -.customize-option.hair_bangs_3_white { +.customize-option.hair_bangs_3_pumpkin { background-image: url(spritesmith-main-1.png); background-position: -935px -106px; width: 60px; height: 60px; } -.hair_bangs_3_winternight { +.hair_bangs_3_purple { background-image: url(spritesmith-main-1.png); background-position: -910px -182px; width: 90px; height: 90px; } -.customize-option.hair_bangs_3_winternight { +.customize-option.hair_bangs_3_purple { background-image: url(spritesmith-main-1.png); background-position: -935px -197px; width: 60px; height: 60px; } -.hair_bangs_3_winterstar { +.hair_bangs_3_pyellow { background-image: url(spritesmith-main-1.png); background-position: -910px -273px; width: 90px; height: 90px; } -.customize-option.hair_bangs_3_winterstar { +.customize-option.hair_bangs_3_pyellow { background-image: url(spritesmith-main-1.png); background-position: -935px -288px; width: 60px; height: 60px; } -.hair_bangs_3_yellow { +.hair_bangs_3_pyellow2 { background-image: url(spritesmith-main-1.png); background-position: -910px -364px; width: 90px; height: 90px; } -.customize-option.hair_bangs_3_yellow { +.customize-option.hair_bangs_3_pyellow2 { background-image: url(spritesmith-main-1.png); background-position: -935px -379px; width: 60px; height: 60px; } -.hair_bangs_3_zombie { +.hair_bangs_3_rainbow { background-image: url(spritesmith-main-1.png); background-position: -910px -455px; width: 90px; height: 90px; } -.customize-option.hair_bangs_3_zombie { +.customize-option.hair_bangs_3_rainbow { background-image: url(spritesmith-main-1.png); background-position: -935px -470px; width: 60px; height: 60px; } -.hair_base_10_TRUred { +.hair_bangs_3_red { background-image: url(spritesmith-main-1.png); background-position: -910px -546px; width: 90px; height: 90px; } -.customize-option.hair_base_10_TRUred { +.customize-option.hair_bangs_3_red { background-image: url(spritesmith-main-1.png); background-position: -935px -561px; width: 60px; height: 60px; } -.hair_base_10_aurora { +.hair_bangs_3_snowy { background-image: url(spritesmith-main-1.png); background-position: -910px -637px; width: 90px; height: 90px; } -.customize-option.hair_base_10_aurora { +.customize-option.hair_bangs_3_snowy { background-image: url(spritesmith-main-1.png); background-position: -935px -652px; width: 60px; height: 60px; } -.hair_base_10_black { +.hair_bangs_3_white { background-image: url(spritesmith-main-1.png); background-position: -910px -728px; width: 90px; height: 90px; } -.customize-option.hair_base_10_black { +.customize-option.hair_bangs_3_white { background-image: url(spritesmith-main-1.png); background-position: -935px -743px; width: 60px; height: 60px; } -.hair_base_10_blond { +.hair_bangs_3_winternight { background-image: url(spritesmith-main-1.png); background-position: -910px -819px; width: 90px; height: 90px; } -.customize-option.hair_base_10_blond { +.customize-option.hair_bangs_3_winternight { background-image: url(spritesmith-main-1.png); background-position: -935px -834px; width: 60px; height: 60px; } -.hair_base_10_blue { +.hair_bangs_3_winterstar { background-image: url(spritesmith-main-1.png); background-position: 0px -910px; width: 90px; height: 90px; } -.customize-option.hair_base_10_blue { +.customize-option.hair_bangs_3_winterstar { background-image: url(spritesmith-main-1.png); background-position: -25px -925px; width: 60px; height: 60px; } -.hair_base_10_brown { +.hair_bangs_3_yellow { background-image: url(spritesmith-main-1.png); background-position: -91px -910px; width: 90px; height: 90px; } -.customize-option.hair_base_10_brown { +.customize-option.hair_bangs_3_yellow { background-image: url(spritesmith-main-1.png); background-position: -116px -925px; width: 60px; height: 60px; } -.hair_base_10_candycane { +.hair_bangs_3_zombie { background-image: url(spritesmith-main-1.png); background-position: -182px -910px; width: 90px; height: 90px; } -.customize-option.hair_base_10_candycane { +.customize-option.hair_bangs_3_zombie { background-image: url(spritesmith-main-1.png); background-position: -207px -925px; width: 60px; height: 60px; } -.hair_base_10_candycorn { +.hair_base_10_TRUred { background-image: url(spritesmith-main-1.png); background-position: -273px -910px; width: 90px; height: 90px; } -.customize-option.hair_base_10_candycorn { +.customize-option.hair_base_10_TRUred { background-image: url(spritesmith-main-1.png); background-position: -298px -925px; width: 60px; height: 60px; } -.hair_base_10_festive { +.hair_base_10_aurora { background-image: url(spritesmith-main-1.png); background-position: -364px -910px; width: 90px; height: 90px; } -.customize-option.hair_base_10_festive { +.customize-option.hair_base_10_aurora { background-image: url(spritesmith-main-1.png); background-position: -389px -925px; width: 60px; height: 60px; } -.hair_base_10_frost { +.hair_base_10_black { background-image: url(spritesmith-main-1.png); background-position: -455px -910px; width: 90px; height: 90px; } -.customize-option.hair_base_10_frost { +.customize-option.hair_base_10_black { background-image: url(spritesmith-main-1.png); background-position: -480px -925px; width: 60px; height: 60px; } -.hair_base_10_ghostwhite { +.hair_base_10_blond { background-image: url(spritesmith-main-1.png); background-position: -546px -910px; width: 90px; height: 90px; } -.customize-option.hair_base_10_ghostwhite { +.customize-option.hair_base_10_blond { background-image: url(spritesmith-main-1.png); background-position: -571px -925px; width: 60px; height: 60px; } -.hair_base_10_green { +.hair_base_10_blue { background-image: url(spritesmith-main-1.png); background-position: -637px -910px; width: 90px; height: 90px; } -.customize-option.hair_base_10_green { +.customize-option.hair_base_10_blue { background-image: url(spritesmith-main-1.png); background-position: -662px -925px; width: 60px; height: 60px; } -.hair_base_10_halloween { +.hair_base_10_brown { background-image: url(spritesmith-main-1.png); background-position: -728px -910px; width: 90px; height: 90px; } -.customize-option.hair_base_10_halloween { +.customize-option.hair_base_10_brown { background-image: url(spritesmith-main-1.png); background-position: -753px -925px; width: 60px; height: 60px; } -.hair_base_10_holly { +.hair_base_10_candycane { background-image: url(spritesmith-main-1.png); background-position: -819px -910px; width: 90px; height: 90px; } -.customize-option.hair_base_10_holly { +.customize-option.hair_base_10_candycane { background-image: url(spritesmith-main-1.png); background-position: -844px -925px; width: 60px; height: 60px; } -.hair_base_10_hollygreen { +.hair_base_10_candycorn { background-image: url(spritesmith-main-1.png); background-position: -910px -910px; width: 90px; height: 90px; } -.customize-option.hair_base_10_hollygreen { +.customize-option.hair_base_10_candycorn { background-image: url(spritesmith-main-1.png); background-position: -935px -925px; width: 60px; height: 60px; } -.hair_base_10_midnight { +.hair_base_10_festive { background-image: url(spritesmith-main-1.png); background-position: -1001px 0px; width: 90px; height: 90px; } -.customize-option.hair_base_10_midnight { +.customize-option.hair_base_10_festive { background-image: url(spritesmith-main-1.png); background-position: -1026px -15px; width: 60px; height: 60px; } -.hair_base_10_pblue { +.hair_base_10_frost { background-image: url(spritesmith-main-1.png); background-position: -1001px -91px; width: 90px; height: 90px; } -.customize-option.hair_base_10_pblue { +.customize-option.hair_base_10_frost { background-image: url(spritesmith-main-1.png); background-position: -1026px -106px; width: 60px; height: 60px; } -.hair_base_10_pblue2 { +.hair_base_10_ghostwhite { background-image: url(spritesmith-main-1.png); background-position: -1001px -182px; width: 90px; height: 90px; } -.customize-option.hair_base_10_pblue2 { +.customize-option.hair_base_10_ghostwhite { background-image: url(spritesmith-main-1.png); background-position: -1026px -197px; width: 60px; height: 60px; } -.hair_base_10_peppermint { +.hair_base_10_green { background-image: url(spritesmith-main-1.png); background-position: -1001px -273px; width: 90px; height: 90px; } -.customize-option.hair_base_10_peppermint { +.customize-option.hair_base_10_green { background-image: url(spritesmith-main-1.png); background-position: -1026px -288px; width: 60px; height: 60px; } -.hair_base_10_pgreen { +.hair_base_10_halloween { background-image: url(spritesmith-main-1.png); background-position: -1001px -364px; width: 90px; height: 90px; } -.customize-option.hair_base_10_pgreen { +.customize-option.hair_base_10_halloween { background-image: url(spritesmith-main-1.png); background-position: -1026px -379px; width: 60px; height: 60px; } -.hair_base_10_pgreen2 { +.hair_base_10_holly { background-image: url(spritesmith-main-1.png); background-position: -1001px -455px; width: 90px; height: 90px; } -.customize-option.hair_base_10_pgreen2 { +.customize-option.hair_base_10_holly { background-image: url(spritesmith-main-1.png); background-position: -1026px -470px; width: 60px; height: 60px; } -.hair_base_10_porange { +.hair_base_10_hollygreen { background-image: url(spritesmith-main-1.png); background-position: -1001px -546px; width: 90px; height: 90px; } -.customize-option.hair_base_10_porange { +.customize-option.hair_base_10_hollygreen { background-image: url(spritesmith-main-1.png); background-position: -1026px -561px; width: 60px; height: 60px; } -.hair_base_10_porange2 { +.hair_base_10_midnight { background-image: url(spritesmith-main-1.png); background-position: -1001px -637px; width: 90px; height: 90px; } -.customize-option.hair_base_10_porange2 { +.customize-option.hair_base_10_midnight { background-image: url(spritesmith-main-1.png); background-position: -1026px -652px; width: 60px; height: 60px; } -.hair_base_10_ppink { +.hair_base_10_pblue { background-image: url(spritesmith-main-1.png); background-position: -1001px -728px; width: 90px; height: 90px; } -.customize-option.hair_base_10_ppink { +.customize-option.hair_base_10_pblue { background-image: url(spritesmith-main-1.png); background-position: -1026px -743px; width: 60px; height: 60px; } -.hair_base_10_ppink2 { +.hair_base_10_pblue2 { background-image: url(spritesmith-main-1.png); background-position: -1001px -819px; width: 90px; height: 90px; } -.customize-option.hair_base_10_ppink2 { +.customize-option.hair_base_10_pblue2 { background-image: url(spritesmith-main-1.png); background-position: -1026px -834px; width: 60px; height: 60px; } -.hair_base_10_ppurple { +.hair_base_10_peppermint { background-image: url(spritesmith-main-1.png); background-position: -1001px -910px; width: 90px; height: 90px; } -.customize-option.hair_base_10_ppurple { +.customize-option.hair_base_10_peppermint { background-image: url(spritesmith-main-1.png); background-position: -1026px -925px; width: 60px; height: 60px; } -.hair_base_10_ppurple2 { +.hair_base_10_pgreen { background-image: url(spritesmith-main-1.png); background-position: 0px -1001px; width: 90px; height: 90px; } -.customize-option.hair_base_10_ppurple2 { +.customize-option.hair_base_10_pgreen { background-image: url(spritesmith-main-1.png); background-position: -25px -1016px; width: 60px; height: 60px; } -.hair_base_10_pumpkin { +.hair_base_10_pgreen2 { background-image: url(spritesmith-main-1.png); background-position: -91px -1001px; width: 90px; height: 90px; } -.customize-option.hair_base_10_pumpkin { +.customize-option.hair_base_10_pgreen2 { background-image: url(spritesmith-main-1.png); background-position: -116px -1016px; width: 60px; height: 60px; } -.hair_base_10_purple { +.hair_base_10_porange { background-image: url(spritesmith-main-1.png); background-position: -182px -1001px; width: 90px; height: 90px; } -.customize-option.hair_base_10_purple { +.customize-option.hair_base_10_porange { background-image: url(spritesmith-main-1.png); background-position: -207px -1016px; width: 60px; height: 60px; } -.hair_base_10_pyellow { +.hair_base_10_porange2 { background-image: url(spritesmith-main-1.png); background-position: -273px -1001px; width: 90px; height: 90px; } -.customize-option.hair_base_10_pyellow { +.customize-option.hair_base_10_porange2 { background-image: url(spritesmith-main-1.png); background-position: -298px -1016px; width: 60px; height: 60px; } -.hair_base_10_pyellow2 { +.hair_base_10_ppink { background-image: url(spritesmith-main-1.png); background-position: -364px -1001px; width: 90px; height: 90px; } -.customize-option.hair_base_10_pyellow2 { +.customize-option.hair_base_10_ppink { background-image: url(spritesmith-main-1.png); background-position: -389px -1016px; width: 60px; height: 60px; } -.hair_base_10_rainbow { +.hair_base_10_ppink2 { background-image: url(spritesmith-main-1.png); background-position: -455px -1001px; width: 90px; height: 90px; } -.customize-option.hair_base_10_rainbow { +.customize-option.hair_base_10_ppink2 { background-image: url(spritesmith-main-1.png); background-position: -480px -1016px; width: 60px; height: 60px; } -.hair_base_10_red { +.hair_base_10_ppurple { background-image: url(spritesmith-main-1.png); background-position: -546px -1001px; width: 90px; height: 90px; } -.customize-option.hair_base_10_red { +.customize-option.hair_base_10_ppurple { background-image: url(spritesmith-main-1.png); background-position: -571px -1016px; width: 60px; height: 60px; } -.hair_base_10_snowy { +.hair_base_10_ppurple2 { background-image: url(spritesmith-main-1.png); background-position: -637px -1001px; width: 90px; height: 90px; } -.customize-option.hair_base_10_snowy { +.customize-option.hair_base_10_ppurple2 { background-image: url(spritesmith-main-1.png); background-position: -662px -1016px; width: 60px; height: 60px; } -.hair_base_10_white { +.hair_base_10_pumpkin { background-image: url(spritesmith-main-1.png); background-position: -728px -1001px; width: 90px; height: 90px; } -.customize-option.hair_base_10_white { +.customize-option.hair_base_10_pumpkin { background-image: url(spritesmith-main-1.png); background-position: -753px -1016px; width: 60px; height: 60px; } -.hair_base_10_winternight { +.hair_base_10_purple { background-image: url(spritesmith-main-1.png); background-position: -819px -1001px; width: 90px; height: 90px; } -.customize-option.hair_base_10_winternight { +.customize-option.hair_base_10_purple { background-image: url(spritesmith-main-1.png); background-position: -844px -1016px; width: 60px; height: 60px; } -.hair_base_10_winterstar { +.hair_base_10_pyellow { background-image: url(spritesmith-main-1.png); background-position: -910px -1001px; width: 90px; height: 90px; } -.customize-option.hair_base_10_winterstar { +.customize-option.hair_base_10_pyellow { background-image: url(spritesmith-main-1.png); background-position: -935px -1016px; width: 60px; height: 60px; } -.hair_base_10_yellow { +.hair_base_10_pyellow2 { background-image: url(spritesmith-main-1.png); background-position: -1001px -1001px; width: 90px; height: 90px; } -.customize-option.hair_base_10_yellow { +.customize-option.hair_base_10_pyellow2 { background-image: url(spritesmith-main-1.png); background-position: -1026px -1016px; width: 60px; height: 60px; } -.hair_base_10_zombie { +.hair_base_10_rainbow { background-image: url(spritesmith-main-1.png); background-position: -1092px 0px; width: 90px; height: 90px; } -.customize-option.hair_base_10_zombie { +.customize-option.hair_base_10_rainbow { background-image: url(spritesmith-main-1.png); background-position: -1117px -15px; width: 60px; height: 60px; } -.hair_base_11_TRUred { +.hair_base_10_red { background-image: url(spritesmith-main-1.png); background-position: -1092px -91px; width: 90px; height: 90px; } -.customize-option.hair_base_11_TRUred { +.customize-option.hair_base_10_red { background-image: url(spritesmith-main-1.png); background-position: -1117px -106px; width: 60px; height: 60px; } -.hair_base_11_aurora { +.hair_base_10_snowy { background-image: url(spritesmith-main-1.png); background-position: -1092px -182px; width: 90px; height: 90px; } -.customize-option.hair_base_11_aurora { +.customize-option.hair_base_10_snowy { background-image: url(spritesmith-main-1.png); background-position: -1117px -197px; width: 60px; height: 60px; } -.hair_base_11_black { +.hair_base_10_white { background-image: url(spritesmith-main-1.png); background-position: -1092px -273px; width: 90px; height: 90px; } -.customize-option.hair_base_11_black { +.customize-option.hair_base_10_white { background-image: url(spritesmith-main-1.png); background-position: -1117px -288px; width: 60px; height: 60px; } -.hair_base_11_blond { +.hair_base_10_winternight { background-image: url(spritesmith-main-1.png); background-position: -1092px -364px; width: 90px; height: 90px; } -.customize-option.hair_base_11_blond { +.customize-option.hair_base_10_winternight { background-image: url(spritesmith-main-1.png); background-position: -1117px -379px; width: 60px; height: 60px; } -.hair_base_11_blue { +.hair_base_10_winterstar { background-image: url(spritesmith-main-1.png); background-position: -1092px -455px; width: 90px; height: 90px; } -.customize-option.hair_base_11_blue { +.customize-option.hair_base_10_winterstar { background-image: url(spritesmith-main-1.png); background-position: -1117px -470px; width: 60px; height: 60px; } -.hair_base_11_brown { +.hair_base_10_yellow { background-image: url(spritesmith-main-1.png); background-position: -1092px -546px; width: 90px; height: 90px; } -.customize-option.hair_base_11_brown { +.customize-option.hair_base_10_yellow { background-image: url(spritesmith-main-1.png); background-position: -1117px -561px; width: 60px; height: 60px; } -.hair_base_11_candycane { +.hair_base_10_zombie { background-image: url(spritesmith-main-1.png); background-position: -1092px -637px; width: 90px; height: 90px; } -.customize-option.hair_base_11_candycane { +.customize-option.hair_base_10_zombie { background-image: url(spritesmith-main-1.png); background-position: -1117px -652px; width: 60px; height: 60px; } -.hair_base_11_candycorn { +.hair_base_11_TRUred { background-image: url(spritesmith-main-1.png); background-position: -1092px -728px; width: 90px; height: 90px; } -.customize-option.hair_base_11_candycorn { +.customize-option.hair_base_11_TRUred { background-image: url(spritesmith-main-1.png); background-position: -1117px -743px; width: 60px; height: 60px; } -.hair_base_11_festive { +.hair_base_11_aurora { background-image: url(spritesmith-main-1.png); background-position: -1092px -819px; width: 90px; height: 90px; } -.customize-option.hair_base_11_festive { +.customize-option.hair_base_11_aurora { background-image: url(spritesmith-main-1.png); background-position: -1117px -834px; width: 60px; height: 60px; } -.hair_base_11_frost { +.hair_base_11_black { background-image: url(spritesmith-main-1.png); background-position: -1092px -910px; width: 90px; height: 90px; } -.customize-option.hair_base_11_frost { +.customize-option.hair_base_11_black { background-image: url(spritesmith-main-1.png); background-position: -1117px -925px; width: 60px; height: 60px; } -.hair_base_11_ghostwhite { +.hair_base_11_blond { background-image: url(spritesmith-main-1.png); background-position: -1092px -1001px; width: 90px; height: 90px; } -.customize-option.hair_base_11_ghostwhite { +.customize-option.hair_base_11_blond { background-image: url(spritesmith-main-1.png); background-position: -1117px -1016px; width: 60px; height: 60px; } -.hair_base_11_green { +.hair_base_11_blue { background-image: url(spritesmith-main-1.png); background-position: 0px -1092px; width: 90px; height: 90px; } -.customize-option.hair_base_11_green { +.customize-option.hair_base_11_blue { background-image: url(spritesmith-main-1.png); background-position: -25px -1107px; width: 60px; height: 60px; } -.hair_base_11_halloween { +.hair_base_11_brown { background-image: url(spritesmith-main-1.png); background-position: -91px -1092px; width: 90px; height: 90px; } -.customize-option.hair_base_11_halloween { +.customize-option.hair_base_11_brown { background-image: url(spritesmith-main-1.png); background-position: -116px -1107px; width: 60px; height: 60px; } -.hair_base_11_holly { +.hair_base_11_candycane { background-image: url(spritesmith-main-1.png); background-position: -182px -1092px; width: 90px; height: 90px; } -.customize-option.hair_base_11_holly { +.customize-option.hair_base_11_candycane { background-image: url(spritesmith-main-1.png); background-position: -207px -1107px; width: 60px; height: 60px; } -.hair_base_11_hollygreen { +.hair_base_11_candycorn { background-image: url(spritesmith-main-1.png); background-position: -273px -1092px; width: 90px; height: 90px; } -.customize-option.hair_base_11_hollygreen { +.customize-option.hair_base_11_candycorn { background-image: url(spritesmith-main-1.png); background-position: -298px -1107px; width: 60px; height: 60px; } -.hair_base_11_midnight { +.hair_base_11_festive { background-image: url(spritesmith-main-1.png); background-position: -364px -1092px; width: 90px; height: 90px; } -.customize-option.hair_base_11_midnight { +.customize-option.hair_base_11_festive { background-image: url(spritesmith-main-1.png); background-position: -389px -1107px; width: 60px; height: 60px; } -.hair_base_11_pblue { +.hair_base_11_frost { background-image: url(spritesmith-main-1.png); background-position: -455px -1092px; width: 90px; height: 90px; } -.customize-option.hair_base_11_pblue { +.customize-option.hair_base_11_frost { background-image: url(spritesmith-main-1.png); background-position: -480px -1107px; width: 60px; height: 60px; } -.hair_base_11_pblue2 { +.hair_base_11_ghostwhite { background-image: url(spritesmith-main-1.png); background-position: -546px -1092px; width: 90px; height: 90px; } -.customize-option.hair_base_11_pblue2 { +.customize-option.hair_base_11_ghostwhite { background-image: url(spritesmith-main-1.png); background-position: -571px -1107px; width: 60px; height: 60px; } -.hair_base_11_peppermint { +.hair_base_11_green { background-image: url(spritesmith-main-1.png); background-position: -637px -1092px; width: 90px; height: 90px; } -.customize-option.hair_base_11_peppermint { +.customize-option.hair_base_11_green { background-image: url(spritesmith-main-1.png); background-position: -662px -1107px; width: 60px; height: 60px; } -.hair_base_11_pgreen { +.hair_base_11_halloween { background-image: url(spritesmith-main-1.png); background-position: 0px 0px; width: 90px; height: 90px; } -.customize-option.hair_base_11_pgreen { +.customize-option.hair_base_11_halloween { background-image: url(spritesmith-main-1.png); background-position: -25px -15px; width: 60px; height: 60px; } -.hair_base_11_pgreen2 { +.hair_base_11_holly { background-image: url(spritesmith-main-1.png); background-position: -819px -1092px; width: 90px; height: 90px; } -.customize-option.hair_base_11_pgreen2 { +.customize-option.hair_base_11_holly { background-image: url(spritesmith-main-1.png); background-position: -844px -1107px; width: 60px; height: 60px; } -.hair_base_11_porange { +.hair_base_11_hollygreen { background-image: url(spritesmith-main-1.png); background-position: -910px -1092px; width: 90px; height: 90px; } -.customize-option.hair_base_11_porange { +.customize-option.hair_base_11_hollygreen { background-image: url(spritesmith-main-1.png); background-position: -935px -1107px; width: 60px; height: 60px; } -.hair_base_11_porange2 { +.hair_base_11_midnight { background-image: url(spritesmith-main-1.png); background-position: -1001px -1092px; width: 90px; height: 90px; } -.customize-option.hair_base_11_porange2 { +.customize-option.hair_base_11_midnight { background-image: url(spritesmith-main-1.png); background-position: -1026px -1107px; width: 60px; height: 60px; } -.hair_base_11_ppink { +.hair_base_11_pblue { background-image: url(spritesmith-main-1.png); background-position: -1092px -1092px; width: 90px; height: 90px; } -.customize-option.hair_base_11_ppink { +.customize-option.hair_base_11_pblue { background-image: url(spritesmith-main-1.png); background-position: -1117px -1107px; width: 60px; height: 60px; } -.hair_base_11_ppink2 { +.hair_base_11_pblue2 { background-image: url(spritesmith-main-1.png); background-position: -1183px 0px; width: 90px; height: 90px; } -.customize-option.hair_base_11_ppink2 { +.customize-option.hair_base_11_pblue2 { background-image: url(spritesmith-main-1.png); background-position: -1208px -15px; width: 60px; height: 60px; } -.hair_base_11_ppurple { +.hair_base_11_peppermint { background-image: url(spritesmith-main-1.png); background-position: -1183px -91px; width: 90px; height: 90px; } -.customize-option.hair_base_11_ppurple { +.customize-option.hair_base_11_peppermint { background-image: url(spritesmith-main-1.png); background-position: -1208px -106px; width: 60px; height: 60px; } -.hair_base_11_ppurple2 { +.hair_base_11_pgreen { background-image: url(spritesmith-main-1.png); background-position: -1183px -182px; width: 90px; height: 90px; } -.customize-option.hair_base_11_ppurple2 { +.customize-option.hair_base_11_pgreen { background-image: url(spritesmith-main-1.png); background-position: -1208px -197px; width: 60px; height: 60px; } -.hair_base_11_pumpkin { +.hair_base_11_pgreen2 { background-image: url(spritesmith-main-1.png); background-position: -1183px -273px; width: 90px; height: 90px; } -.customize-option.hair_base_11_pumpkin { +.customize-option.hair_base_11_pgreen2 { background-image: url(spritesmith-main-1.png); background-position: -1208px -288px; width: 60px; height: 60px; } -.hair_base_11_purple { +.hair_base_11_porange { background-image: url(spritesmith-main-1.png); background-position: -1183px -364px; width: 90px; height: 90px; } -.customize-option.hair_base_11_purple { +.customize-option.hair_base_11_porange { background-image: url(spritesmith-main-1.png); background-position: -1208px -379px; width: 60px; height: 60px; } -.hair_base_11_pyellow { +.hair_base_11_porange2 { background-image: url(spritesmith-main-1.png); background-position: -1183px -455px; width: 90px; height: 90px; } -.customize-option.hair_base_11_pyellow { +.customize-option.hair_base_11_porange2 { background-image: url(spritesmith-main-1.png); background-position: -1208px -470px; width: 60px; height: 60px; } -.hair_base_11_pyellow2 { +.hair_base_11_ppink { background-image: url(spritesmith-main-1.png); background-position: -1183px -546px; width: 90px; height: 90px; } -.customize-option.hair_base_11_pyellow2 { +.customize-option.hair_base_11_ppink { background-image: url(spritesmith-main-1.png); background-position: -1208px -561px; width: 60px; height: 60px; } -.hair_base_11_rainbow { +.hair_base_11_ppink2 { background-image: url(spritesmith-main-1.png); background-position: -1183px -637px; width: 90px; height: 90px; } -.customize-option.hair_base_11_rainbow { +.customize-option.hair_base_11_ppink2 { background-image: url(spritesmith-main-1.png); background-position: -1208px -652px; width: 60px; height: 60px; } -.hair_base_11_red { +.hair_base_11_ppurple { background-image: url(spritesmith-main-1.png); background-position: -1183px -728px; width: 90px; height: 90px; } -.customize-option.hair_base_11_red { +.customize-option.hair_base_11_ppurple { background-image: url(spritesmith-main-1.png); background-position: -1208px -743px; width: 60px; height: 60px; } -.hair_base_11_snowy { +.hair_base_11_ppurple2 { background-image: url(spritesmith-main-1.png); background-position: -1183px -819px; width: 90px; height: 90px; } -.customize-option.hair_base_11_snowy { +.customize-option.hair_base_11_ppurple2 { background-image: url(spritesmith-main-1.png); background-position: -1208px -834px; width: 60px; height: 60px; } -.hair_base_11_white { +.hair_base_11_pumpkin { background-image: url(spritesmith-main-1.png); background-position: -1183px -910px; width: 90px; height: 90px; } -.customize-option.hair_base_11_white { +.customize-option.hair_base_11_pumpkin { background-image: url(spritesmith-main-1.png); background-position: -1208px -925px; width: 60px; height: 60px; } -.hair_base_11_winternight { +.hair_base_11_purple { background-image: url(spritesmith-main-1.png); background-position: -1183px -1001px; width: 90px; height: 90px; } -.customize-option.hair_base_11_winternight { +.customize-option.hair_base_11_purple { background-image: url(spritesmith-main-1.png); background-position: -1208px -1016px; width: 60px; height: 60px; } -.hair_base_11_winterstar { +.hair_base_11_pyellow { background-image: url(spritesmith-main-1.png); background-position: -1183px -1092px; width: 90px; height: 90px; } -.customize-option.hair_base_11_winterstar { +.customize-option.hair_base_11_pyellow { background-image: url(spritesmith-main-1.png); background-position: -1208px -1107px; width: 60px; height: 60px; } -.hair_base_11_yellow { +.hair_base_11_pyellow2 { background-image: url(spritesmith-main-1.png); background-position: 0px -1183px; width: 90px; height: 90px; } -.customize-option.hair_base_11_yellow { +.customize-option.hair_base_11_pyellow2 { background-image: url(spritesmith-main-1.png); background-position: -25px -1198px; width: 60px; height: 60px; } -.hair_base_11_zombie { +.hair_base_11_rainbow { background-image: url(spritesmith-main-1.png); background-position: -91px -1183px; width: 90px; height: 90px; } -.customize-option.hair_base_11_zombie { +.customize-option.hair_base_11_rainbow { background-image: url(spritesmith-main-1.png); background-position: -116px -1198px; width: 60px; height: 60px; } -.hair_base_12_TRUred { +.hair_base_11_red { background-image: url(spritesmith-main-1.png); background-position: -182px -1183px; width: 90px; height: 90px; } -.customize-option.hair_base_12_TRUred { +.customize-option.hair_base_11_red { background-image: url(spritesmith-main-1.png); background-position: -207px -1198px; width: 60px; height: 60px; } -.hair_base_12_aurora { +.hair_base_11_snowy { background-image: url(spritesmith-main-1.png); background-position: -273px -1183px; width: 90px; height: 90px; } -.customize-option.hair_base_12_aurora { +.customize-option.hair_base_11_snowy { background-image: url(spritesmith-main-1.png); background-position: -298px -1198px; width: 60px; height: 60px; } -.hair_base_12_black { +.hair_base_11_white { background-image: url(spritesmith-main-1.png); background-position: -364px -1183px; width: 90px; height: 90px; } -.customize-option.hair_base_12_black { +.customize-option.hair_base_11_white { background-image: url(spritesmith-main-1.png); background-position: -389px -1198px; width: 60px; height: 60px; } -.hair_base_12_blond { +.hair_base_11_winternight { background-image: url(spritesmith-main-1.png); background-position: -455px -1183px; width: 90px; height: 90px; } -.customize-option.hair_base_12_blond { +.customize-option.hair_base_11_winternight { background-image: url(spritesmith-main-1.png); background-position: -480px -1198px; width: 60px; height: 60px; } -.hair_base_12_blue { +.hair_base_11_winterstar { background-image: url(spritesmith-main-1.png); background-position: -546px -1183px; width: 90px; height: 90px; } -.customize-option.hair_base_12_blue { +.customize-option.hair_base_11_winterstar { background-image: url(spritesmith-main-1.png); background-position: -571px -1198px; width: 60px; height: 60px; } -.hair_base_12_brown { +.hair_base_11_yellow { background-image: url(spritesmith-main-1.png); background-position: -637px -1183px; width: 90px; height: 90px; } -.customize-option.hair_base_12_brown { +.customize-option.hair_base_11_yellow { background-image: url(spritesmith-main-1.png); background-position: -662px -1198px; width: 60px; height: 60px; } -.hair_base_12_candycane { +.hair_base_11_zombie { background-image: url(spritesmith-main-1.png); background-position: -728px -1183px; width: 90px; height: 90px; } -.customize-option.hair_base_12_candycane { +.customize-option.hair_base_11_zombie { background-image: url(spritesmith-main-1.png); background-position: -753px -1198px; width: 60px; height: 60px; } -.hair_base_12_candycorn { +.hair_base_12_TRUred { background-image: url(spritesmith-main-1.png); background-position: -819px -1183px; width: 90px; height: 90px; } -.customize-option.hair_base_12_candycorn { +.customize-option.hair_base_12_TRUred { background-image: url(spritesmith-main-1.png); background-position: -844px -1198px; width: 60px; height: 60px; } -.hair_base_12_festive { +.hair_base_12_aurora { background-image: url(spritesmith-main-1.png); background-position: -910px -1183px; width: 90px; height: 90px; } -.customize-option.hair_base_12_festive { +.customize-option.hair_base_12_aurora { background-image: url(spritesmith-main-1.png); background-position: -935px -1198px; width: 60px; height: 60px; } -.hair_base_12_frost { +.hair_base_12_black { background-image: url(spritesmith-main-1.png); background-position: -1001px -1183px; width: 90px; height: 90px; } -.customize-option.hair_base_12_frost { +.customize-option.hair_base_12_black { background-image: url(spritesmith-main-1.png); background-position: -1026px -1198px; width: 60px; height: 60px; } -.hair_base_12_ghostwhite { +.hair_base_12_blond { background-image: url(spritesmith-main-1.png); background-position: -1092px -1183px; width: 90px; height: 90px; } -.customize-option.hair_base_12_ghostwhite { +.customize-option.hair_base_12_blond { background-image: url(spritesmith-main-1.png); background-position: -1117px -1198px; width: 60px; height: 60px; } -.hair_base_12_green { +.hair_base_12_blue { background-image: url(spritesmith-main-1.png); background-position: -1183px -1183px; width: 90px; height: 90px; } -.customize-option.hair_base_12_green { +.customize-option.hair_base_12_blue { background-image: url(spritesmith-main-1.png); background-position: -1208px -1198px; width: 60px; height: 60px; } -.hair_base_12_halloween { +.hair_base_12_brown { background-image: url(spritesmith-main-1.png); background-position: -1274px 0px; width: 90px; height: 90px; } -.customize-option.hair_base_12_halloween { +.customize-option.hair_base_12_brown { background-image: url(spritesmith-main-1.png); background-position: -1299px -15px; width: 60px; height: 60px; } -.hair_base_12_holly { +.hair_base_12_candycane { background-image: url(spritesmith-main-1.png); background-position: -1274px -91px; width: 90px; height: 90px; } -.customize-option.hair_base_12_holly { +.customize-option.hair_base_12_candycane { background-image: url(spritesmith-main-1.png); background-position: -1299px -106px; width: 60px; height: 60px; } -.hair_base_12_hollygreen { +.hair_base_12_candycorn { background-image: url(spritesmith-main-1.png); background-position: -1274px -182px; width: 90px; height: 90px; } -.customize-option.hair_base_12_hollygreen { +.customize-option.hair_base_12_candycorn { background-image: url(spritesmith-main-1.png); background-position: -1299px -197px; width: 60px; height: 60px; } -.hair_base_12_midnight { +.hair_base_12_festive { background-image: url(spritesmith-main-1.png); background-position: -1274px -273px; width: 90px; height: 90px; } -.customize-option.hair_base_12_midnight { +.customize-option.hair_base_12_festive { background-image: url(spritesmith-main-1.png); background-position: -1299px -288px; width: 60px; height: 60px; } -.hair_base_12_pblue { +.hair_base_12_frost { background-image: url(spritesmith-main-1.png); background-position: -1274px -364px; width: 90px; height: 90px; } -.customize-option.hair_base_12_pblue { +.customize-option.hair_base_12_frost { background-image: url(spritesmith-main-1.png); background-position: -1299px -379px; width: 60px; height: 60px; } -.hair_base_12_pblue2 { +.hair_base_12_ghostwhite { background-image: url(spritesmith-main-1.png); background-position: -1274px -455px; width: 90px; height: 90px; } -.customize-option.hair_base_12_pblue2 { +.customize-option.hair_base_12_ghostwhite { background-image: url(spritesmith-main-1.png); background-position: -1299px -470px; width: 60px; height: 60px; } -.hair_base_12_peppermint { +.hair_base_12_green { background-image: url(spritesmith-main-1.png); background-position: -1274px -546px; width: 90px; height: 90px; } -.customize-option.hair_base_12_peppermint { +.customize-option.hair_base_12_green { background-image: url(spritesmith-main-1.png); background-position: -1299px -561px; width: 60px; height: 60px; } -.hair_base_12_pgreen { +.hair_base_12_halloween { background-image: url(spritesmith-main-1.png); background-position: -1274px -637px; width: 90px; height: 90px; } -.customize-option.hair_base_12_pgreen { +.customize-option.hair_base_12_halloween { background-image: url(spritesmith-main-1.png); background-position: -1299px -652px; width: 60px; height: 60px; } -.hair_base_12_pgreen2 { +.hair_base_12_holly { background-image: url(spritesmith-main-1.png); background-position: -1274px -728px; width: 90px; height: 90px; } -.customize-option.hair_base_12_pgreen2 { +.customize-option.hair_base_12_holly { background-image: url(spritesmith-main-1.png); background-position: -1299px -743px; width: 60px; height: 60px; } -.hair_base_12_porange { +.hair_base_12_hollygreen { background-image: url(spritesmith-main-1.png); background-position: -1274px -819px; width: 90px; height: 90px; } -.customize-option.hair_base_12_porange { +.customize-option.hair_base_12_hollygreen { background-image: url(spritesmith-main-1.png); background-position: -1299px -834px; width: 60px; height: 60px; } -.hair_base_12_porange2 { +.hair_base_12_midnight { background-image: url(spritesmith-main-1.png); background-position: -1274px -910px; width: 90px; height: 90px; } -.customize-option.hair_base_12_porange2 { +.customize-option.hair_base_12_midnight { background-image: url(spritesmith-main-1.png); background-position: -1299px -925px; width: 60px; height: 60px; } -.hair_base_12_ppink { +.hair_base_12_pblue { background-image: url(spritesmith-main-1.png); background-position: -1274px -1001px; width: 90px; height: 90px; } -.customize-option.hair_base_12_ppink { +.customize-option.hair_base_12_pblue { background-image: url(spritesmith-main-1.png); background-position: -1299px -1016px; width: 60px; height: 60px; } -.hair_base_12_ppink2 { +.hair_base_12_pblue2 { background-image: url(spritesmith-main-1.png); background-position: -1274px -1092px; width: 90px; height: 90px; } -.customize-option.hair_base_12_ppink2 { +.customize-option.hair_base_12_pblue2 { background-image: url(spritesmith-main-1.png); background-position: -1299px -1107px; width: 60px; height: 60px; } -.hair_base_12_ppurple { +.hair_base_12_peppermint { background-image: url(spritesmith-main-1.png); background-position: -1274px -1183px; width: 90px; height: 90px; } -.customize-option.hair_base_12_ppurple { +.customize-option.hair_base_12_peppermint { background-image: url(spritesmith-main-1.png); background-position: -1299px -1198px; width: 60px; height: 60px; } -.hair_base_12_ppurple2 { +.hair_base_12_pgreen { background-image: url(spritesmith-main-1.png); background-position: 0px -1274px; width: 90px; height: 90px; } -.customize-option.hair_base_12_ppurple2 { +.customize-option.hair_base_12_pgreen { background-image: url(spritesmith-main-1.png); background-position: -25px -1289px; width: 60px; height: 60px; } -.hair_base_12_pumpkin { +.hair_base_12_pgreen2 { background-image: url(spritesmith-main-1.png); background-position: -91px -1274px; width: 90px; height: 90px; } -.customize-option.hair_base_12_pumpkin { +.customize-option.hair_base_12_pgreen2 { background-image: url(spritesmith-main-1.png); background-position: -116px -1289px; width: 60px; height: 60px; } -.hair_base_12_purple { +.hair_base_12_porange { background-image: url(spritesmith-main-1.png); background-position: -182px -1274px; width: 90px; height: 90px; } -.customize-option.hair_base_12_purple { +.customize-option.hair_base_12_porange { background-image: url(spritesmith-main-1.png); background-position: -207px -1289px; width: 60px; height: 60px; } -.hair_base_12_pyellow { +.hair_base_12_porange2 { background-image: url(spritesmith-main-1.png); background-position: -273px -1274px; width: 90px; height: 90px; } -.customize-option.hair_base_12_pyellow { +.customize-option.hair_base_12_porange2 { background-image: url(spritesmith-main-1.png); background-position: -298px -1289px; width: 60px; height: 60px; } -.hair_base_12_pyellow2 { +.hair_base_12_ppink { background-image: url(spritesmith-main-1.png); background-position: -364px -1274px; width: 90px; height: 90px; } -.customize-option.hair_base_12_pyellow2 { +.customize-option.hair_base_12_ppink { background-image: url(spritesmith-main-1.png); background-position: -389px -1289px; width: 60px; height: 60px; } -.hair_base_12_rainbow { +.hair_base_12_ppink2 { background-image: url(spritesmith-main-1.png); background-position: -455px -1274px; width: 90px; height: 90px; } -.customize-option.hair_base_12_rainbow { +.customize-option.hair_base_12_ppink2 { background-image: url(spritesmith-main-1.png); background-position: -480px -1289px; width: 60px; height: 60px; } -.hair_base_12_red { +.hair_base_12_ppurple { background-image: url(spritesmith-main-1.png); background-position: -546px -1274px; width: 90px; height: 90px; } -.customize-option.hair_base_12_red { +.customize-option.hair_base_12_ppurple { background-image: url(spritesmith-main-1.png); background-position: -571px -1289px; width: 60px; height: 60px; } -.hair_base_12_snowy { +.hair_base_12_ppurple2 { background-image: url(spritesmith-main-1.png); background-position: -637px -1274px; width: 90px; height: 90px; } -.customize-option.hair_base_12_snowy { +.customize-option.hair_base_12_ppurple2 { background-image: url(spritesmith-main-1.png); background-position: -662px -1289px; width: 60px; height: 60px; } -.hair_base_12_white { +.hair_base_12_pumpkin { background-image: url(spritesmith-main-1.png); background-position: -728px -1274px; width: 90px; height: 90px; } -.customize-option.hair_base_12_white { +.customize-option.hair_base_12_pumpkin { background-image: url(spritesmith-main-1.png); background-position: -753px -1289px; width: 60px; height: 60px; } -.hair_base_12_winternight { +.hair_base_12_purple { background-image: url(spritesmith-main-1.png); background-position: -819px -1274px; width: 90px; height: 90px; } -.customize-option.hair_base_12_winternight { +.customize-option.hair_base_12_purple { background-image: url(spritesmith-main-1.png); background-position: -844px -1289px; width: 60px; height: 60px; } -.hair_base_12_winterstar { +.hair_base_12_pyellow { background-image: url(spritesmith-main-1.png); background-position: -910px -1274px; width: 90px; height: 90px; } -.customize-option.hair_base_12_winterstar { +.customize-option.hair_base_12_pyellow { background-image: url(spritesmith-main-1.png); background-position: -935px -1289px; width: 60px; height: 60px; } -.hair_base_12_yellow { +.hair_base_12_pyellow2 { background-image: url(spritesmith-main-1.png); background-position: -1001px -1274px; width: 90px; height: 90px; } -.customize-option.hair_base_12_yellow { +.customize-option.hair_base_12_pyellow2 { background-image: url(spritesmith-main-1.png); background-position: -1026px -1289px; width: 60px; height: 60px; } -.hair_base_12_zombie { +.hair_base_12_rainbow { background-image: url(spritesmith-main-1.png); background-position: -1092px -1274px; width: 90px; height: 90px; } -.customize-option.hair_base_12_zombie { +.customize-option.hair_base_12_rainbow { background-image: url(spritesmith-main-1.png); background-position: -1117px -1289px; width: 60px; height: 60px; } -.hair_base_13_TRUred { +.hair_base_12_red { background-image: url(spritesmith-main-1.png); background-position: -1183px -1274px; width: 90px; height: 90px; } -.customize-option.hair_base_13_TRUred { +.customize-option.hair_base_12_red { background-image: url(spritesmith-main-1.png); background-position: -1208px -1289px; width: 60px; height: 60px; } -.hair_base_13_aurora { +.hair_base_12_snowy { background-image: url(spritesmith-main-1.png); background-position: -1274px -1274px; width: 90px; height: 90px; } -.customize-option.hair_base_13_aurora { +.customize-option.hair_base_12_snowy { background-image: url(spritesmith-main-1.png); background-position: -1299px -1289px; width: 60px; height: 60px; } -.hair_base_13_black { +.hair_base_12_white { background-image: url(spritesmith-main-1.png); background-position: -1365px 0px; width: 90px; height: 90px; } -.customize-option.hair_base_13_black { +.customize-option.hair_base_12_white { background-image: url(spritesmith-main-1.png); background-position: -1390px -15px; width: 60px; height: 60px; } -.hair_base_13_blond { +.hair_base_12_winternight { background-image: url(spritesmith-main-1.png); background-position: -1365px -91px; width: 90px; height: 90px; } -.customize-option.hair_base_13_blond { +.customize-option.hair_base_12_winternight { background-image: url(spritesmith-main-1.png); background-position: -1390px -106px; width: 60px; height: 60px; } -.hair_base_13_blue { +.hair_base_12_winterstar { background-image: url(spritesmith-main-1.png); background-position: -1365px -182px; width: 90px; height: 90px; } -.customize-option.hair_base_13_blue { +.customize-option.hair_base_12_winterstar { background-image: url(spritesmith-main-1.png); background-position: -1390px -197px; width: 60px; height: 60px; } -.hair_base_13_brown { +.hair_base_12_yellow { background-image: url(spritesmith-main-1.png); background-position: -1365px -273px; width: 90px; height: 90px; } -.customize-option.hair_base_13_brown { +.customize-option.hair_base_12_yellow { background-image: url(spritesmith-main-1.png); background-position: -1390px -288px; width: 60px; height: 60px; } -.hair_base_13_candycane { +.hair_base_12_zombie { background-image: url(spritesmith-main-1.png); background-position: -1365px -364px; width: 90px; height: 90px; } -.customize-option.hair_base_13_candycane { +.customize-option.hair_base_12_zombie { background-image: url(spritesmith-main-1.png); background-position: -1390px -379px; width: 60px; height: 60px; } -.hair_base_13_candycorn { +.hair_base_13_TRUred { background-image: url(spritesmith-main-1.png); background-position: -1365px -455px; width: 90px; height: 90px; } -.customize-option.hair_base_13_candycorn { +.customize-option.hair_base_13_TRUred { background-image: url(spritesmith-main-1.png); background-position: -1390px -470px; width: 60px; height: 60px; } -.hair_base_13_festive { +.hair_base_13_aurora { background-image: url(spritesmith-main-1.png); background-position: -1365px -546px; width: 90px; height: 90px; } -.customize-option.hair_base_13_festive { +.customize-option.hair_base_13_aurora { background-image: url(spritesmith-main-1.png); background-position: -1390px -561px; width: 60px; height: 60px; } -.hair_base_13_frost { +.hair_base_13_black { background-image: url(spritesmith-main-1.png); background-position: -1365px -637px; width: 90px; height: 90px; } -.customize-option.hair_base_13_frost { +.customize-option.hair_base_13_black { background-image: url(spritesmith-main-1.png); background-position: -1390px -652px; width: 60px; height: 60px; } -.hair_base_13_ghostwhite { +.hair_base_13_blond { background-image: url(spritesmith-main-1.png); background-position: -1365px -728px; width: 90px; height: 90px; } -.customize-option.hair_base_13_ghostwhite { +.customize-option.hair_base_13_blond { background-image: url(spritesmith-main-1.png); background-position: -1390px -743px; width: 60px; height: 60px; } -.hair_base_13_green { +.hair_base_13_blue { background-image: url(spritesmith-main-1.png); background-position: -1365px -819px; width: 90px; height: 90px; } -.customize-option.hair_base_13_green { +.customize-option.hair_base_13_blue { background-image: url(spritesmith-main-1.png); background-position: -1390px -834px; width: 60px; height: 60px; } -.hair_base_13_halloween { +.hair_base_13_brown { background-image: url(spritesmith-main-1.png); background-position: -1365px -910px; width: 90px; height: 90px; } -.customize-option.hair_base_13_halloween { +.customize-option.hair_base_13_brown { background-image: url(spritesmith-main-1.png); background-position: -1390px -925px; width: 60px; height: 60px; } -.hair_base_13_holly { +.hair_base_13_candycane { background-image: url(spritesmith-main-1.png); background-position: -1365px -1001px; width: 90px; height: 90px; } -.customize-option.hair_base_13_holly { +.customize-option.hair_base_13_candycane { background-image: url(spritesmith-main-1.png); background-position: -1390px -1016px; width: 60px; height: 60px; } -.hair_base_13_hollygreen { +.hair_base_13_candycorn { background-image: url(spritesmith-main-1.png); background-position: -1365px -1092px; width: 90px; height: 90px; } -.customize-option.hair_base_13_hollygreen { +.customize-option.hair_base_13_candycorn { background-image: url(spritesmith-main-1.png); background-position: -1390px -1107px; width: 60px; height: 60px; } -.hair_base_13_midnight { +.hair_base_13_festive { background-image: url(spritesmith-main-1.png); background-position: -1365px -1183px; width: 90px; height: 90px; } -.customize-option.hair_base_13_midnight { +.customize-option.hair_base_13_festive { background-image: url(spritesmith-main-1.png); background-position: -1390px -1198px; width: 60px; height: 60px; } -.hair_base_13_pblue { +.hair_base_13_frost { background-image: url(spritesmith-main-1.png); background-position: -1365px -1274px; width: 90px; height: 90px; } -.customize-option.hair_base_13_pblue { +.customize-option.hair_base_13_frost { background-image: url(spritesmith-main-1.png); background-position: -1390px -1289px; width: 60px; height: 60px; } -.hair_base_13_pblue2 { +.hair_base_13_ghostwhite { background-image: url(spritesmith-main-1.png); background-position: 0px -1365px; width: 90px; height: 90px; } -.customize-option.hair_base_13_pblue2 { +.customize-option.hair_base_13_ghostwhite { background-image: url(spritesmith-main-1.png); background-position: -25px -1380px; width: 60px; height: 60px; } -.hair_base_13_peppermint { +.hair_base_13_green { background-image: url(spritesmith-main-1.png); background-position: -91px -1365px; width: 90px; height: 90px; } -.customize-option.hair_base_13_peppermint { +.customize-option.hair_base_13_green { background-image: url(spritesmith-main-1.png); background-position: -116px -1380px; width: 60px; height: 60px; } -.hair_base_13_pgreen { +.hair_base_13_halloween { background-image: url(spritesmith-main-1.png); background-position: -182px -1365px; width: 90px; height: 90px; } -.customize-option.hair_base_13_pgreen { +.customize-option.hair_base_13_halloween { background-image: url(spritesmith-main-1.png); background-position: -207px -1380px; width: 60px; height: 60px; } -.hair_base_13_pgreen2 { +.hair_base_13_holly { background-image: url(spritesmith-main-1.png); background-position: -273px -1365px; width: 90px; height: 90px; } -.customize-option.hair_base_13_pgreen2 { +.customize-option.hair_base_13_holly { background-image: url(spritesmith-main-1.png); background-position: -298px -1380px; width: 60px; height: 60px; } -.hair_base_13_porange { +.hair_base_13_hollygreen { background-image: url(spritesmith-main-1.png); background-position: -364px -1365px; width: 90px; height: 90px; } -.customize-option.hair_base_13_porange { +.customize-option.hair_base_13_hollygreen { background-image: url(spritesmith-main-1.png); background-position: -389px -1380px; width: 60px; height: 60px; } -.hair_base_13_porange2 { +.hair_base_13_midnight { background-image: url(spritesmith-main-1.png); background-position: -455px -1365px; width: 90px; height: 90px; } -.customize-option.hair_base_13_porange2 { +.customize-option.hair_base_13_midnight { background-image: url(spritesmith-main-1.png); background-position: -480px -1380px; width: 60px; height: 60px; } -.hair_base_13_ppink { +.hair_base_13_pblue { background-image: url(spritesmith-main-1.png); background-position: -546px -1365px; width: 90px; height: 90px; } -.customize-option.hair_base_13_ppink { +.customize-option.hair_base_13_pblue { background-image: url(spritesmith-main-1.png); background-position: -571px -1380px; width: 60px; height: 60px; } -.hair_base_13_ppink2 { +.hair_base_13_pblue2 { background-image: url(spritesmith-main-1.png); background-position: -637px -1365px; width: 90px; height: 90px; } -.customize-option.hair_base_13_ppink2 { +.customize-option.hair_base_13_pblue2 { background-image: url(spritesmith-main-1.png); background-position: -662px -1380px; width: 60px; height: 60px; } -.hair_base_13_ppurple { +.hair_base_13_peppermint { background-image: url(spritesmith-main-1.png); background-position: -728px -1365px; width: 90px; height: 90px; } -.customize-option.hair_base_13_ppurple { +.customize-option.hair_base_13_peppermint { background-image: url(spritesmith-main-1.png); background-position: -753px -1380px; width: 60px; height: 60px; } -.hair_base_13_ppurple2 { +.hair_base_13_pgreen { background-image: url(spritesmith-main-1.png); background-position: -819px -1365px; width: 90px; height: 90px; } -.customize-option.hair_base_13_ppurple2 { +.customize-option.hair_base_13_pgreen { background-image: url(spritesmith-main-1.png); background-position: -844px -1380px; width: 60px; height: 60px; } -.hair_base_13_pumpkin { +.hair_base_13_pgreen2 { background-image: url(spritesmith-main-1.png); background-position: -910px -1365px; width: 90px; height: 90px; } -.customize-option.hair_base_13_pumpkin { +.customize-option.hair_base_13_pgreen2 { background-image: url(spritesmith-main-1.png); background-position: -935px -1380px; width: 60px; height: 60px; } -.hair_base_13_purple { +.hair_base_13_porange { background-image: url(spritesmith-main-1.png); background-position: -1001px -1365px; width: 90px; height: 90px; } -.customize-option.hair_base_13_purple { +.customize-option.hair_base_13_porange { background-image: url(spritesmith-main-1.png); background-position: -1026px -1380px; width: 60px; height: 60px; } -.hair_base_13_pyellow { +.hair_base_13_porange2 { background-image: url(spritesmith-main-1.png); background-position: -1092px -1365px; width: 90px; height: 90px; } -.customize-option.hair_base_13_pyellow { +.customize-option.hair_base_13_porange2 { background-image: url(spritesmith-main-1.png); background-position: -1117px -1380px; width: 60px; height: 60px; } -.hair_base_13_pyellow2 { +.hair_base_13_ppink { background-image: url(spritesmith-main-1.png); background-position: -1183px -1365px; width: 90px; height: 90px; } -.customize-option.hair_base_13_pyellow2 { +.customize-option.hair_base_13_ppink { background-image: url(spritesmith-main-1.png); background-position: -1208px -1380px; width: 60px; height: 60px; } -.hair_base_13_rainbow { +.hair_base_13_ppink2 { background-image: url(spritesmith-main-1.png); background-position: -1274px -1365px; width: 90px; height: 90px; } -.customize-option.hair_base_13_rainbow { +.customize-option.hair_base_13_ppink2 { background-image: url(spritesmith-main-1.png); background-position: -1299px -1380px; width: 60px; height: 60px; } -.hair_base_13_red { +.hair_base_13_ppurple { background-image: url(spritesmith-main-1.png); background-position: -1365px -1365px; width: 90px; height: 90px; } -.customize-option.hair_base_13_red { +.customize-option.hair_base_13_ppurple { background-image: url(spritesmith-main-1.png); background-position: -1390px -1380px; width: 60px; height: 60px; } -.hair_base_13_snowy { +.hair_base_13_ppurple2 { background-image: url(spritesmith-main-1.png); background-position: -1456px 0px; width: 90px; height: 90px; } -.customize-option.hair_base_13_snowy { +.customize-option.hair_base_13_ppurple2 { background-image: url(spritesmith-main-1.png); background-position: -1481px -15px; width: 60px; height: 60px; } -.hair_base_13_white { +.hair_base_13_pumpkin { background-image: url(spritesmith-main-1.png); background-position: -1456px -91px; width: 90px; height: 90px; } -.customize-option.hair_base_13_white { +.customize-option.hair_base_13_pumpkin { background-image: url(spritesmith-main-1.png); background-position: -1481px -106px; width: 60px; height: 60px; } -.hair_base_13_winternight { +.hair_base_13_purple { background-image: url(spritesmith-main-1.png); background-position: -1456px -182px; width: 90px; height: 90px; } -.customize-option.hair_base_13_winternight { +.customize-option.hair_base_13_purple { background-image: url(spritesmith-main-1.png); background-position: -1481px -197px; width: 60px; height: 60px; } -.hair_base_13_winterstar { +.hair_base_13_pyellow { background-image: url(spritesmith-main-1.png); background-position: -1456px -273px; width: 90px; height: 90px; } -.customize-option.hair_base_13_winterstar { +.customize-option.hair_base_13_pyellow { background-image: url(spritesmith-main-1.png); background-position: -1481px -288px; width: 60px; height: 60px; } -.hair_base_13_yellow { +.hair_base_13_pyellow2 { background-image: url(spritesmith-main-1.png); background-position: -1456px -364px; width: 90px; height: 90px; } -.customize-option.hair_base_13_yellow { +.customize-option.hair_base_13_pyellow2 { background-image: url(spritesmith-main-1.png); background-position: -1481px -379px; width: 60px; height: 60px; } -.hair_base_13_zombie { +.hair_base_13_rainbow { background-image: url(spritesmith-main-1.png); background-position: -1456px -455px; width: 90px; height: 90px; } -.customize-option.hair_base_13_zombie { +.customize-option.hair_base_13_rainbow { background-image: url(spritesmith-main-1.png); background-position: -1481px -470px; width: 60px; height: 60px; } -.hair_base_14_TRUred { +.hair_base_13_red { background-image: url(spritesmith-main-1.png); background-position: -1456px -546px; width: 90px; height: 90px; } -.customize-option.hair_base_14_TRUred { +.customize-option.hair_base_13_red { background-image: url(spritesmith-main-1.png); background-position: -1481px -561px; width: 60px; height: 60px; } -.hair_base_14_aurora { +.hair_base_13_snowy { background-image: url(spritesmith-main-1.png); background-position: -1456px -637px; width: 90px; height: 90px; } -.customize-option.hair_base_14_aurora { +.customize-option.hair_base_13_snowy { background-image: url(spritesmith-main-1.png); background-position: -1481px -652px; width: 60px; height: 60px; } -.hair_base_14_black { +.hair_base_13_white { background-image: url(spritesmith-main-1.png); background-position: -1456px -728px; width: 90px; height: 90px; } -.customize-option.hair_base_14_black { +.customize-option.hair_base_13_white { background-image: url(spritesmith-main-1.png); background-position: -1481px -743px; width: 60px; height: 60px; } -.hair_base_14_blond { +.hair_base_13_winternight { background-image: url(spritesmith-main-1.png); background-position: -1456px -819px; width: 90px; height: 90px; } -.customize-option.hair_base_14_blond { +.customize-option.hair_base_13_winternight { background-image: url(spritesmith-main-1.png); background-position: -1481px -834px; width: 60px; height: 60px; } -.hair_base_14_blue { +.hair_base_13_winterstar { background-image: url(spritesmith-main-1.png); background-position: -1456px -910px; width: 90px; height: 90px; } -.customize-option.hair_base_14_blue { +.customize-option.hair_base_13_winterstar { background-image: url(spritesmith-main-1.png); background-position: -1481px -925px; width: 60px; height: 60px; } -.hair_base_14_brown { +.hair_base_13_yellow { background-image: url(spritesmith-main-1.png); background-position: -1456px -1001px; width: 90px; height: 90px; } -.customize-option.hair_base_14_brown { +.customize-option.hair_base_13_yellow { background-image: url(spritesmith-main-1.png); background-position: -1481px -1016px; width: 60px; height: 60px; } -.hair_base_14_candycane { +.hair_base_13_zombie { background-image: url(spritesmith-main-1.png); background-position: -1456px -1092px; width: 90px; height: 90px; } -.customize-option.hair_base_14_candycane { +.customize-option.hair_base_13_zombie { background-image: url(spritesmith-main-1.png); background-position: -1481px -1107px; width: 60px; height: 60px; } -.hair_base_14_candycorn { +.hair_base_14_TRUred { background-image: url(spritesmith-main-1.png); background-position: -1456px -1183px; width: 90px; height: 90px; } -.customize-option.hair_base_14_candycorn { +.customize-option.hair_base_14_TRUred { background-image: url(spritesmith-main-1.png); background-position: -1481px -1198px; width: 60px; height: 60px; } -.hair_base_14_festive { +.hair_base_14_aurora { background-image: url(spritesmith-main-1.png); background-position: -1456px -1274px; width: 90px; height: 90px; } -.customize-option.hair_base_14_festive { +.customize-option.hair_base_14_aurora { background-image: url(spritesmith-main-1.png); background-position: -1481px -1289px; width: 60px; height: 60px; } -.hair_base_14_frost { +.hair_base_14_black { background-image: url(spritesmith-main-1.png); background-position: -1456px -1365px; width: 90px; height: 90px; } -.customize-option.hair_base_14_frost { +.customize-option.hair_base_14_black { background-image: url(spritesmith-main-1.png); background-position: -1481px -1380px; width: 60px; height: 60px; } -.hair_base_14_ghostwhite { +.hair_base_14_blond { background-image: url(spritesmith-main-1.png); background-position: 0px -1456px; width: 90px; height: 90px; } -.customize-option.hair_base_14_ghostwhite { +.customize-option.hair_base_14_blond { background-image: url(spritesmith-main-1.png); background-position: -25px -1471px; width: 60px; height: 60px; } -.hair_base_14_green { +.hair_base_14_blue { background-image: url(spritesmith-main-1.png); background-position: -91px -1456px; width: 90px; height: 90px; } -.customize-option.hair_base_14_green { +.customize-option.hair_base_14_blue { background-image: url(spritesmith-main-1.png); background-position: -116px -1471px; width: 60px; height: 60px; } -.hair_base_14_halloween { +.hair_base_14_brown { background-image: url(spritesmith-main-1.png); background-position: -182px -1456px; width: 90px; height: 90px; } -.customize-option.hair_base_14_halloween { +.customize-option.hair_base_14_brown { background-image: url(spritesmith-main-1.png); background-position: -207px -1471px; width: 60px; height: 60px; } -.hair_base_14_holly { +.hair_base_14_candycane { background-image: url(spritesmith-main-1.png); background-position: -273px -1456px; width: 90px; height: 90px; } -.customize-option.hair_base_14_holly { +.customize-option.hair_base_14_candycane { background-image: url(spritesmith-main-1.png); background-position: -298px -1471px; width: 60px; height: 60px; } -.hair_base_14_hollygreen { +.hair_base_14_candycorn { background-image: url(spritesmith-main-1.png); background-position: -364px -1456px; width: 90px; height: 90px; } -.customize-option.hair_base_14_hollygreen { +.customize-option.hair_base_14_candycorn { background-image: url(spritesmith-main-1.png); background-position: -389px -1471px; width: 60px; height: 60px; } -.hair_base_14_midnight { +.hair_base_14_festive { background-image: url(spritesmith-main-1.png); background-position: -455px -1456px; width: 90px; height: 90px; } -.customize-option.hair_base_14_midnight { +.customize-option.hair_base_14_festive { background-image: url(spritesmith-main-1.png); background-position: -480px -1471px; width: 60px; height: 60px; } -.hair_base_14_pblue { +.hair_base_14_frost { background-image: url(spritesmith-main-1.png); background-position: -546px -1456px; width: 90px; height: 90px; } -.customize-option.hair_base_14_pblue { +.customize-option.hair_base_14_frost { background-image: url(spritesmith-main-1.png); background-position: -571px -1471px; width: 60px; height: 60px; } -.hair_base_14_pblue2 { +.hair_base_14_ghostwhite { background-image: url(spritesmith-main-1.png); background-position: -637px -1456px; width: 90px; height: 90px; } -.customize-option.hair_base_14_pblue2 { +.customize-option.hair_base_14_ghostwhite { background-image: url(spritesmith-main-1.png); background-position: -662px -1471px; width: 60px; height: 60px; } -.hair_base_14_peppermint { +.hair_base_14_green { background-image: url(spritesmith-main-1.png); background-position: -728px -1456px; width: 90px; height: 90px; } -.customize-option.hair_base_14_peppermint { +.customize-option.hair_base_14_green { background-image: url(spritesmith-main-1.png); background-position: -753px -1471px; width: 60px; height: 60px; } -.hair_base_14_pgreen { +.hair_base_14_halloween { background-image: url(spritesmith-main-1.png); background-position: -819px -1456px; width: 90px; height: 90px; } -.customize-option.hair_base_14_pgreen { +.customize-option.hair_base_14_halloween { background-image: url(spritesmith-main-1.png); background-position: -844px -1471px; width: 60px; height: 60px; } -.hair_base_14_pgreen2 { +.hair_base_14_holly { background-image: url(spritesmith-main-1.png); background-position: -910px -1456px; width: 90px; height: 90px; } -.customize-option.hair_base_14_pgreen2 { +.customize-option.hair_base_14_holly { background-image: url(spritesmith-main-1.png); background-position: -935px -1471px; width: 60px; height: 60px; } -.hair_base_14_porange { +.hair_base_14_hollygreen { background-image: url(spritesmith-main-1.png); background-position: -1001px -1456px; width: 90px; height: 90px; } -.customize-option.hair_base_14_porange { +.customize-option.hair_base_14_hollygreen { background-image: url(spritesmith-main-1.png); background-position: -1026px -1471px; width: 60px; height: 60px; } -.hair_base_14_porange2 { +.hair_base_14_midnight { background-image: url(spritesmith-main-1.png); background-position: -1092px -1456px; width: 90px; height: 90px; } -.customize-option.hair_base_14_porange2 { +.customize-option.hair_base_14_midnight { background-image: url(spritesmith-main-1.png); background-position: -1117px -1471px; width: 60px; height: 60px; } -.hair_base_14_ppink { +.hair_base_14_pblue { background-image: url(spritesmith-main-1.png); background-position: -1183px -1456px; width: 90px; height: 90px; } -.customize-option.hair_base_14_ppink { +.customize-option.hair_base_14_pblue { background-image: url(spritesmith-main-1.png); background-position: -1208px -1471px; width: 60px; height: 60px; } -.hair_base_14_ppink2 { +.hair_base_14_pblue2 { background-image: url(spritesmith-main-1.png); background-position: -1274px -1456px; width: 90px; height: 90px; } -.customize-option.hair_base_14_ppink2 { +.customize-option.hair_base_14_pblue2 { background-image: url(spritesmith-main-1.png); background-position: -1299px -1471px; width: 60px; height: 60px; } -.hair_base_14_ppurple { +.hair_base_14_peppermint { background-image: url(spritesmith-main-1.png); background-position: -1365px -1456px; width: 90px; height: 90px; } -.customize-option.hair_base_14_ppurple { +.customize-option.hair_base_14_peppermint { background-image: url(spritesmith-main-1.png); background-position: -1390px -1471px; width: 60px; height: 60px; } -.hair_base_14_ppurple2 { +.hair_base_14_pgreen { background-image: url(spritesmith-main-1.png); background-position: -1456px -1456px; width: 90px; height: 90px; } -.customize-option.hair_base_14_ppurple2 { +.customize-option.hair_base_14_pgreen { background-image: url(spritesmith-main-1.png); background-position: -1481px -1471px; width: 60px; height: 60px; } -.hair_base_14_pumpkin { +.hair_base_14_pgreen2 { background-image: url(spritesmith-main-1.png); background-position: -1547px 0px; width: 90px; height: 90px; } -.customize-option.hair_base_14_pumpkin { +.customize-option.hair_base_14_pgreen2 { background-image: url(spritesmith-main-1.png); background-position: -1572px -15px; width: 60px; height: 60px; } -.hair_base_14_purple { +.hair_base_14_porange { background-image: url(spritesmith-main-1.png); background-position: -1547px -91px; width: 90px; height: 90px; } -.customize-option.hair_base_14_purple { +.customize-option.hair_base_14_porange { background-image: url(spritesmith-main-1.png); background-position: -1572px -106px; width: 60px; height: 60px; } -.hair_base_14_pyellow { +.hair_base_14_porange2 { background-image: url(spritesmith-main-1.png); background-position: -1547px -182px; width: 90px; height: 90px; } -.customize-option.hair_base_14_pyellow { +.customize-option.hair_base_14_porange2 { background-image: url(spritesmith-main-1.png); background-position: -1572px -197px; width: 60px; height: 60px; } -.hair_base_14_pyellow2 { +.hair_base_14_ppink { background-image: url(spritesmith-main-1.png); background-position: -1547px -273px; width: 90px; height: 90px; } -.customize-option.hair_base_14_pyellow2 { +.customize-option.hair_base_14_ppink { background-image: url(spritesmith-main-1.png); background-position: -1572px -288px; width: 60px; height: 60px; } -.hair_base_14_rainbow { +.hair_base_14_ppink2 { background-image: url(spritesmith-main-1.png); background-position: -1547px -364px; width: 90px; height: 90px; } -.customize-option.hair_base_14_rainbow { +.customize-option.hair_base_14_ppink2 { background-image: url(spritesmith-main-1.png); background-position: -1572px -379px; width: 60px; height: 60px; } -.hair_base_14_red { +.hair_base_14_ppurple { background-image: url(spritesmith-main-1.png); background-position: -1547px -455px; width: 90px; height: 90px; } -.customize-option.hair_base_14_red { +.customize-option.hair_base_14_ppurple { background-image: url(spritesmith-main-1.png); background-position: -1572px -470px; width: 60px; height: 60px; } -.hair_base_14_snowy { +.hair_base_14_ppurple2 { background-image: url(spritesmith-main-1.png); background-position: -1547px -546px; width: 90px; height: 90px; } -.customize-option.hair_base_14_snowy { +.customize-option.hair_base_14_ppurple2 { background-image: url(spritesmith-main-1.png); background-position: -1572px -561px; width: 60px; height: 60px; } -.hair_base_14_white { +.hair_base_14_pumpkin { background-image: url(spritesmith-main-1.png); background-position: -1547px -637px; width: 90px; height: 90px; } -.customize-option.hair_base_14_white { +.customize-option.hair_base_14_pumpkin { background-image: url(spritesmith-main-1.png); background-position: -1572px -652px; width: 60px; height: 60px; } -.hair_base_14_winternight { +.hair_base_14_purple { background-image: url(spritesmith-main-1.png); background-position: -1547px -728px; width: 90px; height: 90px; } -.customize-option.hair_base_14_winternight { +.customize-option.hair_base_14_purple { background-image: url(spritesmith-main-1.png); background-position: -1572px -743px; width: 60px; height: 60px; } -.hair_base_14_winterstar { +.hair_base_14_pyellow { background-image: url(spritesmith-main-1.png); background-position: -1547px -819px; width: 90px; height: 90px; } -.customize-option.hair_base_14_winterstar { +.customize-option.hair_base_14_pyellow { background-image: url(spritesmith-main-1.png); background-position: -1572px -834px; width: 60px; height: 60px; } -.hair_base_14_yellow { +.hair_base_14_pyellow2 { background-image: url(spritesmith-main-1.png); background-position: -1547px -910px; width: 90px; height: 90px; } -.customize-option.hair_base_14_yellow { +.customize-option.hair_base_14_pyellow2 { background-image: url(spritesmith-main-1.png); background-position: -1572px -925px; width: 60px; height: 60px; } -.hair_base_14_zombie { +.hair_base_14_rainbow { background-image: url(spritesmith-main-1.png); background-position: -1547px -1001px; width: 90px; height: 90px; } -.customize-option.hair_base_14_zombie { +.customize-option.hair_base_14_rainbow { background-image: url(spritesmith-main-1.png); background-position: -1572px -1016px; width: 60px; height: 60px; } -.hair_base_1_TRUred { +.hair_base_14_red { background-image: url(spritesmith-main-1.png); background-position: -1547px -1092px; width: 90px; height: 90px; } -.customize-option.hair_base_1_TRUred { +.customize-option.hair_base_14_red { background-image: url(spritesmith-main-1.png); background-position: -1572px -1107px; width: 60px; height: 60px; } -.hair_base_1_aurora { +.hair_base_14_snowy { background-image: url(spritesmith-main-1.png); background-position: -1547px -1183px; width: 90px; height: 90px; } -.customize-option.hair_base_1_aurora { +.customize-option.hair_base_14_snowy { background-image: url(spritesmith-main-1.png); background-position: -1572px -1198px; width: 60px; height: 60px; } -.hair_base_1_black { +.hair_base_14_white { background-image: url(spritesmith-main-1.png); background-position: -1547px -1274px; width: 90px; height: 90px; } -.customize-option.hair_base_1_black { +.customize-option.hair_base_14_white { background-image: url(spritesmith-main-1.png); background-position: -1572px -1289px; width: 60px; height: 60px; } -.hair_base_1_blond { +.hair_base_14_winternight { background-image: url(spritesmith-main-1.png); background-position: -1547px -1365px; width: 90px; height: 90px; } -.customize-option.hair_base_1_blond { +.customize-option.hair_base_14_winternight { background-image: url(spritesmith-main-1.png); background-position: -1572px -1380px; width: 60px; height: 60px; } -.hair_base_1_blue { +.hair_base_14_winterstar { background-image: url(spritesmith-main-1.png); background-position: -1547px -1456px; width: 90px; height: 90px; } -.customize-option.hair_base_1_blue { +.customize-option.hair_base_14_winterstar { background-image: url(spritesmith-main-1.png); background-position: -1572px -1471px; width: 60px; height: 60px; } -.hair_base_1_brown { +.hair_base_14_yellow { background-image: url(spritesmith-main-1.png); background-position: 0px -1547px; width: 90px; height: 90px; } -.customize-option.hair_base_1_brown { +.customize-option.hair_base_14_yellow { background-image: url(spritesmith-main-1.png); background-position: -25px -1562px; width: 60px; height: 60px; } -.hair_base_1_candycane { +.hair_base_14_zombie { background-image: url(spritesmith-main-1.png); background-position: -91px -1547px; width: 90px; height: 90px; } -.customize-option.hair_base_1_candycane { +.customize-option.hair_base_14_zombie { background-image: url(spritesmith-main-1.png); background-position: -116px -1562px; width: 60px; height: 60px; } -.hair_base_1_candycorn { +.hair_base_1_TRUred { background-image: url(spritesmith-main-1.png); background-position: -182px -1547px; width: 90px; height: 90px; } -.customize-option.hair_base_1_candycorn { +.customize-option.hair_base_1_TRUred { background-image: url(spritesmith-main-1.png); background-position: -207px -1562px; width: 60px; height: 60px; } -.hair_base_1_festive { +.hair_base_1_aurora { background-image: url(spritesmith-main-1.png); background-position: -273px -1547px; width: 90px; height: 90px; } -.customize-option.hair_base_1_festive { +.customize-option.hair_base_1_aurora { background-image: url(spritesmith-main-1.png); background-position: -298px -1562px; width: 60px; height: 60px; } -.hair_base_1_frost { +.hair_base_1_black { background-image: url(spritesmith-main-1.png); background-position: -364px -1547px; width: 90px; height: 90px; } -.customize-option.hair_base_1_frost { +.customize-option.hair_base_1_black { background-image: url(spritesmith-main-1.png); background-position: -389px -1562px; width: 60px; height: 60px; } -.hair_base_1_ghostwhite { +.hair_base_1_blond { background-image: url(spritesmith-main-1.png); background-position: -455px -1547px; width: 90px; height: 90px; } -.customize-option.hair_base_1_ghostwhite { +.customize-option.hair_base_1_blond { background-image: url(spritesmith-main-1.png); background-position: -480px -1562px; width: 60px; height: 60px; } -.hair_base_1_green { +.hair_base_1_blue { background-image: url(spritesmith-main-1.png); background-position: -546px -1547px; width: 90px; height: 90px; } -.customize-option.hair_base_1_green { +.customize-option.hair_base_1_blue { background-image: url(spritesmith-main-1.png); background-position: -571px -1562px; width: 60px; height: 60px; } -.hair_base_1_halloween { +.hair_base_1_brown { background-image: url(spritesmith-main-1.png); background-position: -637px -1547px; width: 90px; height: 90px; } -.customize-option.hair_base_1_halloween { +.customize-option.hair_base_1_brown { background-image: url(spritesmith-main-1.png); background-position: -662px -1562px; width: 60px; height: 60px; } -.hair_base_1_holly { +.hair_base_1_candycane { background-image: url(spritesmith-main-1.png); background-position: -728px -1547px; width: 90px; height: 90px; } -.customize-option.hair_base_1_holly { +.customize-option.hair_base_1_candycane { background-image: url(spritesmith-main-1.png); background-position: -753px -1562px; width: 60px; height: 60px; } -.hair_base_1_hollygreen { +.hair_base_1_candycorn { background-image: url(spritesmith-main-1.png); background-position: -819px -1547px; width: 90px; height: 90px; } -.customize-option.hair_base_1_hollygreen { +.customize-option.hair_base_1_candycorn { background-image: url(spritesmith-main-1.png); background-position: -844px -1562px; width: 60px; height: 60px; } -.hair_base_1_midnight { +.hair_base_1_festive { background-image: url(spritesmith-main-1.png); background-position: -910px -1547px; width: 90px; height: 90px; } -.customize-option.hair_base_1_midnight { +.customize-option.hair_base_1_festive { background-image: url(spritesmith-main-1.png); background-position: -935px -1562px; width: 60px; height: 60px; } -.hair_base_1_pblue { +.hair_base_1_frost { background-image: url(spritesmith-main-1.png); background-position: -1001px -1547px; width: 90px; height: 90px; } -.customize-option.hair_base_1_pblue { +.customize-option.hair_base_1_frost { background-image: url(spritesmith-main-1.png); background-position: -1026px -1562px; width: 60px; height: 60px; } -.hair_base_1_pblue2 { +.hair_base_1_ghostwhite { background-image: url(spritesmith-main-1.png); background-position: -1092px -1547px; width: 90px; height: 90px; } -.customize-option.hair_base_1_pblue2 { +.customize-option.hair_base_1_ghostwhite { background-image: url(spritesmith-main-1.png); background-position: -1117px -1562px; width: 60px; height: 60px; } -.hair_base_1_peppermint { +.hair_base_1_green { background-image: url(spritesmith-main-1.png); background-position: -1183px -1547px; width: 90px; height: 90px; } -.customize-option.hair_base_1_peppermint { +.customize-option.hair_base_1_green { background-image: url(spritesmith-main-1.png); background-position: -1208px -1562px; width: 60px; height: 60px; } -.hair_base_1_pgreen { +.hair_base_1_halloween { background-image: url(spritesmith-main-1.png); background-position: -1274px -1547px; width: 90px; height: 90px; } -.customize-option.hair_base_1_pgreen { +.customize-option.hair_base_1_halloween { background-image: url(spritesmith-main-1.png); background-position: -1299px -1562px; width: 60px; height: 60px; } -.hair_base_1_pgreen2 { +.hair_base_1_holly { background-image: url(spritesmith-main-1.png); background-position: -1365px -1547px; width: 90px; height: 90px; } -.customize-option.hair_base_1_pgreen2 { +.customize-option.hair_base_1_holly { background-image: url(spritesmith-main-1.png); background-position: -1390px -1562px; width: 60px; height: 60px; } -.hair_base_1_porange { +.hair_base_1_hollygreen { background-image: url(spritesmith-main-1.png); background-position: -1456px -1547px; width: 90px; height: 90px; } -.customize-option.hair_base_1_porange { +.customize-option.hair_base_1_hollygreen { background-image: url(spritesmith-main-1.png); background-position: -1481px -1562px; width: 60px; height: 60px; } -.hair_base_1_porange2 { +.hair_base_1_midnight { background-image: url(spritesmith-main-1.png); background-position: -1547px -1547px; width: 90px; height: 90px; } -.customize-option.hair_base_1_porange2 { +.customize-option.hair_base_1_midnight { background-image: url(spritesmith-main-1.png); background-position: -1572px -1562px; width: 60px; height: 60px; } -.hair_base_1_ppink { +.hair_base_1_pblue { background-image: url(spritesmith-main-1.png); background-position: -1638px 0px; width: 90px; height: 90px; } -.customize-option.hair_base_1_ppink { +.customize-option.hair_base_1_pblue { background-image: url(spritesmith-main-1.png); background-position: -1663px -15px; width: 60px; height: 60px; } -.hair_base_1_ppink2 { +.hair_base_1_pblue2 { background-image: url(spritesmith-main-1.png); background-position: -1638px -91px; width: 90px; height: 90px; } -.customize-option.hair_base_1_ppink2 { +.customize-option.hair_base_1_pblue2 { background-image: url(spritesmith-main-1.png); background-position: -1663px -106px; width: 60px; height: 60px; } -.hair_base_1_ppurple { +.hair_base_1_peppermint { background-image: url(spritesmith-main-1.png); background-position: -1638px -182px; width: 90px; height: 90px; } -.customize-option.hair_base_1_ppurple { +.customize-option.hair_base_1_peppermint { background-image: url(spritesmith-main-1.png); background-position: -1663px -197px; width: 60px; height: 60px; } -.hair_base_1_ppurple2 { +.hair_base_1_pgreen { background-image: url(spritesmith-main-1.png); background-position: -1638px -273px; width: 90px; height: 90px; } -.customize-option.hair_base_1_ppurple2 { +.customize-option.hair_base_1_pgreen { background-image: url(spritesmith-main-1.png); background-position: -1663px -288px; width: 60px; height: 60px; } -.hair_base_1_pumpkin { +.hair_base_1_pgreen2 { background-image: url(spritesmith-main-1.png); background-position: -1638px -364px; width: 90px; height: 90px; } -.customize-option.hair_base_1_pumpkin { +.customize-option.hair_base_1_pgreen2 { background-image: url(spritesmith-main-1.png); background-position: -1663px -379px; width: 60px; diff --git a/common/dist/sprites/spritesmith-main-1.png b/common/dist/sprites/spritesmith-main-1.png index 5cf206595c..d2b844e916 100644 Binary files a/common/dist/sprites/spritesmith-main-1.png and b/common/dist/sprites/spritesmith-main-1.png differ diff --git a/common/dist/sprites/spritesmith-main-10.css b/common/dist/sprites/spritesmith-main-10.css new file mode 100644 index 0000000000..309503d5ad --- /dev/null +++ b/common/dist/sprites/spritesmith-main-10.css @@ -0,0 +1,1992 @@ +.Mount_Icon_Wolf-Red { + background-image: url(spritesmith-main-10.png); + background-position: -82px 0px; + width: 81px; + height: 99px; +} +.Mount_Icon_Wolf-Shade { + background-image: url(spritesmith-main-10.png); + background-position: -82px -1100px; + width: 81px; + height: 99px; +} +.Mount_Icon_Wolf-Skeleton { + background-image: url(spritesmith-main-10.png); + background-position: -164px 0px; + width: 81px; + height: 99px; +} +.Mount_Icon_Wolf-Spooky { + background-image: url(spritesmith-main-10.png); + background-position: 0px -100px; + width: 81px; + height: 99px; +} +.Mount_Icon_Wolf-White { + background-image: url(spritesmith-main-10.png); + background-position: -82px -100px; + width: 81px; + height: 99px; +} +.Mount_Icon_Wolf-Zombie { + background-image: url(spritesmith-main-10.png); + background-position: -164px -100px; + width: 81px; + height: 99px; +} +.Pet-BearCub-Base { + background-image: url(spritesmith-main-10.png); + background-position: -246px 0px; + width: 81px; + height: 99px; +} +.Pet-BearCub-CottonCandyBlue { + background-image: url(spritesmith-main-10.png); + background-position: -246px -100px; + width: 81px; + height: 99px; +} +.Pet-BearCub-CottonCandyPink { + background-image: url(spritesmith-main-10.png); + background-position: 0px -200px; + width: 81px; + height: 99px; +} +.Pet-BearCub-Desert { + background-image: url(spritesmith-main-10.png); + background-position: -82px -200px; + width: 81px; + height: 99px; +} +.Pet-BearCub-Golden { + background-image: url(spritesmith-main-10.png); + background-position: -164px -200px; + width: 81px; + height: 99px; +} +.Pet-BearCub-Peppermint { + background-image: url(spritesmith-main-10.png); + background-position: -246px -200px; + width: 81px; + height: 99px; +} +.Pet-BearCub-Polar { + background-image: url(spritesmith-main-10.png); + background-position: -328px 0px; + width: 81px; + height: 99px; +} +.Pet-BearCub-Red { + background-image: url(spritesmith-main-10.png); + background-position: -328px -100px; + width: 81px; + height: 99px; +} +.Pet-BearCub-Shade { + background-image: url(spritesmith-main-10.png); + background-position: -328px -200px; + width: 81px; + height: 99px; +} +.Pet-BearCub-Skeleton { + background-image: url(spritesmith-main-10.png); + background-position: 0px -300px; + width: 81px; + height: 99px; +} +.Pet-BearCub-Spooky { + background-image: url(spritesmith-main-10.png); + background-position: -82px -300px; + width: 81px; + height: 99px; +} +.Pet-BearCub-White { + background-image: url(spritesmith-main-10.png); + background-position: -164px -300px; + width: 81px; + height: 99px; +} +.Pet-BearCub-Zombie { + background-image: url(spritesmith-main-10.png); + background-position: -246px -300px; + width: 81px; + height: 99px; +} +.Pet-Bunny-Base { + background-image: url(spritesmith-main-10.png); + background-position: -328px -300px; + width: 81px; + height: 99px; +} +.Pet-Bunny-CottonCandyBlue { + background-image: url(spritesmith-main-10.png); + background-position: -410px 0px; + width: 81px; + height: 99px; +} +.Pet-Bunny-CottonCandyPink { + background-image: url(spritesmith-main-10.png); + background-position: -410px -100px; + width: 81px; + height: 99px; +} +.Pet-Bunny-Desert { + background-image: url(spritesmith-main-10.png); + background-position: -410px -200px; + width: 81px; + height: 99px; +} +.Pet-Bunny-Golden { + background-image: url(spritesmith-main-10.png); + background-position: -410px -300px; + width: 81px; + height: 99px; +} +.Pet-Bunny-Red { + background-image: url(spritesmith-main-10.png); + background-position: -492px 0px; + width: 81px; + height: 99px; +} +.Pet-Bunny-Shade { + background-image: url(spritesmith-main-10.png); + background-position: -492px -100px; + width: 81px; + height: 99px; +} +.Pet-Bunny-Skeleton { + background-image: url(spritesmith-main-10.png); + background-position: -492px -200px; + width: 81px; + height: 99px; +} +.Pet-Bunny-White { + background-image: url(spritesmith-main-10.png); + background-position: -492px -300px; + width: 81px; + height: 99px; +} +.Pet-Bunny-Zombie { + background-image: url(spritesmith-main-10.png); + background-position: 0px -400px; + width: 81px; + height: 99px; +} +.Pet-Cactus-Base { + background-image: url(spritesmith-main-10.png); + background-position: -82px -400px; + width: 81px; + height: 99px; +} +.Pet-Cactus-CottonCandyBlue { + background-image: url(spritesmith-main-10.png); + background-position: -164px -400px; + width: 81px; + height: 99px; +} +.Pet-Cactus-CottonCandyPink { + background-image: url(spritesmith-main-10.png); + background-position: -246px -400px; + width: 81px; + height: 99px; +} +.Pet-Cactus-Desert { + background-image: url(spritesmith-main-10.png); + background-position: -328px -400px; + width: 81px; + height: 99px; +} +.Pet-Cactus-Golden { + background-image: url(spritesmith-main-10.png); + background-position: -410px -400px; + width: 81px; + height: 99px; +} +.Pet-Cactus-Peppermint { + background-image: url(spritesmith-main-10.png); + background-position: -492px -400px; + width: 81px; + height: 99px; +} +.Pet-Cactus-Red { + background-image: url(spritesmith-main-10.png); + background-position: -574px 0px; + width: 81px; + height: 99px; +} +.Pet-Cactus-Shade { + background-image: url(spritesmith-main-10.png); + background-position: -574px -100px; + width: 81px; + height: 99px; +} +.Pet-Cactus-Skeleton { + background-image: url(spritesmith-main-10.png); + background-position: -574px -200px; + width: 81px; + height: 99px; +} +.Pet-Cactus-Spooky { + background-image: url(spritesmith-main-10.png); + background-position: -574px -300px; + width: 81px; + height: 99px; +} +.Pet-Cactus-White { + background-image: url(spritesmith-main-10.png); + background-position: -574px -400px; + width: 81px; + height: 99px; +} +.Pet-Cactus-Zombie { + background-image: url(spritesmith-main-10.png); + background-position: 0px -500px; + width: 81px; + height: 99px; +} +.Pet-Cheetah-Base { + background-image: url(spritesmith-main-10.png); + background-position: -82px -500px; + width: 81px; + height: 99px; +} +.Pet-Cheetah-CottonCandyBlue { + background-image: url(spritesmith-main-10.png); + background-position: -164px -500px; + width: 81px; + height: 99px; +} +.Pet-Cheetah-CottonCandyPink { + background-image: url(spritesmith-main-10.png); + background-position: -246px -500px; + width: 81px; + height: 99px; +} +.Pet-Cheetah-Desert { + background-image: url(spritesmith-main-10.png); + background-position: -328px -500px; + width: 81px; + height: 99px; +} +.Pet-Cheetah-Golden { + background-image: url(spritesmith-main-10.png); + background-position: -410px -500px; + width: 81px; + height: 99px; +} +.Pet-Cheetah-Red { + background-image: url(spritesmith-main-10.png); + background-position: -492px -500px; + width: 81px; + height: 99px; +} +.Pet-Cheetah-Shade { + background-image: url(spritesmith-main-10.png); + background-position: -574px -500px; + width: 81px; + height: 99px; +} +.Pet-Cheetah-Skeleton { + background-image: url(spritesmith-main-10.png); + background-position: -656px 0px; + width: 81px; + height: 99px; +} +.Pet-Cheetah-White { + background-image: url(spritesmith-main-10.png); + background-position: -656px -100px; + width: 81px; + height: 99px; +} +.Pet-Cheetah-Zombie { + background-image: url(spritesmith-main-10.png); + background-position: -656px -200px; + width: 81px; + height: 99px; +} +.Pet-Cuttlefish-Base { + background-image: url(spritesmith-main-10.png); + background-position: -656px -300px; + width: 81px; + height: 99px; +} +.Pet-Cuttlefish-CottonCandyBlue { + background-image: url(spritesmith-main-10.png); + background-position: -656px -400px; + width: 81px; + height: 99px; +} +.Pet-Cuttlefish-CottonCandyPink { + background-image: url(spritesmith-main-10.png); + background-position: -656px -500px; + width: 81px; + height: 99px; +} +.Pet-Cuttlefish-Desert { + background-image: url(spritesmith-main-10.png); + background-position: 0px -600px; + width: 81px; + height: 99px; +} +.Pet-Cuttlefish-Golden { + background-image: url(spritesmith-main-10.png); + background-position: -82px -600px; + width: 81px; + height: 99px; +} +.Pet-Cuttlefish-Red { + background-image: url(spritesmith-main-10.png); + background-position: -164px -600px; + width: 81px; + height: 99px; +} +.Pet-Cuttlefish-Shade { + background-image: url(spritesmith-main-10.png); + background-position: -246px -600px; + width: 81px; + height: 99px; +} +.Pet-Cuttlefish-Skeleton { + background-image: url(spritesmith-main-10.png); + background-position: -328px -600px; + width: 81px; + height: 99px; +} +.Pet-Cuttlefish-White { + background-image: url(spritesmith-main-10.png); + background-position: -410px -600px; + width: 81px; + height: 99px; +} +.Pet-Cuttlefish-Zombie { + background-image: url(spritesmith-main-10.png); + background-position: -492px -600px; + width: 81px; + height: 99px; +} +.Pet-Deer-Base { + background-image: url(spritesmith-main-10.png); + background-position: -574px -600px; + width: 81px; + height: 99px; +} +.Pet-Deer-CottonCandyBlue { + background-image: url(spritesmith-main-10.png); + background-position: -656px -600px; + width: 81px; + height: 99px; +} +.Pet-Deer-CottonCandyPink { + background-image: url(spritesmith-main-10.png); + background-position: -738px 0px; + width: 81px; + height: 99px; +} +.Pet-Deer-Desert { + background-image: url(spritesmith-main-10.png); + background-position: -738px -100px; + width: 81px; + height: 99px; +} +.Pet-Deer-Golden { + background-image: url(spritesmith-main-10.png); + background-position: -738px -200px; + width: 81px; + height: 99px; +} +.Pet-Deer-Red { + background-image: url(spritesmith-main-10.png); + background-position: -738px -300px; + width: 81px; + height: 99px; +} +.Pet-Deer-Shade { + background-image: url(spritesmith-main-10.png); + background-position: -738px -400px; + width: 81px; + height: 99px; +} +.Pet-Deer-Skeleton { + background-image: url(spritesmith-main-10.png); + background-position: -738px -500px; + width: 81px; + height: 99px; +} +.Pet-Deer-White { + background-image: url(spritesmith-main-10.png); + background-position: -738px -600px; + width: 81px; + height: 99px; +} +.Pet-Deer-Zombie { + background-image: url(spritesmith-main-10.png); + background-position: 0px -700px; + width: 81px; + height: 99px; +} +.Pet-Dragon-Base { + background-image: url(spritesmith-main-10.png); + background-position: -82px -700px; + width: 81px; + height: 99px; +} +.Pet-Dragon-CottonCandyBlue { + background-image: url(spritesmith-main-10.png); + background-position: -164px -700px; + width: 81px; + height: 99px; +} +.Pet-Dragon-CottonCandyPink { + background-image: url(spritesmith-main-10.png); + background-position: -246px -700px; + width: 81px; + height: 99px; +} +.Pet-Dragon-Desert { + background-image: url(spritesmith-main-10.png); + background-position: -328px -700px; + width: 81px; + height: 99px; +} +.Pet-Dragon-Golden { + background-image: url(spritesmith-main-10.png); + background-position: -410px -700px; + width: 81px; + height: 99px; +} +.Pet-Dragon-Hydra { + background-image: url(spritesmith-main-10.png); + background-position: -492px -700px; + width: 81px; + height: 99px; +} +.Pet-Dragon-Peppermint { + background-image: url(spritesmith-main-10.png); + background-position: -574px -700px; + width: 81px; + height: 99px; +} +.Pet-Dragon-Red { + background-image: url(spritesmith-main-10.png); + background-position: -656px -700px; + width: 81px; + height: 99px; +} +.Pet-Dragon-Shade { + background-image: url(spritesmith-main-10.png); + background-position: -738px -700px; + width: 81px; + height: 99px; +} +.Pet-Dragon-Skeleton { + background-image: url(spritesmith-main-10.png); + background-position: -820px 0px; + width: 81px; + height: 99px; +} +.Pet-Dragon-Spooky { + background-image: url(spritesmith-main-10.png); + background-position: -820px -100px; + width: 81px; + height: 99px; +} +.Pet-Dragon-White { + background-image: url(spritesmith-main-10.png); + background-position: -820px -200px; + width: 81px; + height: 99px; +} +.Pet-Dragon-Zombie { + background-image: url(spritesmith-main-10.png); + background-position: -820px -300px; + width: 81px; + height: 99px; +} +.Pet-Egg-Base { + background-image: url(spritesmith-main-10.png); + background-position: -820px -400px; + width: 81px; + height: 99px; +} +.Pet-Egg-CottonCandyBlue { + background-image: url(spritesmith-main-10.png); + background-position: -820px -500px; + width: 81px; + height: 99px; +} +.Pet-Egg-CottonCandyPink { + background-image: url(spritesmith-main-10.png); + background-position: -820px -600px; + width: 81px; + height: 99px; +} +.Pet-Egg-Desert { + background-image: url(spritesmith-main-10.png); + background-position: -820px -700px; + width: 81px; + height: 99px; +} +.Pet-Egg-Golden { + background-image: url(spritesmith-main-10.png); + background-position: 0px -800px; + width: 81px; + height: 99px; +} +.Pet-Egg-Red { + background-image: url(spritesmith-main-10.png); + background-position: -82px -800px; + width: 81px; + height: 99px; +} +.Pet-Egg-Shade { + background-image: url(spritesmith-main-10.png); + background-position: -164px -800px; + width: 81px; + height: 99px; +} +.Pet-Egg-Skeleton { + background-image: url(spritesmith-main-10.png); + background-position: -246px -800px; + width: 81px; + height: 99px; +} +.Pet-Egg-White { + background-image: url(spritesmith-main-10.png); + background-position: -328px -800px; + width: 81px; + height: 99px; +} +.Pet-Egg-Zombie { + background-image: url(spritesmith-main-10.png); + background-position: -410px -800px; + width: 81px; + height: 99px; +} +.Pet-FlyingPig-Base { + background-image: url(spritesmith-main-10.png); + background-position: -492px -800px; + width: 81px; + height: 99px; +} +.Pet-FlyingPig-CottonCandyBlue { + background-image: url(spritesmith-main-10.png); + background-position: -574px -800px; + width: 81px; + height: 99px; +} +.Pet-FlyingPig-CottonCandyPink { + background-image: url(spritesmith-main-10.png); + background-position: -656px -800px; + width: 81px; + height: 99px; +} +.Pet-FlyingPig-Desert { + background-image: url(spritesmith-main-10.png); + background-position: -738px -800px; + width: 81px; + height: 99px; +} +.Pet-FlyingPig-Golden { + background-image: url(spritesmith-main-10.png); + background-position: -820px -800px; + width: 81px; + height: 99px; +} +.Pet-FlyingPig-Peppermint { + background-image: url(spritesmith-main-10.png); + background-position: -902px 0px; + width: 81px; + height: 99px; +} +.Pet-FlyingPig-Red { + background-image: url(spritesmith-main-10.png); + background-position: -902px -100px; + width: 81px; + height: 99px; +} +.Pet-FlyingPig-Shade { + background-image: url(spritesmith-main-10.png); + background-position: -902px -200px; + width: 81px; + height: 99px; +} +.Pet-FlyingPig-Skeleton { + background-image: url(spritesmith-main-10.png); + background-position: -902px -300px; + width: 81px; + height: 99px; +} +.Pet-FlyingPig-Spooky { + background-image: url(spritesmith-main-10.png); + background-position: -902px -400px; + width: 81px; + height: 99px; +} +.Pet-FlyingPig-White { + background-image: url(spritesmith-main-10.png); + background-position: -902px -500px; + width: 81px; + height: 99px; +} +.Pet-FlyingPig-Zombie { + background-image: url(spritesmith-main-10.png); + background-position: -902px -600px; + width: 81px; + height: 99px; +} +.Pet-Fox-Base { + background-image: url(spritesmith-main-10.png); + background-position: -902px -700px; + width: 81px; + height: 99px; +} +.Pet-Fox-CottonCandyBlue { + background-image: url(spritesmith-main-10.png); + background-position: -902px -800px; + width: 81px; + height: 99px; +} +.Pet-Fox-CottonCandyPink { + background-image: url(spritesmith-main-10.png); + background-position: -984px 0px; + width: 81px; + height: 99px; +} +.Pet-Fox-Desert { + background-image: url(spritesmith-main-10.png); + background-position: -984px -100px; + width: 81px; + height: 99px; +} +.Pet-Fox-Golden { + background-image: url(spritesmith-main-10.png); + background-position: -984px -200px; + width: 81px; + height: 99px; +} +.Pet-Fox-Peppermint { + background-image: url(spritesmith-main-10.png); + background-position: -984px -300px; + width: 81px; + height: 99px; +} +.Pet-Fox-Red { + background-image: url(spritesmith-main-10.png); + background-position: -984px -400px; + width: 81px; + height: 99px; +} +.Pet-Fox-Shade { + background-image: url(spritesmith-main-10.png); + background-position: -984px -500px; + width: 81px; + height: 99px; +} +.Pet-Fox-Skeleton { + background-image: url(spritesmith-main-10.png); + background-position: -984px -600px; + width: 81px; + height: 99px; +} +.Pet-Fox-Spooky { + background-image: url(spritesmith-main-10.png); + background-position: -984px -700px; + width: 81px; + height: 99px; +} +.Pet-Fox-White { + background-image: url(spritesmith-main-10.png); + background-position: -984px -800px; + width: 81px; + height: 99px; +} +.Pet-Fox-Zombie { + background-image: url(spritesmith-main-10.png); + background-position: 0px -900px; + width: 81px; + height: 99px; +} +.Pet-Frog-Base { + background-image: url(spritesmith-main-10.png); + background-position: -82px -900px; + width: 81px; + height: 99px; +} +.Pet-Frog-CottonCandyBlue { + background-image: url(spritesmith-main-10.png); + background-position: -164px -900px; + width: 81px; + height: 99px; +} +.Pet-Frog-CottonCandyPink { + background-image: url(spritesmith-main-10.png); + background-position: -246px -900px; + width: 81px; + height: 99px; +} +.Pet-Frog-Desert { + background-image: url(spritesmith-main-10.png); + background-position: -328px -900px; + width: 81px; + height: 99px; +} +.Pet-Frog-Golden { + background-image: url(spritesmith-main-10.png); + background-position: -410px -900px; + width: 81px; + height: 99px; +} +.Pet-Frog-Red { + background-image: url(spritesmith-main-10.png); + background-position: -492px -900px; + width: 81px; + height: 99px; +} +.Pet-Frog-Shade { + background-image: url(spritesmith-main-10.png); + background-position: -574px -900px; + width: 81px; + height: 99px; +} +.Pet-Frog-Skeleton { + background-image: url(spritesmith-main-10.png); + background-position: -656px -900px; + width: 81px; + height: 99px; +} +.Pet-Frog-White { + background-image: url(spritesmith-main-10.png); + background-position: -738px -900px; + width: 81px; + height: 99px; +} +.Pet-Frog-Zombie { + background-image: url(spritesmith-main-10.png); + background-position: -820px -900px; + width: 81px; + height: 99px; +} +.Pet-Gryphon-Base { + background-image: url(spritesmith-main-10.png); + background-position: -902px -900px; + width: 81px; + height: 99px; +} +.Pet-Gryphon-CottonCandyBlue { + background-image: url(spritesmith-main-10.png); + background-position: -984px -900px; + width: 81px; + height: 99px; +} +.Pet-Gryphon-CottonCandyPink { + background-image: url(spritesmith-main-10.png); + background-position: -1066px 0px; + width: 81px; + height: 99px; +} +.Pet-Gryphon-Desert { + background-image: url(spritesmith-main-10.png); + background-position: -1066px -100px; + width: 81px; + height: 99px; +} +.Pet-Gryphon-Golden { + background-image: url(spritesmith-main-10.png); + background-position: -1066px -200px; + width: 81px; + height: 99px; +} +.Pet-Gryphon-Red { + background-image: url(spritesmith-main-10.png); + background-position: -1066px -300px; + width: 81px; + height: 99px; +} +.Pet-Gryphon-Shade { + background-image: url(spritesmith-main-10.png); + background-position: -1066px -400px; + width: 81px; + height: 99px; +} +.Pet-Gryphon-Skeleton { + background-image: url(spritesmith-main-10.png); + background-position: -1066px -500px; + width: 81px; + height: 99px; +} +.Pet-Gryphon-White { + background-image: url(spritesmith-main-10.png); + background-position: -1066px -600px; + width: 81px; + height: 99px; +} +.Pet-Gryphon-Zombie { + background-image: url(spritesmith-main-10.png); + background-position: -1066px -700px; + width: 81px; + height: 99px; +} +.Pet-Hedgehog-Base { + background-image: url(spritesmith-main-10.png); + background-position: -1066px -800px; + width: 81px; + height: 99px; +} +.Pet-Hedgehog-CottonCandyBlue { + background-image: url(spritesmith-main-10.png); + background-position: -1066px -900px; + width: 81px; + height: 99px; +} +.Pet-Hedgehog-CottonCandyPink { + background-image: url(spritesmith-main-10.png); + background-position: 0px -1000px; + width: 81px; + height: 99px; +} +.Pet-Hedgehog-Desert { + background-image: url(spritesmith-main-10.png); + background-position: -82px -1000px; + width: 81px; + height: 99px; +} +.Pet-Hedgehog-Golden { + background-image: url(spritesmith-main-10.png); + background-position: -164px -1000px; + width: 81px; + height: 99px; +} +.Pet-Hedgehog-Red { + background-image: url(spritesmith-main-10.png); + background-position: -246px -1000px; + width: 81px; + height: 99px; +} +.Pet-Hedgehog-Shade { + background-image: url(spritesmith-main-10.png); + background-position: -328px -1000px; + width: 81px; + height: 99px; +} +.Pet-Hedgehog-Skeleton { + background-image: url(spritesmith-main-10.png); + background-position: -410px -1000px; + width: 81px; + height: 99px; +} +.Pet-Hedgehog-White { + background-image: url(spritesmith-main-10.png); + background-position: -492px -1000px; + width: 81px; + height: 99px; +} +.Pet-Hedgehog-Zombie { + background-image: url(spritesmith-main-10.png); + background-position: -574px -1000px; + width: 81px; + height: 99px; +} +.Pet-Horse-Base { + background-image: url(spritesmith-main-10.png); + background-position: -656px -1000px; + width: 81px; + height: 99px; +} +.Pet-Horse-CottonCandyBlue { + background-image: url(spritesmith-main-10.png); + background-position: -738px -1000px; + width: 81px; + height: 99px; +} +.Pet-Horse-CottonCandyPink { + background-image: url(spritesmith-main-10.png); + background-position: -820px -1000px; + width: 81px; + height: 99px; +} +.Pet-Horse-Desert { + background-image: url(spritesmith-main-10.png); + background-position: -902px -1000px; + width: 81px; + height: 99px; +} +.Pet-Horse-Golden { + background-image: url(spritesmith-main-10.png); + background-position: -984px -1000px; + width: 81px; + height: 99px; +} +.Pet-Horse-Red { + background-image: url(spritesmith-main-10.png); + background-position: -1066px -1000px; + width: 81px; + height: 99px; +} +.Pet-Horse-Shade { + background-image: url(spritesmith-main-10.png); + background-position: -1148px 0px; + width: 81px; + height: 99px; +} +.Pet-Horse-Skeleton { + background-image: url(spritesmith-main-10.png); + background-position: -1148px -100px; + width: 81px; + height: 99px; +} +.Pet-Horse-White { + background-image: url(spritesmith-main-10.png); + background-position: -1148px -200px; + width: 81px; + height: 99px; +} +.Pet-Horse-Zombie { + background-image: url(spritesmith-main-10.png); + background-position: -1148px -300px; + width: 81px; + height: 99px; +} +.Pet-JackOLantern-Base { + background-image: url(spritesmith-main-10.png); + background-position: -1148px -400px; + width: 81px; + height: 99px; +} +.Pet-LionCub-Base { + background-image: url(spritesmith-main-10.png); + background-position: -1148px -500px; + width: 81px; + height: 99px; +} +.Pet-LionCub-CottonCandyBlue { + background-image: url(spritesmith-main-10.png); + background-position: -1148px -600px; + width: 81px; + height: 99px; +} +.Pet-LionCub-CottonCandyPink { + background-image: url(spritesmith-main-10.png); + background-position: -1148px -700px; + width: 81px; + height: 99px; +} +.Pet-LionCub-Desert { + background-image: url(spritesmith-main-10.png); + background-position: -1148px -800px; + width: 81px; + height: 99px; +} +.Pet-LionCub-Golden { + background-image: url(spritesmith-main-10.png); + background-position: -1148px -900px; + width: 81px; + height: 99px; +} +.Pet-LionCub-Peppermint { + background-image: url(spritesmith-main-10.png); + background-position: -1148px -1000px; + width: 81px; + height: 99px; +} +.Pet-LionCub-Red { + background-image: url(spritesmith-main-10.png); + background-position: 0px -1100px; + width: 81px; + height: 99px; +} +.Pet-LionCub-Shade { + background-image: url(spritesmith-main-10.png); + background-position: 0px 0px; + width: 81px; + height: 99px; +} +.Pet-LionCub-Skeleton { + background-image: url(spritesmith-main-10.png); + background-position: -164px -1100px; + width: 81px; + height: 99px; +} +.Pet-LionCub-Spooky { + background-image: url(spritesmith-main-10.png); + background-position: -246px -1100px; + width: 81px; + height: 99px; +} +.Pet-LionCub-White { + background-image: url(spritesmith-main-10.png); + background-position: -328px -1100px; + width: 81px; + height: 99px; +} +.Pet-LionCub-Zombie { + background-image: url(spritesmith-main-10.png); + background-position: -410px -1100px; + width: 81px; + height: 99px; +} +.Pet-Mammoth-Base { + background-image: url(spritesmith-main-10.png); + background-position: -492px -1100px; + width: 81px; + height: 99px; +} +.Pet-MantisShrimp-Base { + background-image: url(spritesmith-main-10.png); + background-position: -574px -1100px; + width: 81px; + height: 99px; +} +.Pet-Octopus-Base { + background-image: url(spritesmith-main-10.png); + background-position: -656px -1100px; + width: 81px; + height: 99px; +} +.Pet-Octopus-CottonCandyBlue { + background-image: url(spritesmith-main-10.png); + background-position: -738px -1100px; + width: 81px; + height: 99px; +} +.Pet-Octopus-CottonCandyPink { + background-image: url(spritesmith-main-10.png); + background-position: -820px -1100px; + width: 81px; + height: 99px; +} +.Pet-Octopus-Desert { + background-image: url(spritesmith-main-10.png); + background-position: -902px -1100px; + width: 81px; + height: 99px; +} +.Pet-Octopus-Golden { + background-image: url(spritesmith-main-10.png); + background-position: -984px -1100px; + width: 81px; + height: 99px; +} +.Pet-Octopus-Red { + background-image: url(spritesmith-main-10.png); + background-position: -1066px -1100px; + width: 81px; + height: 99px; +} +.Pet-Octopus-Shade { + background-image: url(spritesmith-main-10.png); + background-position: -1148px -1100px; + width: 81px; + height: 99px; +} +.Pet-Octopus-Skeleton { + background-image: url(spritesmith-main-10.png); + background-position: -1230px 0px; + width: 81px; + height: 99px; +} +.Pet-Octopus-White { + background-image: url(spritesmith-main-10.png); + background-position: -1230px -100px; + width: 81px; + height: 99px; +} +.Pet-Octopus-Zombie { + background-image: url(spritesmith-main-10.png); + background-position: -1230px -200px; + width: 81px; + height: 99px; +} +.Pet-Owl-Base { + background-image: url(spritesmith-main-10.png); + background-position: -1230px -300px; + width: 81px; + height: 99px; +} +.Pet-Owl-CottonCandyBlue { + background-image: url(spritesmith-main-10.png); + background-position: -1230px -400px; + width: 81px; + height: 99px; +} +.Pet-Owl-CottonCandyPink { + background-image: url(spritesmith-main-10.png); + background-position: -1230px -500px; + width: 81px; + height: 99px; +} +.Pet-Owl-Desert { + background-image: url(spritesmith-main-10.png); + background-position: -1230px -600px; + width: 81px; + height: 99px; +} +.Pet-Owl-Golden { + background-image: url(spritesmith-main-10.png); + background-position: -1230px -700px; + width: 81px; + height: 99px; +} +.Pet-Owl-Red { + background-image: url(spritesmith-main-10.png); + background-position: -1230px -800px; + width: 81px; + height: 99px; +} +.Pet-Owl-Shade { + background-image: url(spritesmith-main-10.png); + background-position: -1230px -900px; + width: 81px; + height: 99px; +} +.Pet-Owl-Skeleton { + background-image: url(spritesmith-main-10.png); + background-position: -1230px -1000px; + width: 81px; + height: 99px; +} +.Pet-Owl-White { + background-image: url(spritesmith-main-10.png); + background-position: -1230px -1100px; + width: 81px; + height: 99px; +} +.Pet-Owl-Zombie { + background-image: url(spritesmith-main-10.png); + background-position: 0px -1200px; + width: 81px; + height: 99px; +} +.Pet-PandaCub-Base { + background-image: url(spritesmith-main-10.png); + background-position: -82px -1200px; + width: 81px; + height: 99px; +} +.Pet-PandaCub-CottonCandyBlue { + background-image: url(spritesmith-main-10.png); + background-position: -164px -1200px; + width: 81px; + height: 99px; +} +.Pet-PandaCub-CottonCandyPink { + background-image: url(spritesmith-main-10.png); + background-position: -246px -1200px; + width: 81px; + height: 99px; +} +.Pet-PandaCub-Desert { + background-image: url(spritesmith-main-10.png); + background-position: -328px -1200px; + width: 81px; + height: 99px; +} +.Pet-PandaCub-Golden { + background-image: url(spritesmith-main-10.png); + background-position: -410px -1200px; + width: 81px; + height: 99px; +} +.Pet-PandaCub-Peppermint { + background-image: url(spritesmith-main-10.png); + background-position: -492px -1200px; + width: 81px; + height: 99px; +} +.Pet-PandaCub-Red { + background-image: url(spritesmith-main-10.png); + background-position: -574px -1200px; + width: 81px; + height: 99px; +} +.Pet-PandaCub-Shade { + background-image: url(spritesmith-main-10.png); + background-position: -656px -1200px; + width: 81px; + height: 99px; +} +.Pet-PandaCub-Skeleton { + background-image: url(spritesmith-main-10.png); + background-position: -738px -1200px; + width: 81px; + height: 99px; +} +.Pet-PandaCub-Spooky { + background-image: url(spritesmith-main-10.png); + background-position: -820px -1200px; + width: 81px; + height: 99px; +} +.Pet-PandaCub-White { + background-image: url(spritesmith-main-10.png); + background-position: -902px -1200px; + width: 81px; + height: 99px; +} +.Pet-PandaCub-Zombie { + background-image: url(spritesmith-main-10.png); + background-position: -984px -1200px; + width: 81px; + height: 99px; +} +.Pet-Parrot-Base { + background-image: url(spritesmith-main-10.png); + background-position: -1066px -1200px; + width: 81px; + height: 99px; +} +.Pet-Parrot-CottonCandyBlue { + background-image: url(spritesmith-main-10.png); + background-position: -1148px -1200px; + width: 81px; + height: 99px; +} +.Pet-Parrot-CottonCandyPink { + background-image: url(spritesmith-main-10.png); + background-position: -1230px -1200px; + width: 81px; + height: 99px; +} +.Pet-Parrot-Desert { + background-image: url(spritesmith-main-10.png); + background-position: -1312px 0px; + width: 81px; + height: 99px; +} +.Pet-Parrot-Golden { + background-image: url(spritesmith-main-10.png); + background-position: -1312px -100px; + width: 81px; + height: 99px; +} +.Pet-Parrot-Red { + background-image: url(spritesmith-main-10.png); + background-position: -1312px -200px; + width: 81px; + height: 99px; +} +.Pet-Parrot-Shade { + background-image: url(spritesmith-main-10.png); + background-position: -1312px -300px; + width: 81px; + height: 99px; +} +.Pet-Parrot-Skeleton { + background-image: url(spritesmith-main-10.png); + background-position: -1312px -400px; + width: 81px; + height: 99px; +} +.Pet-Parrot-White { + background-image: url(spritesmith-main-10.png); + background-position: -1312px -500px; + width: 81px; + height: 99px; +} +.Pet-Parrot-Zombie { + background-image: url(spritesmith-main-10.png); + background-position: -1312px -600px; + width: 81px; + height: 99px; +} +.Pet-Penguin-Base { + background-image: url(spritesmith-main-10.png); + background-position: -1312px -700px; + width: 81px; + height: 99px; +} +.Pet-Penguin-CottonCandyBlue { + background-image: url(spritesmith-main-10.png); + background-position: -1312px -800px; + width: 81px; + height: 99px; +} +.Pet-Penguin-CottonCandyPink { + background-image: url(spritesmith-main-10.png); + background-position: -1312px -900px; + width: 81px; + height: 99px; +} +.Pet-Penguin-Desert { + background-image: url(spritesmith-main-10.png); + background-position: -1312px -1000px; + width: 81px; + height: 99px; +} +.Pet-Penguin-Golden { + background-image: url(spritesmith-main-10.png); + background-position: -1312px -1100px; + width: 81px; + height: 99px; +} +.Pet-Penguin-Red { + background-image: url(spritesmith-main-10.png); + background-position: -1312px -1200px; + width: 81px; + height: 99px; +} +.Pet-Penguin-Shade { + background-image: url(spritesmith-main-10.png); + background-position: -1394px 0px; + width: 81px; + height: 99px; +} +.Pet-Penguin-Skeleton { + background-image: url(spritesmith-main-10.png); + background-position: -1394px -100px; + width: 81px; + height: 99px; +} +.Pet-Penguin-White { + background-image: url(spritesmith-main-10.png); + background-position: -1394px -200px; + width: 81px; + height: 99px; +} +.Pet-Penguin-Zombie { + background-image: url(spritesmith-main-10.png); + background-position: -1394px -300px; + width: 81px; + height: 99px; +} +.Pet-Phoenix-Base { + background-image: url(spritesmith-main-10.png); + background-position: -1394px -400px; + width: 81px; + height: 99px; +} +.Pet-Rat-Base { + background-image: url(spritesmith-main-10.png); + background-position: -1394px -500px; + width: 81px; + height: 99px; +} +.Pet-Rat-CottonCandyBlue { + background-image: url(spritesmith-main-10.png); + background-position: -1394px -600px; + width: 81px; + height: 99px; +} +.Pet-Rat-CottonCandyPink { + background-image: url(spritesmith-main-10.png); + background-position: -1394px -700px; + width: 81px; + height: 99px; +} +.Pet-Rat-Desert { + background-image: url(spritesmith-main-10.png); + background-position: -1394px -800px; + width: 81px; + height: 99px; +} +.Pet-Rat-Golden { + background-image: url(spritesmith-main-10.png); + background-position: -1394px -900px; + width: 81px; + height: 99px; +} +.Pet-Rat-Red { + background-image: url(spritesmith-main-10.png); + background-position: -1394px -1000px; + width: 81px; + height: 99px; +} +.Pet-Rat-Shade { + background-image: url(spritesmith-main-10.png); + background-position: -1394px -1100px; + width: 81px; + height: 99px; +} +.Pet-Rat-Skeleton { + background-image: url(spritesmith-main-10.png); + background-position: -1394px -1200px; + width: 81px; + height: 99px; +} +.Pet-Rat-White { + background-image: url(spritesmith-main-10.png); + background-position: 0px -1300px; + width: 81px; + height: 99px; +} +.Pet-Rat-Zombie { + background-image: url(spritesmith-main-10.png); + background-position: -82px -1300px; + width: 81px; + height: 99px; +} +.Pet-Rock-Base { + background-image: url(spritesmith-main-10.png); + background-position: -164px -1300px; + width: 81px; + height: 99px; +} +.Pet-Rock-CottonCandyBlue { + background-image: url(spritesmith-main-10.png); + background-position: -246px -1300px; + width: 81px; + height: 99px; +} +.Pet-Rock-CottonCandyPink { + background-image: url(spritesmith-main-10.png); + background-position: -328px -1300px; + width: 81px; + height: 99px; +} +.Pet-Rock-Desert { + background-image: url(spritesmith-main-10.png); + background-position: -410px -1300px; + width: 81px; + height: 99px; +} +.Pet-Rock-Golden { + background-image: url(spritesmith-main-10.png); + background-position: -492px -1300px; + width: 81px; + height: 99px; +} +.Pet-Rock-Red { + background-image: url(spritesmith-main-10.png); + background-position: -574px -1300px; + width: 81px; + height: 99px; +} +.Pet-Rock-Shade { + background-image: url(spritesmith-main-10.png); + background-position: -656px -1300px; + width: 81px; + height: 99px; +} +.Pet-Rock-Skeleton { + background-image: url(spritesmith-main-10.png); + background-position: -738px -1300px; + width: 81px; + height: 99px; +} +.Pet-Rock-White { + background-image: url(spritesmith-main-10.png); + background-position: -820px -1300px; + width: 81px; + height: 99px; +} +.Pet-Rock-Zombie { + background-image: url(spritesmith-main-10.png); + background-position: -902px -1300px; + width: 81px; + height: 99px; +} +.Pet-Rooster-Base { + background-image: url(spritesmith-main-10.png); + background-position: -984px -1300px; + width: 81px; + height: 99px; +} +.Pet-Rooster-CottonCandyBlue { + background-image: url(spritesmith-main-10.png); + background-position: -1066px -1300px; + width: 81px; + height: 99px; +} +.Pet-Rooster-CottonCandyPink { + background-image: url(spritesmith-main-10.png); + background-position: -1148px -1300px; + width: 81px; + height: 99px; +} +.Pet-Rooster-Desert { + background-image: url(spritesmith-main-10.png); + background-position: -1230px -1300px; + width: 81px; + height: 99px; +} +.Pet-Rooster-Golden { + background-image: url(spritesmith-main-10.png); + background-position: -1312px -1300px; + width: 81px; + height: 99px; +} +.Pet-Rooster-Red { + background-image: url(spritesmith-main-10.png); + background-position: -1394px -1300px; + width: 81px; + height: 99px; +} +.Pet-Rooster-Shade { + background-image: url(spritesmith-main-10.png); + background-position: -1476px 0px; + width: 81px; + height: 99px; +} +.Pet-Rooster-Skeleton { + background-image: url(spritesmith-main-10.png); + background-position: -1476px -100px; + width: 81px; + height: 99px; +} +.Pet-Rooster-White { + background-image: url(spritesmith-main-10.png); + background-position: -1476px -200px; + width: 81px; + height: 99px; +} +.Pet-Rooster-Zombie { + background-image: url(spritesmith-main-10.png); + background-position: -1476px -300px; + width: 81px; + height: 99px; +} +.Pet-Seahorse-Base { + background-image: url(spritesmith-main-10.png); + background-position: -1476px -400px; + width: 81px; + height: 99px; +} +.Pet-Seahorse-CottonCandyBlue { + background-image: url(spritesmith-main-10.png); + background-position: -1476px -500px; + width: 81px; + height: 99px; +} +.Pet-Seahorse-CottonCandyPink { + background-image: url(spritesmith-main-10.png); + background-position: -1476px -600px; + width: 81px; + height: 99px; +} +.Pet-Seahorse-Desert { + background-image: url(spritesmith-main-10.png); + background-position: -1476px -700px; + width: 81px; + height: 99px; +} +.Pet-Seahorse-Golden { + background-image: url(spritesmith-main-10.png); + background-position: -1476px -800px; + width: 81px; + height: 99px; +} +.Pet-Seahorse-Red { + background-image: url(spritesmith-main-10.png); + background-position: -1476px -900px; + width: 81px; + height: 99px; +} +.Pet-Seahorse-Shade { + background-image: url(spritesmith-main-10.png); + background-position: -1476px -1000px; + width: 81px; + height: 99px; +} +.Pet-Seahorse-Skeleton { + background-image: url(spritesmith-main-10.png); + background-position: -1476px -1100px; + width: 81px; + height: 99px; +} +.Pet-Seahorse-White { + background-image: url(spritesmith-main-10.png); + background-position: -1476px -1200px; + width: 81px; + height: 99px; +} +.Pet-Seahorse-Zombie { + background-image: url(spritesmith-main-10.png); + background-position: -1476px -1300px; + width: 81px; + height: 99px; +} +.Pet-Sheep-Base { + background-image: url(spritesmith-main-10.png); + background-position: 0px -1400px; + width: 81px; + height: 99px; +} +.Pet-Sheep-CottonCandyBlue { + background-image: url(spritesmith-main-10.png); + background-position: -82px -1400px; + width: 81px; + height: 99px; +} +.Pet-Sheep-CottonCandyPink { + background-image: url(spritesmith-main-10.png); + background-position: -164px -1400px; + width: 81px; + height: 99px; +} +.Pet-Sheep-Desert { + background-image: url(spritesmith-main-10.png); + background-position: -246px -1400px; + width: 81px; + height: 99px; +} +.Pet-Sheep-Golden { + background-image: url(spritesmith-main-10.png); + background-position: -328px -1400px; + width: 81px; + height: 99px; +} +.Pet-Sheep-Red { + background-image: url(spritesmith-main-10.png); + background-position: -410px -1400px; + width: 81px; + height: 99px; +} +.Pet-Sheep-Shade { + background-image: url(spritesmith-main-10.png); + background-position: -492px -1400px; + width: 81px; + height: 99px; +} +.Pet-Sheep-Skeleton { + background-image: url(spritesmith-main-10.png); + background-position: -574px -1400px; + width: 81px; + height: 99px; +} +.Pet-Sheep-White { + background-image: url(spritesmith-main-10.png); + background-position: -656px -1400px; + width: 81px; + height: 99px; +} +.Pet-Sheep-Zombie { + background-image: url(spritesmith-main-10.png); + background-position: -738px -1400px; + width: 81px; + height: 99px; +} +.Pet-Slime-Base { + background-image: url(spritesmith-main-10.png); + background-position: -820px -1400px; + width: 81px; + height: 99px; +} +.Pet-Slime-CottonCandyBlue { + background-image: url(spritesmith-main-10.png); + background-position: -902px -1400px; + width: 81px; + height: 99px; +} +.Pet-Slime-CottonCandyPink { + background-image: url(spritesmith-main-10.png); + background-position: -984px -1400px; + width: 81px; + height: 99px; +} +.Pet-Slime-Desert { + background-image: url(spritesmith-main-10.png); + background-position: -1066px -1400px; + width: 81px; + height: 99px; +} +.Pet-Slime-Golden { + background-image: url(spritesmith-main-10.png); + background-position: -1148px -1400px; + width: 81px; + height: 99px; +} +.Pet-Slime-Red { + background-image: url(spritesmith-main-10.png); + background-position: -1230px -1400px; + width: 81px; + height: 99px; +} +.Pet-Slime-Shade { + background-image: url(spritesmith-main-10.png); + background-position: -1312px -1400px; + width: 81px; + height: 99px; +} +.Pet-Slime-Skeleton { + background-image: url(spritesmith-main-10.png); + background-position: -1394px -1400px; + width: 81px; + height: 99px; +} +.Pet-Slime-White { + background-image: url(spritesmith-main-10.png); + background-position: -1476px -1400px; + width: 81px; + height: 99px; +} +.Pet-Slime-Zombie { + background-image: url(spritesmith-main-10.png); + background-position: -1558px 0px; + width: 81px; + height: 99px; +} +.Pet-Snake-Base { + background-image: url(spritesmith-main-10.png); + background-position: -1558px -100px; + width: 81px; + height: 99px; +} +.Pet-Snake-CottonCandyBlue { + background-image: url(spritesmith-main-10.png); + background-position: -1558px -200px; + width: 81px; + height: 99px; +} +.Pet-Snake-CottonCandyPink { + background-image: url(spritesmith-main-10.png); + background-position: -1558px -300px; + width: 81px; + height: 99px; +} +.Pet-Snake-Desert { + background-image: url(spritesmith-main-10.png); + background-position: -1558px -400px; + width: 81px; + height: 99px; +} +.Pet-Snake-Golden { + background-image: url(spritesmith-main-10.png); + background-position: -1558px -500px; + width: 81px; + height: 99px; +} +.Pet-Snake-Red { + background-image: url(spritesmith-main-10.png); + background-position: -1558px -600px; + width: 81px; + height: 99px; +} +.Pet-Snake-Shade { + background-image: url(spritesmith-main-10.png); + background-position: -1558px -700px; + width: 81px; + height: 99px; +} +.Pet-Snake-Skeleton { + background-image: url(spritesmith-main-10.png); + background-position: -1558px -800px; + width: 81px; + height: 99px; +} +.Pet-Snake-White { + background-image: url(spritesmith-main-10.png); + background-position: -1558px -900px; + width: 81px; + height: 99px; +} +.Pet-Snake-Zombie { + background-image: url(spritesmith-main-10.png); + background-position: -1558px -1000px; + width: 81px; + height: 99px; +} +.Pet-Spider-Base { + background-image: url(spritesmith-main-10.png); + background-position: -1558px -1100px; + width: 81px; + height: 99px; +} +.Pet-Spider-CottonCandyBlue { + background-image: url(spritesmith-main-10.png); + background-position: -1558px -1200px; + width: 81px; + height: 99px; +} +.Pet-Spider-CottonCandyPink { + background-image: url(spritesmith-main-10.png); + background-position: -1558px -1300px; + width: 81px; + height: 99px; +} +.Pet-Spider-Desert { + background-image: url(spritesmith-main-10.png); + background-position: -1558px -1400px; + width: 81px; + height: 99px; +} +.Pet-Spider-Golden { + background-image: url(spritesmith-main-10.png); + background-position: 0px -1500px; + width: 81px; + height: 99px; +} +.Pet-Spider-Red { + background-image: url(spritesmith-main-10.png); + background-position: -82px -1500px; + width: 81px; + height: 99px; +} +.Pet-Spider-Shade { + background-image: url(spritesmith-main-10.png); + background-position: -164px -1500px; + width: 81px; + height: 99px; +} +.Pet-Spider-Skeleton { + background-image: url(spritesmith-main-10.png); + background-position: -246px -1500px; + width: 81px; + height: 99px; +} +.Pet-Spider-White { + background-image: url(spritesmith-main-10.png); + background-position: -328px -1500px; + width: 81px; + height: 99px; +} +.Pet-Spider-Zombie { + background-image: url(spritesmith-main-10.png); + background-position: -410px -1500px; + width: 81px; + height: 99px; +} +.Pet-TRex-Base { + background-image: url(spritesmith-main-10.png); + background-position: -492px -1500px; + width: 81px; + height: 99px; +} +.Pet-TRex-CottonCandyBlue { + background-image: url(spritesmith-main-10.png); + background-position: -574px -1500px; + width: 81px; + height: 99px; +} +.Pet-TRex-CottonCandyPink { + background-image: url(spritesmith-main-10.png); + background-position: -656px -1500px; + width: 81px; + height: 99px; +} +.Pet-TRex-Desert { + background-image: url(spritesmith-main-10.png); + background-position: -738px -1500px; + width: 81px; + height: 99px; +} +.Pet-TRex-Golden { + background-image: url(spritesmith-main-10.png); + background-position: -820px -1500px; + width: 81px; + height: 99px; +} +.Pet-TRex-Red { + background-image: url(spritesmith-main-10.png); + background-position: -902px -1500px; + width: 81px; + height: 99px; +} +.Pet-TRex-Shade { + background-image: url(spritesmith-main-10.png); + background-position: -984px -1500px; + width: 81px; + height: 99px; +} +.Pet-TRex-Skeleton { + background-image: url(spritesmith-main-10.png); + background-position: -1066px -1500px; + width: 81px; + height: 99px; +} +.Pet-TRex-White { + background-image: url(spritesmith-main-10.png); + background-position: -1148px -1500px; + width: 81px; + height: 99px; +} +.Pet-TRex-Zombie { + background-image: url(spritesmith-main-10.png); + background-position: -1230px -1500px; + width: 81px; + height: 99px; +} +.Pet-Tiger-Veteran { + background-image: url(spritesmith-main-10.png); + background-position: -1312px -1500px; + width: 81px; + height: 99px; +} +.Pet-TigerCub-Base { + background-image: url(spritesmith-main-10.png); + background-position: -1394px -1500px; + width: 81px; + height: 99px; +} +.Pet-TigerCub-CottonCandyBlue { + background-image: url(spritesmith-main-10.png); + background-position: -1476px -1500px; + width: 81px; + height: 99px; +} +.Pet-TigerCub-CottonCandyPink { + background-image: url(spritesmith-main-10.png); + background-position: -1558px -1500px; + width: 81px; + height: 99px; +} +.Pet-TigerCub-Desert { + background-image: url(spritesmith-main-10.png); + background-position: -1640px 0px; + width: 81px; + height: 99px; +} +.Pet-TigerCub-Golden { + background-image: url(spritesmith-main-10.png); + background-position: -1640px -100px; + width: 81px; + height: 99px; +} +.Pet-TigerCub-Peppermint { + background-image: url(spritesmith-main-10.png); + background-position: -1640px -200px; + width: 81px; + height: 99px; +} +.Pet-TigerCub-Red { + background-image: url(spritesmith-main-10.png); + background-position: -1640px -300px; + width: 81px; + height: 99px; +} +.Pet-TigerCub-Shade { + background-image: url(spritesmith-main-10.png); + background-position: -1640px -400px; + width: 81px; + height: 99px; +} +.Pet-TigerCub-Skeleton { + background-image: url(spritesmith-main-10.png); + background-position: -1640px -500px; + width: 81px; + height: 99px; +} +.Pet-TigerCub-Spooky { + background-image: url(spritesmith-main-10.png); + background-position: -1640px -600px; + width: 81px; + height: 99px; +} +.Pet-TigerCub-White { + background-image: url(spritesmith-main-10.png); + background-position: -1640px -700px; + width: 81px; + height: 99px; +} +.Pet-TigerCub-Zombie { + background-image: url(spritesmith-main-10.png); + background-position: -1640px -800px; + width: 81px; + height: 99px; +} +.Pet-Turkey-Base { + background-image: url(spritesmith-main-10.png); + background-position: -1640px -900px; + width: 81px; + height: 99px; +} +.Pet-Turkey-Gilded { + background-image: url(spritesmith-main-10.png); + background-position: -1640px -1000px; + width: 81px; + height: 99px; +} +.Pet-Whale-Base { + background-image: url(spritesmith-main-10.png); + background-position: -1640px -1100px; + width: 81px; + height: 99px; +} diff --git a/common/dist/sprites/spritesmith-main-10.png b/common/dist/sprites/spritesmith-main-10.png new file mode 100644 index 0000000000..57d3463fb0 Binary files /dev/null and b/common/dist/sprites/spritesmith-main-10.png differ diff --git a/common/dist/sprites/spritesmith-main-11.css b/common/dist/sprites/spritesmith-main-11.css new file mode 100644 index 0000000000..ccae9f0b94 --- /dev/null +++ b/common/dist/sprites/spritesmith-main-11.css @@ -0,0 +1,204 @@ +.Pet-Whale-CottonCandyBlue { + background-image: url(spritesmith-main-11.png); + background-position: -82px 0px; + width: 81px; + height: 99px; +} +.Pet-Whale-CottonCandyPink { + background-image: url(spritesmith-main-11.png); + background-position: -164px -300px; + width: 81px; + height: 99px; +} +.Pet-Whale-Desert { + background-image: url(spritesmith-main-11.png); + background-position: -164px 0px; + width: 81px; + height: 99px; +} +.Pet-Whale-Golden { + background-image: url(spritesmith-main-11.png); + background-position: 0px -100px; + width: 81px; + height: 99px; +} +.Pet-Whale-Red { + background-image: url(spritesmith-main-11.png); + background-position: -82px -100px; + width: 81px; + height: 99px; +} +.Pet-Whale-Shade { + background-image: url(spritesmith-main-11.png); + background-position: -164px -100px; + width: 81px; + height: 99px; +} +.Pet-Whale-Skeleton { + background-image: url(spritesmith-main-11.png); + background-position: -246px 0px; + width: 81px; + height: 99px; +} +.Pet-Whale-White { + background-image: url(spritesmith-main-11.png); + background-position: -246px -100px; + width: 81px; + height: 99px; +} +.Pet-Whale-Zombie { + background-image: url(spritesmith-main-11.png); + background-position: 0px -200px; + width: 81px; + height: 99px; +} +.Pet-Wolf-Base { + background-image: url(spritesmith-main-11.png); + background-position: -82px -200px; + width: 81px; + height: 99px; +} +.Pet-Wolf-CottonCandyBlue { + background-image: url(spritesmith-main-11.png); + background-position: -164px -200px; + width: 81px; + height: 99px; +} +.Pet-Wolf-CottonCandyPink { + background-image: url(spritesmith-main-11.png); + background-position: -246px -200px; + width: 81px; + height: 99px; +} +.Pet-Wolf-Desert { + background-image: url(spritesmith-main-11.png); + background-position: -328px 0px; + width: 81px; + height: 99px; +} +.Pet-Wolf-Golden { + background-image: url(spritesmith-main-11.png); + background-position: -328px -100px; + width: 81px; + height: 99px; +} +.Pet-Wolf-Peppermint { + background-image: url(spritesmith-main-11.png); + background-position: -328px -200px; + width: 81px; + height: 99px; +} +.Pet-Wolf-Red { + background-image: url(spritesmith-main-11.png); + background-position: 0px -300px; + width: 81px; + height: 99px; +} +.Pet-Wolf-Shade { + background-image: url(spritesmith-main-11.png); + background-position: -82px -300px; + width: 81px; + height: 99px; +} +.Pet-Wolf-Skeleton { + background-image: url(spritesmith-main-11.png); + background-position: 0px 0px; + width: 81px; + height: 99px; +} +.Pet-Wolf-Spooky { + background-image: url(spritesmith-main-11.png); + background-position: -246px -300px; + width: 81px; + height: 99px; +} +.Pet-Wolf-Veteran { + background-image: url(spritesmith-main-11.png); + background-position: -328px -300px; + width: 81px; + height: 99px; +} +.Pet-Wolf-White { + background-image: url(spritesmith-main-11.png); + background-position: -410px 0px; + width: 81px; + height: 99px; +} +.Pet-Wolf-Zombie { + background-image: url(spritesmith-main-11.png); + background-position: -410px -100px; + width: 81px; + height: 99px; +} +.Pet_HatchingPotion_Base { + background-image: url(spritesmith-main-11.png); + background-position: -410px -252px; + width: 48px; + height: 51px; +} +.Pet_HatchingPotion_CottonCandyBlue { + background-image: url(spritesmith-main-11.png); + background-position: -147px -400px; + width: 48px; + height: 51px; +} +.Pet_HatchingPotion_CottonCandyPink { + background-image: url(spritesmith-main-11.png); + background-position: -410px -304px; + width: 48px; + height: 51px; +} +.Pet_HatchingPotion_Desert { + background-image: url(spritesmith-main-11.png); + background-position: 0px -400px; + width: 48px; + height: 51px; +} +.Pet_HatchingPotion_Golden { + background-image: url(spritesmith-main-11.png); + background-position: -49px -400px; + width: 48px; + height: 51px; +} +.Pet_HatchingPotion_Peppermint { + background-image: url(spritesmith-main-11.png); + background-position: -98px -400px; + width: 48px; + height: 51px; +} +.Pet_HatchingPotion_Red { + background-image: url(spritesmith-main-11.png); + background-position: -410px -200px; + width: 48px; + height: 51px; +} +.Pet_HatchingPotion_Shade { + background-image: url(spritesmith-main-11.png); + background-position: -196px -400px; + width: 48px; + height: 51px; +} +.Pet_HatchingPotion_Skeleton { + background-image: url(spritesmith-main-11.png); + background-position: -245px -400px; + width: 48px; + height: 51px; +} +.Pet_HatchingPotion_Spooky { + background-image: url(spritesmith-main-11.png); + background-position: -294px -400px; + width: 48px; + height: 51px; +} +.Pet_HatchingPotion_White { + background-image: url(spritesmith-main-11.png); + background-position: -343px -400px; + width: 48px; + height: 51px; +} +.Pet_HatchingPotion_Zombie { + background-image: url(spritesmith-main-11.png); + background-position: -392px -400px; + width: 48px; + height: 51px; +} diff --git a/common/dist/sprites/spritesmith-main-11.png b/common/dist/sprites/spritesmith-main-11.png new file mode 100644 index 0000000000..2b73945f0d Binary files /dev/null and b/common/dist/sprites/spritesmith-main-11.png differ diff --git a/common/dist/sprites/spritesmith-main-2.css b/common/dist/sprites/spritesmith-main-2.css index baa0fc93a7..20a66d698b 100644 --- a/common/dist/sprites/spritesmith-main-2.css +++ b/common/dist/sprites/spritesmith-main-2.css @@ -1,3946 +1,3946 @@ -.hair_base_1_purple { +.hair_base_1_porange { background-image: url(spritesmith-main-2.png); background-position: -91px 0px; width: 90px; height: 90px; } -.customize-option.hair_base_1_purple { +.customize-option.hair_base_1_porange { background-image: url(spritesmith-main-2.png); background-position: -116px -15px; width: 60px; height: 60px; } -.hair_base_1_pyellow { +.hair_base_1_porange2 { background-image: url(spritesmith-main-2.png); background-position: -728px -1092px; width: 90px; height: 90px; } -.customize-option.hair_base_1_pyellow { +.customize-option.hair_base_1_porange2 { background-image: url(spritesmith-main-2.png); background-position: -753px -1107px; width: 60px; height: 60px; } -.hair_base_1_pyellow2 { +.hair_base_1_ppink { background-image: url(spritesmith-main-2.png); background-position: 0px -91px; width: 90px; height: 90px; } -.customize-option.hair_base_1_pyellow2 { +.customize-option.hair_base_1_ppink { background-image: url(spritesmith-main-2.png); background-position: -25px -106px; width: 60px; height: 60px; } -.hair_base_1_rainbow { +.hair_base_1_ppink2 { background-image: url(spritesmith-main-2.png); background-position: -91px -91px; width: 90px; height: 90px; } -.customize-option.hair_base_1_rainbow { +.customize-option.hair_base_1_ppink2 { background-image: url(spritesmith-main-2.png); background-position: -116px -106px; width: 60px; height: 60px; } -.hair_base_1_red { +.hair_base_1_ppurple { background-image: url(spritesmith-main-2.png); background-position: -182px 0px; width: 90px; height: 90px; } -.customize-option.hair_base_1_red { +.customize-option.hair_base_1_ppurple { background-image: url(spritesmith-main-2.png); background-position: -207px -15px; width: 60px; height: 60px; } -.hair_base_1_snowy { +.hair_base_1_ppurple2 { background-image: url(spritesmith-main-2.png); background-position: -182px -91px; width: 90px; height: 90px; } -.customize-option.hair_base_1_snowy { +.customize-option.hair_base_1_ppurple2 { background-image: url(spritesmith-main-2.png); background-position: -207px -106px; width: 60px; height: 60px; } -.hair_base_1_white { +.hair_base_1_pumpkin { background-image: url(spritesmith-main-2.png); background-position: 0px -182px; width: 90px; height: 90px; } -.customize-option.hair_base_1_white { +.customize-option.hair_base_1_pumpkin { background-image: url(spritesmith-main-2.png); background-position: -25px -197px; width: 60px; height: 60px; } -.hair_base_1_winternight { +.hair_base_1_purple { background-image: url(spritesmith-main-2.png); background-position: -91px -182px; width: 90px; height: 90px; } -.customize-option.hair_base_1_winternight { +.customize-option.hair_base_1_purple { background-image: url(spritesmith-main-2.png); background-position: -116px -197px; width: 60px; height: 60px; } -.hair_base_1_winterstar { +.hair_base_1_pyellow { background-image: url(spritesmith-main-2.png); background-position: -182px -182px; width: 90px; height: 90px; } -.customize-option.hair_base_1_winterstar { +.customize-option.hair_base_1_pyellow { background-image: url(spritesmith-main-2.png); background-position: -207px -197px; width: 60px; height: 60px; } -.hair_base_1_yellow { +.hair_base_1_pyellow2 { background-image: url(spritesmith-main-2.png); background-position: -273px 0px; width: 90px; height: 90px; } -.customize-option.hair_base_1_yellow { +.customize-option.hair_base_1_pyellow2 { background-image: url(spritesmith-main-2.png); background-position: -298px -15px; width: 60px; height: 60px; } -.hair_base_1_zombie { +.hair_base_1_rainbow { background-image: url(spritesmith-main-2.png); background-position: -273px -91px; width: 90px; height: 90px; } -.customize-option.hair_base_1_zombie { +.customize-option.hair_base_1_rainbow { background-image: url(spritesmith-main-2.png); background-position: -298px -106px; width: 60px; height: 60px; } -.hair_base_2_TRUred { +.hair_base_1_red { background-image: url(spritesmith-main-2.png); background-position: -273px -182px; width: 90px; height: 90px; } -.customize-option.hair_base_2_TRUred { +.customize-option.hair_base_1_red { background-image: url(spritesmith-main-2.png); background-position: -298px -197px; width: 60px; height: 60px; } -.hair_base_2_aurora { +.hair_base_1_snowy { background-image: url(spritesmith-main-2.png); background-position: 0px -273px; width: 90px; height: 90px; } -.customize-option.hair_base_2_aurora { +.customize-option.hair_base_1_snowy { background-image: url(spritesmith-main-2.png); background-position: -25px -288px; width: 60px; height: 60px; } -.hair_base_2_black { +.hair_base_1_white { background-image: url(spritesmith-main-2.png); background-position: -91px -273px; width: 90px; height: 90px; } -.customize-option.hair_base_2_black { +.customize-option.hair_base_1_white { background-image: url(spritesmith-main-2.png); background-position: -116px -288px; width: 60px; height: 60px; } -.hair_base_2_blond { +.hair_base_1_winternight { background-image: url(spritesmith-main-2.png); background-position: -182px -273px; width: 90px; height: 90px; } -.customize-option.hair_base_2_blond { +.customize-option.hair_base_1_winternight { background-image: url(spritesmith-main-2.png); background-position: -207px -288px; width: 60px; height: 60px; } -.hair_base_2_blue { +.hair_base_1_winterstar { background-image: url(spritesmith-main-2.png); background-position: -273px -273px; width: 90px; height: 90px; } -.customize-option.hair_base_2_blue { +.customize-option.hair_base_1_winterstar { background-image: url(spritesmith-main-2.png); background-position: -298px -288px; width: 60px; height: 60px; } -.hair_base_2_brown { +.hair_base_1_yellow { background-image: url(spritesmith-main-2.png); background-position: -364px 0px; width: 90px; height: 90px; } -.customize-option.hair_base_2_brown { +.customize-option.hair_base_1_yellow { background-image: url(spritesmith-main-2.png); background-position: -389px -15px; width: 60px; height: 60px; } -.hair_base_2_candycane { +.hair_base_1_zombie { background-image: url(spritesmith-main-2.png); background-position: -364px -91px; width: 90px; height: 90px; } -.customize-option.hair_base_2_candycane { +.customize-option.hair_base_1_zombie { background-image: url(spritesmith-main-2.png); background-position: -389px -106px; width: 60px; height: 60px; } -.hair_base_2_candycorn { +.hair_base_2_TRUred { background-image: url(spritesmith-main-2.png); background-position: -364px -182px; width: 90px; height: 90px; } -.customize-option.hair_base_2_candycorn { +.customize-option.hair_base_2_TRUred { background-image: url(spritesmith-main-2.png); background-position: -389px -197px; width: 60px; height: 60px; } -.hair_base_2_festive { +.hair_base_2_aurora { background-image: url(spritesmith-main-2.png); background-position: -364px -273px; width: 90px; height: 90px; } -.customize-option.hair_base_2_festive { +.customize-option.hair_base_2_aurora { background-image: url(spritesmith-main-2.png); background-position: -389px -288px; width: 60px; height: 60px; } -.hair_base_2_frost { +.hair_base_2_black { background-image: url(spritesmith-main-2.png); background-position: 0px -364px; width: 90px; height: 90px; } -.customize-option.hair_base_2_frost { +.customize-option.hair_base_2_black { background-image: url(spritesmith-main-2.png); background-position: -25px -379px; width: 60px; height: 60px; } -.hair_base_2_ghostwhite { +.hair_base_2_blond { background-image: url(spritesmith-main-2.png); background-position: -91px -364px; width: 90px; height: 90px; } -.customize-option.hair_base_2_ghostwhite { +.customize-option.hair_base_2_blond { background-image: url(spritesmith-main-2.png); background-position: -116px -379px; width: 60px; height: 60px; } -.hair_base_2_green { +.hair_base_2_blue { background-image: url(spritesmith-main-2.png); background-position: -182px -364px; width: 90px; height: 90px; } -.customize-option.hair_base_2_green { +.customize-option.hair_base_2_blue { background-image: url(spritesmith-main-2.png); background-position: -207px -379px; width: 60px; height: 60px; } -.hair_base_2_halloween { +.hair_base_2_brown { background-image: url(spritesmith-main-2.png); background-position: -273px -364px; width: 90px; height: 90px; } -.customize-option.hair_base_2_halloween { +.customize-option.hair_base_2_brown { background-image: url(spritesmith-main-2.png); background-position: -298px -379px; width: 60px; height: 60px; } -.hair_base_2_holly { +.hair_base_2_candycane { background-image: url(spritesmith-main-2.png); background-position: -364px -364px; width: 90px; height: 90px; } -.customize-option.hair_base_2_holly { +.customize-option.hair_base_2_candycane { background-image: url(spritesmith-main-2.png); background-position: -389px -379px; width: 60px; height: 60px; } -.hair_base_2_hollygreen { +.hair_base_2_candycorn { background-image: url(spritesmith-main-2.png); background-position: -455px 0px; width: 90px; height: 90px; } -.customize-option.hair_base_2_hollygreen { +.customize-option.hair_base_2_candycorn { background-image: url(spritesmith-main-2.png); background-position: -480px -15px; width: 60px; height: 60px; } -.hair_base_2_midnight { +.hair_base_2_festive { background-image: url(spritesmith-main-2.png); background-position: -455px -91px; width: 90px; height: 90px; } -.customize-option.hair_base_2_midnight { +.customize-option.hair_base_2_festive { background-image: url(spritesmith-main-2.png); background-position: -480px -106px; width: 60px; height: 60px; } -.hair_base_2_pblue { +.hair_base_2_frost { background-image: url(spritesmith-main-2.png); background-position: -455px -182px; width: 90px; height: 90px; } -.customize-option.hair_base_2_pblue { +.customize-option.hair_base_2_frost { background-image: url(spritesmith-main-2.png); background-position: -480px -197px; width: 60px; height: 60px; } -.hair_base_2_pblue2 { +.hair_base_2_ghostwhite { background-image: url(spritesmith-main-2.png); background-position: -455px -273px; width: 90px; height: 90px; } -.customize-option.hair_base_2_pblue2 { +.customize-option.hair_base_2_ghostwhite { background-image: url(spritesmith-main-2.png); background-position: -480px -288px; width: 60px; height: 60px; } -.hair_base_2_peppermint { +.hair_base_2_green { background-image: url(spritesmith-main-2.png); background-position: -455px -364px; width: 90px; height: 90px; } -.customize-option.hair_base_2_peppermint { +.customize-option.hair_base_2_green { background-image: url(spritesmith-main-2.png); background-position: -480px -379px; width: 60px; height: 60px; } -.hair_base_2_pgreen { +.hair_base_2_halloween { background-image: url(spritesmith-main-2.png); background-position: 0px -455px; width: 90px; height: 90px; } -.customize-option.hair_base_2_pgreen { +.customize-option.hair_base_2_halloween { background-image: url(spritesmith-main-2.png); background-position: -25px -470px; width: 60px; height: 60px; } -.hair_base_2_pgreen2 { +.hair_base_2_holly { background-image: url(spritesmith-main-2.png); background-position: -91px -455px; width: 90px; height: 90px; } -.customize-option.hair_base_2_pgreen2 { +.customize-option.hair_base_2_holly { background-image: url(spritesmith-main-2.png); background-position: -116px -470px; width: 60px; height: 60px; } -.hair_base_2_porange { +.hair_base_2_hollygreen { background-image: url(spritesmith-main-2.png); background-position: -182px -455px; width: 90px; height: 90px; } -.customize-option.hair_base_2_porange { +.customize-option.hair_base_2_hollygreen { background-image: url(spritesmith-main-2.png); background-position: -207px -470px; width: 60px; height: 60px; } -.hair_base_2_porange2 { +.hair_base_2_midnight { background-image: url(spritesmith-main-2.png); background-position: -273px -455px; width: 90px; height: 90px; } -.customize-option.hair_base_2_porange2 { +.customize-option.hair_base_2_midnight { background-image: url(spritesmith-main-2.png); background-position: -298px -470px; width: 60px; height: 60px; } -.hair_base_2_ppink { +.hair_base_2_pblue { background-image: url(spritesmith-main-2.png); background-position: -364px -455px; width: 90px; height: 90px; } -.customize-option.hair_base_2_ppink { +.customize-option.hair_base_2_pblue { background-image: url(spritesmith-main-2.png); background-position: -389px -470px; width: 60px; height: 60px; } -.hair_base_2_ppink2 { +.hair_base_2_pblue2 { background-image: url(spritesmith-main-2.png); background-position: -455px -455px; width: 90px; height: 90px; } -.customize-option.hair_base_2_ppink2 { +.customize-option.hair_base_2_pblue2 { background-image: url(spritesmith-main-2.png); background-position: -480px -470px; width: 60px; height: 60px; } -.hair_base_2_ppurple { +.hair_base_2_peppermint { background-image: url(spritesmith-main-2.png); background-position: -546px 0px; width: 90px; height: 90px; } -.customize-option.hair_base_2_ppurple { +.customize-option.hair_base_2_peppermint { background-image: url(spritesmith-main-2.png); background-position: -571px -15px; width: 60px; height: 60px; } -.hair_base_2_ppurple2 { +.hair_base_2_pgreen { background-image: url(spritesmith-main-2.png); background-position: -546px -91px; width: 90px; height: 90px; } -.customize-option.hair_base_2_ppurple2 { +.customize-option.hair_base_2_pgreen { background-image: url(spritesmith-main-2.png); background-position: -571px -106px; width: 60px; height: 60px; } -.hair_base_2_pumpkin { +.hair_base_2_pgreen2 { background-image: url(spritesmith-main-2.png); background-position: -546px -182px; width: 90px; height: 90px; } -.customize-option.hair_base_2_pumpkin { +.customize-option.hair_base_2_pgreen2 { background-image: url(spritesmith-main-2.png); background-position: -571px -197px; width: 60px; height: 60px; } -.hair_base_2_purple { +.hair_base_2_porange { background-image: url(spritesmith-main-2.png); background-position: -546px -273px; width: 90px; height: 90px; } -.customize-option.hair_base_2_purple { +.customize-option.hair_base_2_porange { background-image: url(spritesmith-main-2.png); background-position: -571px -288px; width: 60px; height: 60px; } -.hair_base_2_pyellow { +.hair_base_2_porange2 { background-image: url(spritesmith-main-2.png); background-position: -546px -364px; width: 90px; height: 90px; } -.customize-option.hair_base_2_pyellow { +.customize-option.hair_base_2_porange2 { background-image: url(spritesmith-main-2.png); background-position: -571px -379px; width: 60px; height: 60px; } -.hair_base_2_pyellow2 { +.hair_base_2_ppink { background-image: url(spritesmith-main-2.png); background-position: -546px -455px; width: 90px; height: 90px; } -.customize-option.hair_base_2_pyellow2 { +.customize-option.hair_base_2_ppink { background-image: url(spritesmith-main-2.png); background-position: -571px -470px; width: 60px; height: 60px; } -.hair_base_2_rainbow { +.hair_base_2_ppink2 { background-image: url(spritesmith-main-2.png); background-position: 0px -546px; width: 90px; height: 90px; } -.customize-option.hair_base_2_rainbow { +.customize-option.hair_base_2_ppink2 { background-image: url(spritesmith-main-2.png); background-position: -25px -561px; width: 60px; height: 60px; } -.hair_base_2_red { +.hair_base_2_ppurple { background-image: url(spritesmith-main-2.png); background-position: -91px -546px; width: 90px; height: 90px; } -.customize-option.hair_base_2_red { +.customize-option.hair_base_2_ppurple { background-image: url(spritesmith-main-2.png); background-position: -116px -561px; width: 60px; height: 60px; } -.hair_base_2_snowy { +.hair_base_2_ppurple2 { background-image: url(spritesmith-main-2.png); background-position: -182px -546px; width: 90px; height: 90px; } -.customize-option.hair_base_2_snowy { +.customize-option.hair_base_2_ppurple2 { background-image: url(spritesmith-main-2.png); background-position: -207px -561px; width: 60px; height: 60px; } -.hair_base_2_white { +.hair_base_2_pumpkin { background-image: url(spritesmith-main-2.png); background-position: -273px -546px; width: 90px; height: 90px; } -.customize-option.hair_base_2_white { +.customize-option.hair_base_2_pumpkin { background-image: url(spritesmith-main-2.png); background-position: -298px -561px; width: 60px; height: 60px; } -.hair_base_2_winternight { +.hair_base_2_purple { background-image: url(spritesmith-main-2.png); background-position: -364px -546px; width: 90px; height: 90px; } -.customize-option.hair_base_2_winternight { +.customize-option.hair_base_2_purple { background-image: url(spritesmith-main-2.png); background-position: -389px -561px; width: 60px; height: 60px; } -.hair_base_2_winterstar { +.hair_base_2_pyellow { background-image: url(spritesmith-main-2.png); background-position: -455px -546px; width: 90px; height: 90px; } -.customize-option.hair_base_2_winterstar { +.customize-option.hair_base_2_pyellow { background-image: url(spritesmith-main-2.png); background-position: -480px -561px; width: 60px; height: 60px; } -.hair_base_2_yellow { +.hair_base_2_pyellow2 { background-image: url(spritesmith-main-2.png); background-position: -546px -546px; width: 90px; height: 90px; } -.customize-option.hair_base_2_yellow { +.customize-option.hair_base_2_pyellow2 { background-image: url(spritesmith-main-2.png); background-position: -571px -561px; width: 60px; height: 60px; } -.hair_base_2_zombie { +.hair_base_2_rainbow { background-image: url(spritesmith-main-2.png); background-position: -637px 0px; width: 90px; height: 90px; } -.customize-option.hair_base_2_zombie { +.customize-option.hair_base_2_rainbow { background-image: url(spritesmith-main-2.png); background-position: -662px -15px; width: 60px; height: 60px; } -.hair_base_3_TRUred { +.hair_base_2_red { background-image: url(spritesmith-main-2.png); background-position: -637px -91px; width: 90px; height: 90px; } -.customize-option.hair_base_3_TRUred { +.customize-option.hair_base_2_red { background-image: url(spritesmith-main-2.png); background-position: -662px -106px; width: 60px; height: 60px; } -.hair_base_3_aurora { +.hair_base_2_snowy { background-image: url(spritesmith-main-2.png); background-position: -637px -182px; width: 90px; height: 90px; } -.customize-option.hair_base_3_aurora { +.customize-option.hair_base_2_snowy { background-image: url(spritesmith-main-2.png); background-position: -662px -197px; width: 60px; height: 60px; } -.hair_base_3_black { +.hair_base_2_white { background-image: url(spritesmith-main-2.png); background-position: -637px -273px; width: 90px; height: 90px; } -.customize-option.hair_base_3_black { +.customize-option.hair_base_2_white { background-image: url(spritesmith-main-2.png); background-position: -662px -288px; width: 60px; height: 60px; } -.hair_base_3_blond { +.hair_base_2_winternight { background-image: url(spritesmith-main-2.png); background-position: -637px -364px; width: 90px; height: 90px; } -.customize-option.hair_base_3_blond { +.customize-option.hair_base_2_winternight { background-image: url(spritesmith-main-2.png); background-position: -662px -379px; width: 60px; height: 60px; } -.hair_base_3_blue { +.hair_base_2_winterstar { background-image: url(spritesmith-main-2.png); background-position: -637px -455px; width: 90px; height: 90px; } -.customize-option.hair_base_3_blue { +.customize-option.hair_base_2_winterstar { background-image: url(spritesmith-main-2.png); background-position: -662px -470px; width: 60px; height: 60px; } -.hair_base_3_brown { +.hair_base_2_yellow { background-image: url(spritesmith-main-2.png); background-position: -637px -546px; width: 90px; height: 90px; } -.customize-option.hair_base_3_brown { +.customize-option.hair_base_2_yellow { background-image: url(spritesmith-main-2.png); background-position: -662px -561px; width: 60px; height: 60px; } -.hair_base_3_candycane { +.hair_base_2_zombie { background-image: url(spritesmith-main-2.png); background-position: 0px -637px; width: 90px; height: 90px; } -.customize-option.hair_base_3_candycane { +.customize-option.hair_base_2_zombie { background-image: url(spritesmith-main-2.png); background-position: -25px -652px; width: 60px; height: 60px; } -.hair_base_3_candycorn { +.hair_base_3_TRUred { background-image: url(spritesmith-main-2.png); background-position: -91px -637px; width: 90px; height: 90px; } -.customize-option.hair_base_3_candycorn { +.customize-option.hair_base_3_TRUred { background-image: url(spritesmith-main-2.png); background-position: -116px -652px; width: 60px; height: 60px; } -.hair_base_3_festive { +.hair_base_3_aurora { background-image: url(spritesmith-main-2.png); background-position: -182px -637px; width: 90px; height: 90px; } -.customize-option.hair_base_3_festive { +.customize-option.hair_base_3_aurora { background-image: url(spritesmith-main-2.png); background-position: -207px -652px; width: 60px; height: 60px; } -.hair_base_3_frost { +.hair_base_3_black { background-image: url(spritesmith-main-2.png); background-position: -273px -637px; width: 90px; height: 90px; } -.customize-option.hair_base_3_frost { +.customize-option.hair_base_3_black { background-image: url(spritesmith-main-2.png); background-position: -298px -652px; width: 60px; height: 60px; } -.hair_base_3_ghostwhite { +.hair_base_3_blond { background-image: url(spritesmith-main-2.png); background-position: -364px -637px; width: 90px; height: 90px; } -.customize-option.hair_base_3_ghostwhite { +.customize-option.hair_base_3_blond { background-image: url(spritesmith-main-2.png); background-position: -389px -652px; width: 60px; height: 60px; } -.hair_base_3_green { +.hair_base_3_blue { background-image: url(spritesmith-main-2.png); background-position: -455px -637px; width: 90px; height: 90px; } -.customize-option.hair_base_3_green { +.customize-option.hair_base_3_blue { background-image: url(spritesmith-main-2.png); background-position: -480px -652px; width: 60px; height: 60px; } -.hair_base_3_halloween { +.hair_base_3_brown { background-image: url(spritesmith-main-2.png); background-position: -546px -637px; width: 90px; height: 90px; } -.customize-option.hair_base_3_halloween { +.customize-option.hair_base_3_brown { background-image: url(spritesmith-main-2.png); background-position: -571px -652px; width: 60px; height: 60px; } -.hair_base_3_holly { +.hair_base_3_candycane { background-image: url(spritesmith-main-2.png); background-position: -637px -637px; width: 90px; height: 90px; } -.customize-option.hair_base_3_holly { +.customize-option.hair_base_3_candycane { background-image: url(spritesmith-main-2.png); background-position: -662px -652px; width: 60px; height: 60px; } -.hair_base_3_hollygreen { +.hair_base_3_candycorn { background-image: url(spritesmith-main-2.png); background-position: -728px 0px; width: 90px; height: 90px; } -.customize-option.hair_base_3_hollygreen { +.customize-option.hair_base_3_candycorn { background-image: url(spritesmith-main-2.png); background-position: -753px -15px; width: 60px; height: 60px; } -.hair_base_3_midnight { +.hair_base_3_festive { background-image: url(spritesmith-main-2.png); background-position: -728px -91px; width: 90px; height: 90px; } -.customize-option.hair_base_3_midnight { +.customize-option.hair_base_3_festive { background-image: url(spritesmith-main-2.png); background-position: -753px -106px; width: 60px; height: 60px; } -.hair_base_3_pblue { +.hair_base_3_frost { background-image: url(spritesmith-main-2.png); background-position: -728px -182px; width: 90px; height: 90px; } -.customize-option.hair_base_3_pblue { +.customize-option.hair_base_3_frost { background-image: url(spritesmith-main-2.png); background-position: -753px -197px; width: 60px; height: 60px; } -.hair_base_3_pblue2 { +.hair_base_3_ghostwhite { background-image: url(spritesmith-main-2.png); background-position: -728px -273px; width: 90px; height: 90px; } -.customize-option.hair_base_3_pblue2 { +.customize-option.hair_base_3_ghostwhite { background-image: url(spritesmith-main-2.png); background-position: -753px -288px; width: 60px; height: 60px; } -.hair_base_3_peppermint { +.hair_base_3_green { background-image: url(spritesmith-main-2.png); background-position: -728px -364px; width: 90px; height: 90px; } -.customize-option.hair_base_3_peppermint { +.customize-option.hair_base_3_green { background-image: url(spritesmith-main-2.png); background-position: -753px -379px; width: 60px; height: 60px; } -.hair_base_3_pgreen { +.hair_base_3_halloween { background-image: url(spritesmith-main-2.png); background-position: -728px -455px; width: 90px; height: 90px; } -.customize-option.hair_base_3_pgreen { +.customize-option.hair_base_3_halloween { background-image: url(spritesmith-main-2.png); background-position: -753px -470px; width: 60px; height: 60px; } -.hair_base_3_pgreen2 { +.hair_base_3_holly { background-image: url(spritesmith-main-2.png); background-position: -728px -546px; width: 90px; height: 90px; } -.customize-option.hair_base_3_pgreen2 { +.customize-option.hair_base_3_holly { background-image: url(spritesmith-main-2.png); background-position: -753px -561px; width: 60px; height: 60px; } -.hair_base_3_porange { +.hair_base_3_hollygreen { background-image: url(spritesmith-main-2.png); background-position: -728px -637px; width: 90px; height: 90px; } -.customize-option.hair_base_3_porange { +.customize-option.hair_base_3_hollygreen { background-image: url(spritesmith-main-2.png); background-position: -753px -652px; width: 60px; height: 60px; } -.hair_base_3_porange2 { +.hair_base_3_midnight { background-image: url(spritesmith-main-2.png); background-position: 0px -728px; width: 90px; height: 90px; } -.customize-option.hair_base_3_porange2 { +.customize-option.hair_base_3_midnight { background-image: url(spritesmith-main-2.png); background-position: -25px -743px; width: 60px; height: 60px; } -.hair_base_3_ppink { +.hair_base_3_pblue { background-image: url(spritesmith-main-2.png); background-position: -91px -728px; width: 90px; height: 90px; } -.customize-option.hair_base_3_ppink { +.customize-option.hair_base_3_pblue { background-image: url(spritesmith-main-2.png); background-position: -116px -743px; width: 60px; height: 60px; } -.hair_base_3_ppink2 { +.hair_base_3_pblue2 { background-image: url(spritesmith-main-2.png); background-position: -182px -728px; width: 90px; height: 90px; } -.customize-option.hair_base_3_ppink2 { +.customize-option.hair_base_3_pblue2 { background-image: url(spritesmith-main-2.png); background-position: -207px -743px; width: 60px; height: 60px; } -.hair_base_3_ppurple { +.hair_base_3_peppermint { background-image: url(spritesmith-main-2.png); background-position: -273px -728px; width: 90px; height: 90px; } -.customize-option.hair_base_3_ppurple { +.customize-option.hair_base_3_peppermint { background-image: url(spritesmith-main-2.png); background-position: -298px -743px; width: 60px; height: 60px; } -.hair_base_3_ppurple2 { +.hair_base_3_pgreen { background-image: url(spritesmith-main-2.png); background-position: -364px -728px; width: 90px; height: 90px; } -.customize-option.hair_base_3_ppurple2 { +.customize-option.hair_base_3_pgreen { background-image: url(spritesmith-main-2.png); background-position: -389px -743px; width: 60px; height: 60px; } -.hair_base_3_pumpkin { +.hair_base_3_pgreen2 { background-image: url(spritesmith-main-2.png); background-position: -455px -728px; width: 90px; height: 90px; } -.customize-option.hair_base_3_pumpkin { +.customize-option.hair_base_3_pgreen2 { background-image: url(spritesmith-main-2.png); background-position: -480px -743px; width: 60px; height: 60px; } -.hair_base_3_purple { +.hair_base_3_porange { background-image: url(spritesmith-main-2.png); background-position: -546px -728px; width: 90px; height: 90px; } -.customize-option.hair_base_3_purple { +.customize-option.hair_base_3_porange { background-image: url(spritesmith-main-2.png); background-position: -571px -743px; width: 60px; height: 60px; } -.hair_base_3_pyellow { +.hair_base_3_porange2 { background-image: url(spritesmith-main-2.png); background-position: -637px -728px; width: 90px; height: 90px; } -.customize-option.hair_base_3_pyellow { +.customize-option.hair_base_3_porange2 { background-image: url(spritesmith-main-2.png); background-position: -662px -743px; width: 60px; height: 60px; } -.hair_base_3_pyellow2 { +.hair_base_3_ppink { background-image: url(spritesmith-main-2.png); background-position: -728px -728px; width: 90px; height: 90px; } -.customize-option.hair_base_3_pyellow2 { +.customize-option.hair_base_3_ppink { background-image: url(spritesmith-main-2.png); background-position: -753px -743px; width: 60px; height: 60px; } -.hair_base_3_rainbow { +.hair_base_3_ppink2 { background-image: url(spritesmith-main-2.png); background-position: -819px 0px; width: 90px; height: 90px; } -.customize-option.hair_base_3_rainbow { +.customize-option.hair_base_3_ppink2 { background-image: url(spritesmith-main-2.png); background-position: -844px -15px; width: 60px; height: 60px; } -.hair_base_3_red { +.hair_base_3_ppurple { background-image: url(spritesmith-main-2.png); background-position: -819px -91px; width: 90px; height: 90px; } -.customize-option.hair_base_3_red { +.customize-option.hair_base_3_ppurple { background-image: url(spritesmith-main-2.png); background-position: -844px -106px; width: 60px; height: 60px; } -.hair_base_3_snowy { +.hair_base_3_ppurple2 { background-image: url(spritesmith-main-2.png); background-position: -819px -182px; width: 90px; height: 90px; } -.customize-option.hair_base_3_snowy { +.customize-option.hair_base_3_ppurple2 { background-image: url(spritesmith-main-2.png); background-position: -844px -197px; width: 60px; height: 60px; } -.hair_base_3_white { +.hair_base_3_pumpkin { background-image: url(spritesmith-main-2.png); background-position: -819px -273px; width: 90px; height: 90px; } -.customize-option.hair_base_3_white { +.customize-option.hair_base_3_pumpkin { background-image: url(spritesmith-main-2.png); background-position: -844px -288px; width: 60px; height: 60px; } -.hair_base_3_winternight { +.hair_base_3_purple { background-image: url(spritesmith-main-2.png); background-position: -819px -364px; width: 90px; height: 90px; } -.customize-option.hair_base_3_winternight { +.customize-option.hair_base_3_purple { background-image: url(spritesmith-main-2.png); background-position: -844px -379px; width: 60px; height: 60px; } -.hair_base_3_winterstar { +.hair_base_3_pyellow { background-image: url(spritesmith-main-2.png); background-position: -819px -455px; width: 90px; height: 90px; } -.customize-option.hair_base_3_winterstar { +.customize-option.hair_base_3_pyellow { background-image: url(spritesmith-main-2.png); background-position: -844px -470px; width: 60px; height: 60px; } -.hair_base_3_yellow { +.hair_base_3_pyellow2 { background-image: url(spritesmith-main-2.png); background-position: -819px -546px; width: 90px; height: 90px; } -.customize-option.hair_base_3_yellow { +.customize-option.hair_base_3_pyellow2 { background-image: url(spritesmith-main-2.png); background-position: -844px -561px; width: 60px; height: 60px; } -.hair_base_3_zombie { +.hair_base_3_rainbow { background-image: url(spritesmith-main-2.png); background-position: -819px -637px; width: 90px; height: 90px; } -.customize-option.hair_base_3_zombie { +.customize-option.hair_base_3_rainbow { background-image: url(spritesmith-main-2.png); background-position: -844px -652px; width: 60px; height: 60px; } -.hair_base_4_TRUred { +.hair_base_3_red { background-image: url(spritesmith-main-2.png); background-position: -819px -728px; width: 90px; height: 90px; } -.customize-option.hair_base_4_TRUred { +.customize-option.hair_base_3_red { background-image: url(spritesmith-main-2.png); background-position: -844px -743px; width: 60px; height: 60px; } -.hair_base_4_aurora { +.hair_base_3_snowy { background-image: url(spritesmith-main-2.png); background-position: 0px -819px; width: 90px; height: 90px; } -.customize-option.hair_base_4_aurora { +.customize-option.hair_base_3_snowy { background-image: url(spritesmith-main-2.png); background-position: -25px -834px; width: 60px; height: 60px; } -.hair_base_4_black { +.hair_base_3_white { background-image: url(spritesmith-main-2.png); background-position: -91px -819px; width: 90px; height: 90px; } -.customize-option.hair_base_4_black { +.customize-option.hair_base_3_white { background-image: url(spritesmith-main-2.png); background-position: -116px -834px; width: 60px; height: 60px; } -.hair_base_4_blond { +.hair_base_3_winternight { background-image: url(spritesmith-main-2.png); background-position: -182px -819px; width: 90px; height: 90px; } -.customize-option.hair_base_4_blond { +.customize-option.hair_base_3_winternight { background-image: url(spritesmith-main-2.png); background-position: -207px -834px; width: 60px; height: 60px; } -.hair_base_4_blue { +.hair_base_3_winterstar { background-image: url(spritesmith-main-2.png); background-position: -273px -819px; width: 90px; height: 90px; } -.customize-option.hair_base_4_blue { +.customize-option.hair_base_3_winterstar { background-image: url(spritesmith-main-2.png); background-position: -298px -834px; width: 60px; height: 60px; } -.hair_base_4_brown { +.hair_base_3_yellow { background-image: url(spritesmith-main-2.png); background-position: -364px -819px; width: 90px; height: 90px; } -.customize-option.hair_base_4_brown { +.customize-option.hair_base_3_yellow { background-image: url(spritesmith-main-2.png); background-position: -389px -834px; width: 60px; height: 60px; } -.hair_base_4_candycane { +.hair_base_3_zombie { background-image: url(spritesmith-main-2.png); background-position: -455px -819px; width: 90px; height: 90px; } -.customize-option.hair_base_4_candycane { +.customize-option.hair_base_3_zombie { background-image: url(spritesmith-main-2.png); background-position: -480px -834px; width: 60px; height: 60px; } -.hair_base_4_candycorn { +.hair_base_4_TRUred { background-image: url(spritesmith-main-2.png); background-position: -546px -819px; width: 90px; height: 90px; } -.customize-option.hair_base_4_candycorn { +.customize-option.hair_base_4_TRUred { background-image: url(spritesmith-main-2.png); background-position: -571px -834px; width: 60px; height: 60px; } -.hair_base_4_festive { +.hair_base_4_aurora { background-image: url(spritesmith-main-2.png); background-position: -637px -819px; width: 90px; height: 90px; } -.customize-option.hair_base_4_festive { +.customize-option.hair_base_4_aurora { background-image: url(spritesmith-main-2.png); background-position: -662px -834px; width: 60px; height: 60px; } -.hair_base_4_frost { +.hair_base_4_black { background-image: url(spritesmith-main-2.png); background-position: -728px -819px; width: 90px; height: 90px; } -.customize-option.hair_base_4_frost { +.customize-option.hair_base_4_black { background-image: url(spritesmith-main-2.png); background-position: -753px -834px; width: 60px; height: 60px; } -.hair_base_4_ghostwhite { +.hair_base_4_blond { background-image: url(spritesmith-main-2.png); background-position: -819px -819px; width: 90px; height: 90px; } -.customize-option.hair_base_4_ghostwhite { +.customize-option.hair_base_4_blond { background-image: url(spritesmith-main-2.png); background-position: -844px -834px; width: 60px; height: 60px; } -.hair_base_4_green { +.hair_base_4_blue { background-image: url(spritesmith-main-2.png); background-position: -910px 0px; width: 90px; height: 90px; } -.customize-option.hair_base_4_green { +.customize-option.hair_base_4_blue { background-image: url(spritesmith-main-2.png); background-position: -935px -15px; width: 60px; height: 60px; } -.hair_base_4_halloween { +.hair_base_4_brown { background-image: url(spritesmith-main-2.png); background-position: -910px -91px; width: 90px; height: 90px; } -.customize-option.hair_base_4_halloween { +.customize-option.hair_base_4_brown { background-image: url(spritesmith-main-2.png); background-position: -935px -106px; width: 60px; height: 60px; } -.hair_base_4_holly { +.hair_base_4_candycane { background-image: url(spritesmith-main-2.png); background-position: -910px -182px; width: 90px; height: 90px; } -.customize-option.hair_base_4_holly { +.customize-option.hair_base_4_candycane { background-image: url(spritesmith-main-2.png); background-position: -935px -197px; width: 60px; height: 60px; } -.hair_base_4_hollygreen { +.hair_base_4_candycorn { background-image: url(spritesmith-main-2.png); background-position: -910px -273px; width: 90px; height: 90px; } -.customize-option.hair_base_4_hollygreen { +.customize-option.hair_base_4_candycorn { background-image: url(spritesmith-main-2.png); background-position: -935px -288px; width: 60px; height: 60px; } -.hair_base_4_midnight { +.hair_base_4_festive { background-image: url(spritesmith-main-2.png); background-position: -910px -364px; width: 90px; height: 90px; } -.customize-option.hair_base_4_midnight { +.customize-option.hair_base_4_festive { background-image: url(spritesmith-main-2.png); background-position: -935px -379px; width: 60px; height: 60px; } -.hair_base_4_pblue { +.hair_base_4_frost { background-image: url(spritesmith-main-2.png); background-position: -910px -455px; width: 90px; height: 90px; } -.customize-option.hair_base_4_pblue { +.customize-option.hair_base_4_frost { background-image: url(spritesmith-main-2.png); background-position: -935px -470px; width: 60px; height: 60px; } -.hair_base_4_pblue2 { +.hair_base_4_ghostwhite { background-image: url(spritesmith-main-2.png); background-position: -910px -546px; width: 90px; height: 90px; } -.customize-option.hair_base_4_pblue2 { +.customize-option.hair_base_4_ghostwhite { background-image: url(spritesmith-main-2.png); background-position: -935px -561px; width: 60px; height: 60px; } -.hair_base_4_peppermint { +.hair_base_4_green { background-image: url(spritesmith-main-2.png); background-position: -910px -637px; width: 90px; height: 90px; } -.customize-option.hair_base_4_peppermint { +.customize-option.hair_base_4_green { background-image: url(spritesmith-main-2.png); background-position: -935px -652px; width: 60px; height: 60px; } -.hair_base_4_pgreen { +.hair_base_4_halloween { background-image: url(spritesmith-main-2.png); background-position: -910px -728px; width: 90px; height: 90px; } -.customize-option.hair_base_4_pgreen { +.customize-option.hair_base_4_halloween { background-image: url(spritesmith-main-2.png); background-position: -935px -743px; width: 60px; height: 60px; } -.hair_base_4_pgreen2 { +.hair_base_4_holly { background-image: url(spritesmith-main-2.png); background-position: -910px -819px; width: 90px; height: 90px; } -.customize-option.hair_base_4_pgreen2 { +.customize-option.hair_base_4_holly { background-image: url(spritesmith-main-2.png); background-position: -935px -834px; width: 60px; height: 60px; } -.hair_base_4_porange { +.hair_base_4_hollygreen { background-image: url(spritesmith-main-2.png); background-position: 0px -910px; width: 90px; height: 90px; } -.customize-option.hair_base_4_porange { +.customize-option.hair_base_4_hollygreen { background-image: url(spritesmith-main-2.png); background-position: -25px -925px; width: 60px; height: 60px; } -.hair_base_4_porange2 { +.hair_base_4_midnight { background-image: url(spritesmith-main-2.png); background-position: -91px -910px; width: 90px; height: 90px; } -.customize-option.hair_base_4_porange2 { +.customize-option.hair_base_4_midnight { background-image: url(spritesmith-main-2.png); background-position: -116px -925px; width: 60px; height: 60px; } -.hair_base_4_ppink { +.hair_base_4_pblue { background-image: url(spritesmith-main-2.png); background-position: -182px -910px; width: 90px; height: 90px; } -.customize-option.hair_base_4_ppink { +.customize-option.hair_base_4_pblue { background-image: url(spritesmith-main-2.png); background-position: -207px -925px; width: 60px; height: 60px; } -.hair_base_4_ppink2 { +.hair_base_4_pblue2 { background-image: url(spritesmith-main-2.png); background-position: -273px -910px; width: 90px; height: 90px; } -.customize-option.hair_base_4_ppink2 { +.customize-option.hair_base_4_pblue2 { background-image: url(spritesmith-main-2.png); background-position: -298px -925px; width: 60px; height: 60px; } -.hair_base_4_ppurple { +.hair_base_4_peppermint { background-image: url(spritesmith-main-2.png); background-position: -364px -910px; width: 90px; height: 90px; } -.customize-option.hair_base_4_ppurple { +.customize-option.hair_base_4_peppermint { background-image: url(spritesmith-main-2.png); background-position: -389px -925px; width: 60px; height: 60px; } -.hair_base_4_ppurple2 { +.hair_base_4_pgreen { background-image: url(spritesmith-main-2.png); background-position: -455px -910px; width: 90px; height: 90px; } -.customize-option.hair_base_4_ppurple2 { +.customize-option.hair_base_4_pgreen { background-image: url(spritesmith-main-2.png); background-position: -480px -925px; width: 60px; height: 60px; } -.hair_base_4_pumpkin { +.hair_base_4_pgreen2 { background-image: url(spritesmith-main-2.png); background-position: -546px -910px; width: 90px; height: 90px; } -.customize-option.hair_base_4_pumpkin { +.customize-option.hair_base_4_pgreen2 { background-image: url(spritesmith-main-2.png); background-position: -571px -925px; width: 60px; height: 60px; } -.hair_base_4_purple { +.hair_base_4_porange { background-image: url(spritesmith-main-2.png); background-position: -637px -910px; width: 90px; height: 90px; } -.customize-option.hair_base_4_purple { +.customize-option.hair_base_4_porange { background-image: url(spritesmith-main-2.png); background-position: -662px -925px; width: 60px; height: 60px; } -.hair_base_4_pyellow { +.hair_base_4_porange2 { background-image: url(spritesmith-main-2.png); background-position: -728px -910px; width: 90px; height: 90px; } -.customize-option.hair_base_4_pyellow { +.customize-option.hair_base_4_porange2 { background-image: url(spritesmith-main-2.png); background-position: -753px -925px; width: 60px; height: 60px; } -.hair_base_4_pyellow2 { +.hair_base_4_ppink { background-image: url(spritesmith-main-2.png); background-position: -819px -910px; width: 90px; height: 90px; } -.customize-option.hair_base_4_pyellow2 { +.customize-option.hair_base_4_ppink { background-image: url(spritesmith-main-2.png); background-position: -844px -925px; width: 60px; height: 60px; } -.hair_base_4_rainbow { +.hair_base_4_ppink2 { background-image: url(spritesmith-main-2.png); background-position: -910px -910px; width: 90px; height: 90px; } -.customize-option.hair_base_4_rainbow { +.customize-option.hair_base_4_ppink2 { background-image: url(spritesmith-main-2.png); background-position: -935px -925px; width: 60px; height: 60px; } -.hair_base_4_red { +.hair_base_4_ppurple { background-image: url(spritesmith-main-2.png); background-position: -1001px 0px; width: 90px; height: 90px; } -.customize-option.hair_base_4_red { +.customize-option.hair_base_4_ppurple { background-image: url(spritesmith-main-2.png); background-position: -1026px -15px; width: 60px; height: 60px; } -.hair_base_4_snowy { +.hair_base_4_ppurple2 { background-image: url(spritesmith-main-2.png); background-position: -1001px -91px; width: 90px; height: 90px; } -.customize-option.hair_base_4_snowy { +.customize-option.hair_base_4_ppurple2 { background-image: url(spritesmith-main-2.png); background-position: -1026px -106px; width: 60px; height: 60px; } -.hair_base_4_white { +.hair_base_4_pumpkin { background-image: url(spritesmith-main-2.png); background-position: -1001px -182px; width: 90px; height: 90px; } -.customize-option.hair_base_4_white { +.customize-option.hair_base_4_pumpkin { background-image: url(spritesmith-main-2.png); background-position: -1026px -197px; width: 60px; height: 60px; } -.hair_base_4_winternight { +.hair_base_4_purple { background-image: url(spritesmith-main-2.png); background-position: -1001px -273px; width: 90px; height: 90px; } -.customize-option.hair_base_4_winternight { +.customize-option.hair_base_4_purple { background-image: url(spritesmith-main-2.png); background-position: -1026px -288px; width: 60px; height: 60px; } -.hair_base_4_winterstar { +.hair_base_4_pyellow { background-image: url(spritesmith-main-2.png); background-position: -1001px -364px; width: 90px; height: 90px; } -.customize-option.hair_base_4_winterstar { +.customize-option.hair_base_4_pyellow { background-image: url(spritesmith-main-2.png); background-position: -1026px -379px; width: 60px; height: 60px; } -.hair_base_4_yellow { +.hair_base_4_pyellow2 { background-image: url(spritesmith-main-2.png); background-position: -1001px -455px; width: 90px; height: 90px; } -.customize-option.hair_base_4_yellow { +.customize-option.hair_base_4_pyellow2 { background-image: url(spritesmith-main-2.png); background-position: -1026px -470px; width: 60px; height: 60px; } -.hair_base_4_zombie { +.hair_base_4_rainbow { background-image: url(spritesmith-main-2.png); background-position: -1001px -546px; width: 90px; height: 90px; } -.customize-option.hair_base_4_zombie { +.customize-option.hair_base_4_rainbow { background-image: url(spritesmith-main-2.png); background-position: -1026px -561px; width: 60px; height: 60px; } -.hair_base_5_TRUred { +.hair_base_4_red { background-image: url(spritesmith-main-2.png); background-position: -1001px -637px; width: 90px; height: 90px; } -.customize-option.hair_base_5_TRUred { +.customize-option.hair_base_4_red { background-image: url(spritesmith-main-2.png); background-position: -1026px -652px; width: 60px; height: 60px; } -.hair_base_5_aurora { +.hair_base_4_snowy { background-image: url(spritesmith-main-2.png); background-position: -1001px -728px; width: 90px; height: 90px; } -.customize-option.hair_base_5_aurora { +.customize-option.hair_base_4_snowy { background-image: url(spritesmith-main-2.png); background-position: -1026px -743px; width: 60px; height: 60px; } -.hair_base_5_black { +.hair_base_4_white { background-image: url(spritesmith-main-2.png); background-position: -1001px -819px; width: 90px; height: 90px; } -.customize-option.hair_base_5_black { +.customize-option.hair_base_4_white { background-image: url(spritesmith-main-2.png); background-position: -1026px -834px; width: 60px; height: 60px; } -.hair_base_5_blond { +.hair_base_4_winternight { background-image: url(spritesmith-main-2.png); background-position: -1001px -910px; width: 90px; height: 90px; } -.customize-option.hair_base_5_blond { +.customize-option.hair_base_4_winternight { background-image: url(spritesmith-main-2.png); background-position: -1026px -925px; width: 60px; height: 60px; } -.hair_base_5_blue { +.hair_base_4_winterstar { background-image: url(spritesmith-main-2.png); background-position: 0px -1001px; width: 90px; height: 90px; } -.customize-option.hair_base_5_blue { +.customize-option.hair_base_4_winterstar { background-image: url(spritesmith-main-2.png); background-position: -25px -1016px; width: 60px; height: 60px; } -.hair_base_5_brown { +.hair_base_4_yellow { background-image: url(spritesmith-main-2.png); background-position: -91px -1001px; width: 90px; height: 90px; } -.customize-option.hair_base_5_brown { +.customize-option.hair_base_4_yellow { background-image: url(spritesmith-main-2.png); background-position: -116px -1016px; width: 60px; height: 60px; } -.hair_base_5_candycane { +.hair_base_4_zombie { background-image: url(spritesmith-main-2.png); background-position: -182px -1001px; width: 90px; height: 90px; } -.customize-option.hair_base_5_candycane { +.customize-option.hair_base_4_zombie { background-image: url(spritesmith-main-2.png); background-position: -207px -1016px; width: 60px; height: 60px; } -.hair_base_5_candycorn { +.hair_base_5_TRUred { background-image: url(spritesmith-main-2.png); background-position: -273px -1001px; width: 90px; height: 90px; } -.customize-option.hair_base_5_candycorn { +.customize-option.hair_base_5_TRUred { background-image: url(spritesmith-main-2.png); background-position: -298px -1016px; width: 60px; height: 60px; } -.hair_base_5_festive { +.hair_base_5_aurora { background-image: url(spritesmith-main-2.png); background-position: -364px -1001px; width: 90px; height: 90px; } -.customize-option.hair_base_5_festive { +.customize-option.hair_base_5_aurora { background-image: url(spritesmith-main-2.png); background-position: -389px -1016px; width: 60px; height: 60px; } -.hair_base_5_frost { +.hair_base_5_black { background-image: url(spritesmith-main-2.png); background-position: -455px -1001px; width: 90px; height: 90px; } -.customize-option.hair_base_5_frost { +.customize-option.hair_base_5_black { background-image: url(spritesmith-main-2.png); background-position: -480px -1016px; width: 60px; height: 60px; } -.hair_base_5_ghostwhite { +.hair_base_5_blond { background-image: url(spritesmith-main-2.png); background-position: -546px -1001px; width: 90px; height: 90px; } -.customize-option.hair_base_5_ghostwhite { +.customize-option.hair_base_5_blond { background-image: url(spritesmith-main-2.png); background-position: -571px -1016px; width: 60px; height: 60px; } -.hair_base_5_green { +.hair_base_5_blue { background-image: url(spritesmith-main-2.png); background-position: -637px -1001px; width: 90px; height: 90px; } -.customize-option.hair_base_5_green { +.customize-option.hair_base_5_blue { background-image: url(spritesmith-main-2.png); background-position: -662px -1016px; width: 60px; height: 60px; } -.hair_base_5_halloween { +.hair_base_5_brown { background-image: url(spritesmith-main-2.png); background-position: -728px -1001px; width: 90px; height: 90px; } -.customize-option.hair_base_5_halloween { +.customize-option.hair_base_5_brown { background-image: url(spritesmith-main-2.png); background-position: -753px -1016px; width: 60px; height: 60px; } -.hair_base_5_holly { +.hair_base_5_candycane { background-image: url(spritesmith-main-2.png); background-position: -819px -1001px; width: 90px; height: 90px; } -.customize-option.hair_base_5_holly { +.customize-option.hair_base_5_candycane { background-image: url(spritesmith-main-2.png); background-position: -844px -1016px; width: 60px; height: 60px; } -.hair_base_5_hollygreen { +.hair_base_5_candycorn { background-image: url(spritesmith-main-2.png); background-position: -910px -1001px; width: 90px; height: 90px; } -.customize-option.hair_base_5_hollygreen { +.customize-option.hair_base_5_candycorn { background-image: url(spritesmith-main-2.png); background-position: -935px -1016px; width: 60px; height: 60px; } -.hair_base_5_midnight { +.hair_base_5_festive { background-image: url(spritesmith-main-2.png); background-position: -1001px -1001px; width: 90px; height: 90px; } -.customize-option.hair_base_5_midnight { +.customize-option.hair_base_5_festive { background-image: url(spritesmith-main-2.png); background-position: -1026px -1016px; width: 60px; height: 60px; } -.hair_base_5_pblue { +.hair_base_5_frost { background-image: url(spritesmith-main-2.png); background-position: -1092px 0px; width: 90px; height: 90px; } -.customize-option.hair_base_5_pblue { +.customize-option.hair_base_5_frost { background-image: url(spritesmith-main-2.png); background-position: -1117px -15px; width: 60px; height: 60px; } -.hair_base_5_pblue2 { +.hair_base_5_ghostwhite { background-image: url(spritesmith-main-2.png); background-position: -1092px -91px; width: 90px; height: 90px; } -.customize-option.hair_base_5_pblue2 { +.customize-option.hair_base_5_ghostwhite { background-image: url(spritesmith-main-2.png); background-position: -1117px -106px; width: 60px; height: 60px; } -.hair_base_5_peppermint { +.hair_base_5_green { background-image: url(spritesmith-main-2.png); background-position: -1092px -182px; width: 90px; height: 90px; } -.customize-option.hair_base_5_peppermint { +.customize-option.hair_base_5_green { background-image: url(spritesmith-main-2.png); background-position: -1117px -197px; width: 60px; height: 60px; } -.hair_base_5_pgreen { +.hair_base_5_halloween { background-image: url(spritesmith-main-2.png); background-position: -1092px -273px; width: 90px; height: 90px; } -.customize-option.hair_base_5_pgreen { +.customize-option.hair_base_5_halloween { background-image: url(spritesmith-main-2.png); background-position: -1117px -288px; width: 60px; height: 60px; } -.hair_base_5_pgreen2 { +.hair_base_5_holly { background-image: url(spritesmith-main-2.png); background-position: -1092px -364px; width: 90px; height: 90px; } -.customize-option.hair_base_5_pgreen2 { +.customize-option.hair_base_5_holly { background-image: url(spritesmith-main-2.png); background-position: -1117px -379px; width: 60px; height: 60px; } -.hair_base_5_porange { +.hair_base_5_hollygreen { background-image: url(spritesmith-main-2.png); background-position: -1092px -455px; width: 90px; height: 90px; } -.customize-option.hair_base_5_porange { +.customize-option.hair_base_5_hollygreen { background-image: url(spritesmith-main-2.png); background-position: -1117px -470px; width: 60px; height: 60px; } -.hair_base_5_porange2 { +.hair_base_5_midnight { background-image: url(spritesmith-main-2.png); background-position: -1092px -546px; width: 90px; height: 90px; } -.customize-option.hair_base_5_porange2 { +.customize-option.hair_base_5_midnight { background-image: url(spritesmith-main-2.png); background-position: -1117px -561px; width: 60px; height: 60px; } -.hair_base_5_ppink { +.hair_base_5_pblue { background-image: url(spritesmith-main-2.png); background-position: -1092px -637px; width: 90px; height: 90px; } -.customize-option.hair_base_5_ppink { +.customize-option.hair_base_5_pblue { background-image: url(spritesmith-main-2.png); background-position: -1117px -652px; width: 60px; height: 60px; } -.hair_base_5_ppink2 { +.hair_base_5_pblue2 { background-image: url(spritesmith-main-2.png); background-position: -1092px -728px; width: 90px; height: 90px; } -.customize-option.hair_base_5_ppink2 { +.customize-option.hair_base_5_pblue2 { background-image: url(spritesmith-main-2.png); background-position: -1117px -743px; width: 60px; height: 60px; } -.hair_base_5_ppurple { +.hair_base_5_peppermint { background-image: url(spritesmith-main-2.png); background-position: -1092px -819px; width: 90px; height: 90px; } -.customize-option.hair_base_5_ppurple { +.customize-option.hair_base_5_peppermint { background-image: url(spritesmith-main-2.png); background-position: -1117px -834px; width: 60px; height: 60px; } -.hair_base_5_ppurple2 { +.hair_base_5_pgreen { background-image: url(spritesmith-main-2.png); background-position: -1092px -910px; width: 90px; height: 90px; } -.customize-option.hair_base_5_ppurple2 { +.customize-option.hair_base_5_pgreen { background-image: url(spritesmith-main-2.png); background-position: -1117px -925px; width: 60px; height: 60px; } -.hair_base_5_pumpkin { +.hair_base_5_pgreen2 { background-image: url(spritesmith-main-2.png); background-position: -1092px -1001px; width: 90px; height: 90px; } -.customize-option.hair_base_5_pumpkin { +.customize-option.hair_base_5_pgreen2 { background-image: url(spritesmith-main-2.png); background-position: -1117px -1016px; width: 60px; height: 60px; } -.hair_base_5_purple { +.hair_base_5_porange { background-image: url(spritesmith-main-2.png); background-position: 0px -1092px; width: 90px; height: 90px; } -.customize-option.hair_base_5_purple { +.customize-option.hair_base_5_porange { background-image: url(spritesmith-main-2.png); background-position: -25px -1107px; width: 60px; height: 60px; } -.hair_base_5_pyellow { +.hair_base_5_porange2 { background-image: url(spritesmith-main-2.png); background-position: -91px -1092px; width: 90px; height: 90px; } -.customize-option.hair_base_5_pyellow { +.customize-option.hair_base_5_porange2 { background-image: url(spritesmith-main-2.png); background-position: -116px -1107px; width: 60px; height: 60px; } -.hair_base_5_pyellow2 { +.hair_base_5_ppink { background-image: url(spritesmith-main-2.png); background-position: -182px -1092px; width: 90px; height: 90px; } -.customize-option.hair_base_5_pyellow2 { +.customize-option.hair_base_5_ppink { background-image: url(spritesmith-main-2.png); background-position: -207px -1107px; width: 60px; height: 60px; } -.hair_base_5_rainbow { +.hair_base_5_ppink2 { background-image: url(spritesmith-main-2.png); background-position: -273px -1092px; width: 90px; height: 90px; } -.customize-option.hair_base_5_rainbow { +.customize-option.hair_base_5_ppink2 { background-image: url(spritesmith-main-2.png); background-position: -298px -1107px; width: 60px; height: 60px; } -.hair_base_5_red { +.hair_base_5_ppurple { background-image: url(spritesmith-main-2.png); background-position: -364px -1092px; width: 90px; height: 90px; } -.customize-option.hair_base_5_red { +.customize-option.hair_base_5_ppurple { background-image: url(spritesmith-main-2.png); background-position: -389px -1107px; width: 60px; height: 60px; } -.hair_base_5_snowy { +.hair_base_5_ppurple2 { background-image: url(spritesmith-main-2.png); background-position: -455px -1092px; width: 90px; height: 90px; } -.customize-option.hair_base_5_snowy { +.customize-option.hair_base_5_ppurple2 { background-image: url(spritesmith-main-2.png); background-position: -480px -1107px; width: 60px; height: 60px; } -.hair_base_5_white { +.hair_base_5_pumpkin { background-image: url(spritesmith-main-2.png); background-position: -546px -1092px; width: 90px; height: 90px; } -.customize-option.hair_base_5_white { +.customize-option.hair_base_5_pumpkin { background-image: url(spritesmith-main-2.png); background-position: -571px -1107px; width: 60px; height: 60px; } -.hair_base_5_winternight { +.hair_base_5_purple { background-image: url(spritesmith-main-2.png); background-position: -637px -1092px; width: 90px; height: 90px; } -.customize-option.hair_base_5_winternight { +.customize-option.hair_base_5_purple { background-image: url(spritesmith-main-2.png); background-position: -662px -1107px; width: 60px; height: 60px; } -.hair_base_5_winterstar { +.hair_base_5_pyellow { background-image: url(spritesmith-main-2.png); background-position: 0px 0px; width: 90px; height: 90px; } -.customize-option.hair_base_5_winterstar { +.customize-option.hair_base_5_pyellow { background-image: url(spritesmith-main-2.png); background-position: -25px -15px; width: 60px; height: 60px; } -.hair_base_5_yellow { +.hair_base_5_pyellow2 { background-image: url(spritesmith-main-2.png); background-position: -819px -1092px; width: 90px; height: 90px; } -.customize-option.hair_base_5_yellow { +.customize-option.hair_base_5_pyellow2 { background-image: url(spritesmith-main-2.png); background-position: -844px -1107px; width: 60px; height: 60px; } -.hair_base_5_zombie { +.hair_base_5_rainbow { background-image: url(spritesmith-main-2.png); background-position: -910px -1092px; width: 90px; height: 90px; } -.customize-option.hair_base_5_zombie { +.customize-option.hair_base_5_rainbow { background-image: url(spritesmith-main-2.png); background-position: -935px -1107px; width: 60px; height: 60px; } -.hair_base_6_TRUred { +.hair_base_5_red { background-image: url(spritesmith-main-2.png); background-position: -1001px -1092px; width: 90px; height: 90px; } -.customize-option.hair_base_6_TRUred { +.customize-option.hair_base_5_red { background-image: url(spritesmith-main-2.png); background-position: -1026px -1107px; width: 60px; height: 60px; } -.hair_base_6_aurora { +.hair_base_5_snowy { background-image: url(spritesmith-main-2.png); background-position: -1092px -1092px; width: 90px; height: 90px; } -.customize-option.hair_base_6_aurora { +.customize-option.hair_base_5_snowy { background-image: url(spritesmith-main-2.png); background-position: -1117px -1107px; width: 60px; height: 60px; } -.hair_base_6_black { +.hair_base_5_white { background-image: url(spritesmith-main-2.png); background-position: -1183px 0px; width: 90px; height: 90px; } -.customize-option.hair_base_6_black { +.customize-option.hair_base_5_white { background-image: url(spritesmith-main-2.png); background-position: -1208px -15px; width: 60px; height: 60px; } -.hair_base_6_blond { +.hair_base_5_winternight { background-image: url(spritesmith-main-2.png); background-position: -1183px -91px; width: 90px; height: 90px; } -.customize-option.hair_base_6_blond { +.customize-option.hair_base_5_winternight { background-image: url(spritesmith-main-2.png); background-position: -1208px -106px; width: 60px; height: 60px; } -.hair_base_6_blue { +.hair_base_5_winterstar { background-image: url(spritesmith-main-2.png); background-position: -1183px -182px; width: 90px; height: 90px; } -.customize-option.hair_base_6_blue { +.customize-option.hair_base_5_winterstar { background-image: url(spritesmith-main-2.png); background-position: -1208px -197px; width: 60px; height: 60px; } -.hair_base_6_brown { +.hair_base_5_yellow { background-image: url(spritesmith-main-2.png); background-position: -1183px -273px; width: 90px; height: 90px; } -.customize-option.hair_base_6_brown { +.customize-option.hair_base_5_yellow { background-image: url(spritesmith-main-2.png); background-position: -1208px -288px; width: 60px; height: 60px; } -.hair_base_6_candycane { +.hair_base_5_zombie { background-image: url(spritesmith-main-2.png); background-position: -1183px -364px; width: 90px; height: 90px; } -.customize-option.hair_base_6_candycane { +.customize-option.hair_base_5_zombie { background-image: url(spritesmith-main-2.png); background-position: -1208px -379px; width: 60px; height: 60px; } -.hair_base_6_candycorn { +.hair_base_6_TRUred { background-image: url(spritesmith-main-2.png); background-position: -1183px -455px; width: 90px; height: 90px; } -.customize-option.hair_base_6_candycorn { +.customize-option.hair_base_6_TRUred { background-image: url(spritesmith-main-2.png); background-position: -1208px -470px; width: 60px; height: 60px; } -.hair_base_6_festive { +.hair_base_6_aurora { background-image: url(spritesmith-main-2.png); background-position: -1183px -546px; width: 90px; height: 90px; } -.customize-option.hair_base_6_festive { +.customize-option.hair_base_6_aurora { background-image: url(spritesmith-main-2.png); background-position: -1208px -561px; width: 60px; height: 60px; } -.hair_base_6_frost { +.hair_base_6_black { background-image: url(spritesmith-main-2.png); background-position: -1183px -637px; width: 90px; height: 90px; } -.customize-option.hair_base_6_frost { +.customize-option.hair_base_6_black { background-image: url(spritesmith-main-2.png); background-position: -1208px -652px; width: 60px; height: 60px; } -.hair_base_6_ghostwhite { +.hair_base_6_blond { background-image: url(spritesmith-main-2.png); background-position: -1183px -728px; width: 90px; height: 90px; } -.customize-option.hair_base_6_ghostwhite { +.customize-option.hair_base_6_blond { background-image: url(spritesmith-main-2.png); background-position: -1208px -743px; width: 60px; height: 60px; } -.hair_base_6_green { +.hair_base_6_blue { background-image: url(spritesmith-main-2.png); background-position: -1183px -819px; width: 90px; height: 90px; } -.customize-option.hair_base_6_green { +.customize-option.hair_base_6_blue { background-image: url(spritesmith-main-2.png); background-position: -1208px -834px; width: 60px; height: 60px; } -.hair_base_6_halloween { +.hair_base_6_brown { background-image: url(spritesmith-main-2.png); background-position: -1183px -910px; width: 90px; height: 90px; } -.customize-option.hair_base_6_halloween { +.customize-option.hair_base_6_brown { background-image: url(spritesmith-main-2.png); background-position: -1208px -925px; width: 60px; height: 60px; } -.hair_base_6_holly { +.hair_base_6_candycane { background-image: url(spritesmith-main-2.png); background-position: -1183px -1001px; width: 90px; height: 90px; } -.customize-option.hair_base_6_holly { +.customize-option.hair_base_6_candycane { background-image: url(spritesmith-main-2.png); background-position: -1208px -1016px; width: 60px; height: 60px; } -.hair_base_6_hollygreen { +.hair_base_6_candycorn { background-image: url(spritesmith-main-2.png); background-position: -1183px -1092px; width: 90px; height: 90px; } -.customize-option.hair_base_6_hollygreen { +.customize-option.hair_base_6_candycorn { background-image: url(spritesmith-main-2.png); background-position: -1208px -1107px; width: 60px; height: 60px; } -.hair_base_6_midnight { +.hair_base_6_festive { background-image: url(spritesmith-main-2.png); background-position: 0px -1183px; width: 90px; height: 90px; } -.customize-option.hair_base_6_midnight { +.customize-option.hair_base_6_festive { background-image: url(spritesmith-main-2.png); background-position: -25px -1198px; width: 60px; height: 60px; } -.hair_base_6_pblue { +.hair_base_6_frost { background-image: url(spritesmith-main-2.png); background-position: -91px -1183px; width: 90px; height: 90px; } -.customize-option.hair_base_6_pblue { +.customize-option.hair_base_6_frost { background-image: url(spritesmith-main-2.png); background-position: -116px -1198px; width: 60px; height: 60px; } -.hair_base_6_pblue2 { +.hair_base_6_ghostwhite { background-image: url(spritesmith-main-2.png); background-position: -182px -1183px; width: 90px; height: 90px; } -.customize-option.hair_base_6_pblue2 { +.customize-option.hair_base_6_ghostwhite { background-image: url(spritesmith-main-2.png); background-position: -207px -1198px; width: 60px; height: 60px; } -.hair_base_6_peppermint { +.hair_base_6_green { background-image: url(spritesmith-main-2.png); background-position: -273px -1183px; width: 90px; height: 90px; } -.customize-option.hair_base_6_peppermint { +.customize-option.hair_base_6_green { background-image: url(spritesmith-main-2.png); background-position: -298px -1198px; width: 60px; height: 60px; } -.hair_base_6_pgreen { +.hair_base_6_halloween { background-image: url(spritesmith-main-2.png); background-position: -364px -1183px; width: 90px; height: 90px; } -.customize-option.hair_base_6_pgreen { +.customize-option.hair_base_6_halloween { background-image: url(spritesmith-main-2.png); background-position: -389px -1198px; width: 60px; height: 60px; } -.hair_base_6_pgreen2 { +.hair_base_6_holly { background-image: url(spritesmith-main-2.png); background-position: -455px -1183px; width: 90px; height: 90px; } -.customize-option.hair_base_6_pgreen2 { +.customize-option.hair_base_6_holly { background-image: url(spritesmith-main-2.png); background-position: -480px -1198px; width: 60px; height: 60px; } -.hair_base_6_porange { +.hair_base_6_hollygreen { background-image: url(spritesmith-main-2.png); background-position: -546px -1183px; width: 90px; height: 90px; } -.customize-option.hair_base_6_porange { +.customize-option.hair_base_6_hollygreen { background-image: url(spritesmith-main-2.png); background-position: -571px -1198px; width: 60px; height: 60px; } -.hair_base_6_porange2 { +.hair_base_6_midnight { background-image: url(spritesmith-main-2.png); background-position: -637px -1183px; width: 90px; height: 90px; } -.customize-option.hair_base_6_porange2 { +.customize-option.hair_base_6_midnight { background-image: url(spritesmith-main-2.png); background-position: -662px -1198px; width: 60px; height: 60px; } -.hair_base_6_ppink { +.hair_base_6_pblue { background-image: url(spritesmith-main-2.png); background-position: -728px -1183px; width: 90px; height: 90px; } -.customize-option.hair_base_6_ppink { +.customize-option.hair_base_6_pblue { background-image: url(spritesmith-main-2.png); background-position: -753px -1198px; width: 60px; height: 60px; } -.hair_base_6_ppink2 { +.hair_base_6_pblue2 { background-image: url(spritesmith-main-2.png); background-position: -819px -1183px; width: 90px; height: 90px; } -.customize-option.hair_base_6_ppink2 { +.customize-option.hair_base_6_pblue2 { background-image: url(spritesmith-main-2.png); background-position: -844px -1198px; width: 60px; height: 60px; } -.hair_base_6_ppurple { +.hair_base_6_peppermint { background-image: url(spritesmith-main-2.png); background-position: -910px -1183px; width: 90px; height: 90px; } -.customize-option.hair_base_6_ppurple { +.customize-option.hair_base_6_peppermint { background-image: url(spritesmith-main-2.png); background-position: -935px -1198px; width: 60px; height: 60px; } -.hair_base_6_ppurple2 { +.hair_base_6_pgreen { background-image: url(spritesmith-main-2.png); background-position: -1001px -1183px; width: 90px; height: 90px; } -.customize-option.hair_base_6_ppurple2 { +.customize-option.hair_base_6_pgreen { background-image: url(spritesmith-main-2.png); background-position: -1026px -1198px; width: 60px; height: 60px; } -.hair_base_6_pumpkin { +.hair_base_6_pgreen2 { background-image: url(spritesmith-main-2.png); background-position: -1092px -1183px; width: 90px; height: 90px; } -.customize-option.hair_base_6_pumpkin { +.customize-option.hair_base_6_pgreen2 { background-image: url(spritesmith-main-2.png); background-position: -1117px -1198px; width: 60px; height: 60px; } -.hair_base_6_purple { +.hair_base_6_porange { background-image: url(spritesmith-main-2.png); background-position: -1183px -1183px; width: 90px; height: 90px; } -.customize-option.hair_base_6_purple { +.customize-option.hair_base_6_porange { background-image: url(spritesmith-main-2.png); background-position: -1208px -1198px; width: 60px; height: 60px; } -.hair_base_6_pyellow { +.hair_base_6_porange2 { background-image: url(spritesmith-main-2.png); background-position: -1274px 0px; width: 90px; height: 90px; } -.customize-option.hair_base_6_pyellow { +.customize-option.hair_base_6_porange2 { background-image: url(spritesmith-main-2.png); background-position: -1299px -15px; width: 60px; height: 60px; } -.hair_base_6_pyellow2 { +.hair_base_6_ppink { background-image: url(spritesmith-main-2.png); background-position: -1274px -91px; width: 90px; height: 90px; } -.customize-option.hair_base_6_pyellow2 { +.customize-option.hair_base_6_ppink { background-image: url(spritesmith-main-2.png); background-position: -1299px -106px; width: 60px; height: 60px; } -.hair_base_6_rainbow { +.hair_base_6_ppink2 { background-image: url(spritesmith-main-2.png); background-position: -1274px -182px; width: 90px; height: 90px; } -.customize-option.hair_base_6_rainbow { +.customize-option.hair_base_6_ppink2 { background-image: url(spritesmith-main-2.png); background-position: -1299px -197px; width: 60px; height: 60px; } -.hair_base_6_red { +.hair_base_6_ppurple { background-image: url(spritesmith-main-2.png); background-position: -1274px -273px; width: 90px; height: 90px; } -.customize-option.hair_base_6_red { +.customize-option.hair_base_6_ppurple { background-image: url(spritesmith-main-2.png); background-position: -1299px -288px; width: 60px; height: 60px; } -.hair_base_6_snowy { +.hair_base_6_ppurple2 { background-image: url(spritesmith-main-2.png); background-position: -1274px -364px; width: 90px; height: 90px; } -.customize-option.hair_base_6_snowy { +.customize-option.hair_base_6_ppurple2 { background-image: url(spritesmith-main-2.png); background-position: -1299px -379px; width: 60px; height: 60px; } -.hair_base_6_white { +.hair_base_6_pumpkin { background-image: url(spritesmith-main-2.png); background-position: -1274px -455px; width: 90px; height: 90px; } -.customize-option.hair_base_6_white { +.customize-option.hair_base_6_pumpkin { background-image: url(spritesmith-main-2.png); background-position: -1299px -470px; width: 60px; height: 60px; } -.hair_base_6_winternight { +.hair_base_6_purple { background-image: url(spritesmith-main-2.png); background-position: -1274px -546px; width: 90px; height: 90px; } -.customize-option.hair_base_6_winternight { +.customize-option.hair_base_6_purple { background-image: url(spritesmith-main-2.png); background-position: -1299px -561px; width: 60px; height: 60px; } -.hair_base_6_winterstar { +.hair_base_6_pyellow { background-image: url(spritesmith-main-2.png); background-position: -1274px -637px; width: 90px; height: 90px; } -.customize-option.hair_base_6_winterstar { +.customize-option.hair_base_6_pyellow { background-image: url(spritesmith-main-2.png); background-position: -1299px -652px; width: 60px; height: 60px; } -.hair_base_6_yellow { +.hair_base_6_pyellow2 { background-image: url(spritesmith-main-2.png); background-position: -1274px -728px; width: 90px; height: 90px; } -.customize-option.hair_base_6_yellow { +.customize-option.hair_base_6_pyellow2 { background-image: url(spritesmith-main-2.png); background-position: -1299px -743px; width: 60px; height: 60px; } -.hair_base_6_zombie { +.hair_base_6_rainbow { background-image: url(spritesmith-main-2.png); background-position: -1274px -819px; width: 90px; height: 90px; } -.customize-option.hair_base_6_zombie { +.customize-option.hair_base_6_rainbow { background-image: url(spritesmith-main-2.png); background-position: -1299px -834px; width: 60px; height: 60px; } -.hair_base_7_TRUred { +.hair_base_6_red { background-image: url(spritesmith-main-2.png); background-position: -1274px -910px; width: 90px; height: 90px; } -.customize-option.hair_base_7_TRUred { +.customize-option.hair_base_6_red { background-image: url(spritesmith-main-2.png); background-position: -1299px -925px; width: 60px; height: 60px; } -.hair_base_7_aurora { +.hair_base_6_snowy { background-image: url(spritesmith-main-2.png); background-position: -1274px -1001px; width: 90px; height: 90px; } -.customize-option.hair_base_7_aurora { +.customize-option.hair_base_6_snowy { background-image: url(spritesmith-main-2.png); background-position: -1299px -1016px; width: 60px; height: 60px; } -.hair_base_7_black { +.hair_base_6_white { background-image: url(spritesmith-main-2.png); background-position: -1274px -1092px; width: 90px; height: 90px; } -.customize-option.hair_base_7_black { +.customize-option.hair_base_6_white { background-image: url(spritesmith-main-2.png); background-position: -1299px -1107px; width: 60px; height: 60px; } -.hair_base_7_blond { +.hair_base_6_winternight { background-image: url(spritesmith-main-2.png); background-position: -1274px -1183px; width: 90px; height: 90px; } -.customize-option.hair_base_7_blond { +.customize-option.hair_base_6_winternight { background-image: url(spritesmith-main-2.png); background-position: -1299px -1198px; width: 60px; height: 60px; } -.hair_base_7_blue { +.hair_base_6_winterstar { background-image: url(spritesmith-main-2.png); background-position: 0px -1274px; width: 90px; height: 90px; } -.customize-option.hair_base_7_blue { +.customize-option.hair_base_6_winterstar { background-image: url(spritesmith-main-2.png); background-position: -25px -1289px; width: 60px; height: 60px; } -.hair_base_7_brown { +.hair_base_6_yellow { background-image: url(spritesmith-main-2.png); background-position: -91px -1274px; width: 90px; height: 90px; } -.customize-option.hair_base_7_brown { +.customize-option.hair_base_6_yellow { background-image: url(spritesmith-main-2.png); background-position: -116px -1289px; width: 60px; height: 60px; } -.hair_base_7_candycane { +.hair_base_6_zombie { background-image: url(spritesmith-main-2.png); background-position: -182px -1274px; width: 90px; height: 90px; } -.customize-option.hair_base_7_candycane { +.customize-option.hair_base_6_zombie { background-image: url(spritesmith-main-2.png); background-position: -207px -1289px; width: 60px; height: 60px; } -.hair_base_7_candycorn { +.hair_base_7_TRUred { background-image: url(spritesmith-main-2.png); background-position: -273px -1274px; width: 90px; height: 90px; } -.customize-option.hair_base_7_candycorn { +.customize-option.hair_base_7_TRUred { background-image: url(spritesmith-main-2.png); background-position: -298px -1289px; width: 60px; height: 60px; } -.hair_base_7_festive { +.hair_base_7_aurora { background-image: url(spritesmith-main-2.png); background-position: -364px -1274px; width: 90px; height: 90px; } -.customize-option.hair_base_7_festive { +.customize-option.hair_base_7_aurora { background-image: url(spritesmith-main-2.png); background-position: -389px -1289px; width: 60px; height: 60px; } -.hair_base_7_frost { +.hair_base_7_black { background-image: url(spritesmith-main-2.png); background-position: -455px -1274px; width: 90px; height: 90px; } -.customize-option.hair_base_7_frost { +.customize-option.hair_base_7_black { background-image: url(spritesmith-main-2.png); background-position: -480px -1289px; width: 60px; height: 60px; } -.hair_base_7_ghostwhite { +.hair_base_7_blond { background-image: url(spritesmith-main-2.png); background-position: -546px -1274px; width: 90px; height: 90px; } -.customize-option.hair_base_7_ghostwhite { +.customize-option.hair_base_7_blond { background-image: url(spritesmith-main-2.png); background-position: -571px -1289px; width: 60px; height: 60px; } -.hair_base_7_green { +.hair_base_7_blue { background-image: url(spritesmith-main-2.png); background-position: -637px -1274px; width: 90px; height: 90px; } -.customize-option.hair_base_7_green { +.customize-option.hair_base_7_blue { background-image: url(spritesmith-main-2.png); background-position: -662px -1289px; width: 60px; height: 60px; } -.hair_base_7_halloween { +.hair_base_7_brown { background-image: url(spritesmith-main-2.png); background-position: -728px -1274px; width: 90px; height: 90px; } -.customize-option.hair_base_7_halloween { +.customize-option.hair_base_7_brown { background-image: url(spritesmith-main-2.png); background-position: -753px -1289px; width: 60px; height: 60px; } -.hair_base_7_holly { +.hair_base_7_candycane { background-image: url(spritesmith-main-2.png); background-position: -819px -1274px; width: 90px; height: 90px; } -.customize-option.hair_base_7_holly { +.customize-option.hair_base_7_candycane { background-image: url(spritesmith-main-2.png); background-position: -844px -1289px; width: 60px; height: 60px; } -.hair_base_7_hollygreen { +.hair_base_7_candycorn { background-image: url(spritesmith-main-2.png); background-position: -910px -1274px; width: 90px; height: 90px; } -.customize-option.hair_base_7_hollygreen { +.customize-option.hair_base_7_candycorn { background-image: url(spritesmith-main-2.png); background-position: -935px -1289px; width: 60px; height: 60px; } -.hair_base_7_midnight { +.hair_base_7_festive { background-image: url(spritesmith-main-2.png); background-position: -1001px -1274px; width: 90px; height: 90px; } -.customize-option.hair_base_7_midnight { +.customize-option.hair_base_7_festive { background-image: url(spritesmith-main-2.png); background-position: -1026px -1289px; width: 60px; height: 60px; } -.hair_base_7_pblue { +.hair_base_7_frost { background-image: url(spritesmith-main-2.png); background-position: -1092px -1274px; width: 90px; height: 90px; } -.customize-option.hair_base_7_pblue { +.customize-option.hair_base_7_frost { background-image: url(spritesmith-main-2.png); background-position: -1117px -1289px; width: 60px; height: 60px; } -.hair_base_7_pblue2 { +.hair_base_7_ghostwhite { background-image: url(spritesmith-main-2.png); background-position: -1183px -1274px; width: 90px; height: 90px; } -.customize-option.hair_base_7_pblue2 { +.customize-option.hair_base_7_ghostwhite { background-image: url(spritesmith-main-2.png); background-position: -1208px -1289px; width: 60px; height: 60px; } -.hair_base_7_peppermint { +.hair_base_7_green { background-image: url(spritesmith-main-2.png); background-position: -1274px -1274px; width: 90px; height: 90px; } -.customize-option.hair_base_7_peppermint { +.customize-option.hair_base_7_green { background-image: url(spritesmith-main-2.png); background-position: -1299px -1289px; width: 60px; height: 60px; } -.hair_base_7_pgreen { +.hair_base_7_halloween { background-image: url(spritesmith-main-2.png); background-position: -1365px 0px; width: 90px; height: 90px; } -.customize-option.hair_base_7_pgreen { +.customize-option.hair_base_7_halloween { background-image: url(spritesmith-main-2.png); background-position: -1390px -15px; width: 60px; height: 60px; } -.hair_base_7_pgreen2 { +.hair_base_7_holly { background-image: url(spritesmith-main-2.png); background-position: -1365px -91px; width: 90px; height: 90px; } -.customize-option.hair_base_7_pgreen2 { +.customize-option.hair_base_7_holly { background-image: url(spritesmith-main-2.png); background-position: -1390px -106px; width: 60px; height: 60px; } -.hair_base_7_porange { +.hair_base_7_hollygreen { background-image: url(spritesmith-main-2.png); background-position: -1365px -182px; width: 90px; height: 90px; } -.customize-option.hair_base_7_porange { +.customize-option.hair_base_7_hollygreen { background-image: url(spritesmith-main-2.png); background-position: -1390px -197px; width: 60px; height: 60px; } -.hair_base_7_porange2 { +.hair_base_7_midnight { background-image: url(spritesmith-main-2.png); background-position: -1365px -273px; width: 90px; height: 90px; } -.customize-option.hair_base_7_porange2 { +.customize-option.hair_base_7_midnight { background-image: url(spritesmith-main-2.png); background-position: -1390px -288px; width: 60px; height: 60px; } -.hair_base_7_ppink { +.hair_base_7_pblue { background-image: url(spritesmith-main-2.png); background-position: -1365px -364px; width: 90px; height: 90px; } -.customize-option.hair_base_7_ppink { +.customize-option.hair_base_7_pblue { background-image: url(spritesmith-main-2.png); background-position: -1390px -379px; width: 60px; height: 60px; } -.hair_base_7_ppink2 { +.hair_base_7_pblue2 { background-image: url(spritesmith-main-2.png); background-position: -1365px -455px; width: 90px; height: 90px; } -.customize-option.hair_base_7_ppink2 { +.customize-option.hair_base_7_pblue2 { background-image: url(spritesmith-main-2.png); background-position: -1390px -470px; width: 60px; height: 60px; } -.hair_base_7_ppurple { +.hair_base_7_peppermint { background-image: url(spritesmith-main-2.png); background-position: -1365px -546px; width: 90px; height: 90px; } -.customize-option.hair_base_7_ppurple { +.customize-option.hair_base_7_peppermint { background-image: url(spritesmith-main-2.png); background-position: -1390px -561px; width: 60px; height: 60px; } -.hair_base_7_ppurple2 { +.hair_base_7_pgreen { background-image: url(spritesmith-main-2.png); background-position: -1365px -637px; width: 90px; height: 90px; } -.customize-option.hair_base_7_ppurple2 { +.customize-option.hair_base_7_pgreen { background-image: url(spritesmith-main-2.png); background-position: -1390px -652px; width: 60px; height: 60px; } -.hair_base_7_pumpkin { +.hair_base_7_pgreen2 { background-image: url(spritesmith-main-2.png); background-position: -1365px -728px; width: 90px; height: 90px; } -.customize-option.hair_base_7_pumpkin { +.customize-option.hair_base_7_pgreen2 { background-image: url(spritesmith-main-2.png); background-position: -1390px -743px; width: 60px; height: 60px; } -.hair_base_7_purple { +.hair_base_7_porange { background-image: url(spritesmith-main-2.png); background-position: -1365px -819px; width: 90px; height: 90px; } -.customize-option.hair_base_7_purple { +.customize-option.hair_base_7_porange { background-image: url(spritesmith-main-2.png); background-position: -1390px -834px; width: 60px; height: 60px; } -.hair_base_7_pyellow { +.hair_base_7_porange2 { background-image: url(spritesmith-main-2.png); background-position: -1365px -910px; width: 90px; height: 90px; } -.customize-option.hair_base_7_pyellow { +.customize-option.hair_base_7_porange2 { background-image: url(spritesmith-main-2.png); background-position: -1390px -925px; width: 60px; height: 60px; } -.hair_base_7_pyellow2 { +.hair_base_7_ppink { background-image: url(spritesmith-main-2.png); background-position: -1365px -1001px; width: 90px; height: 90px; } -.customize-option.hair_base_7_pyellow2 { +.customize-option.hair_base_7_ppink { background-image: url(spritesmith-main-2.png); background-position: -1390px -1016px; width: 60px; height: 60px; } -.hair_base_7_rainbow { +.hair_base_7_ppink2 { background-image: url(spritesmith-main-2.png); background-position: -1365px -1092px; width: 90px; height: 90px; } -.customize-option.hair_base_7_rainbow { +.customize-option.hair_base_7_ppink2 { background-image: url(spritesmith-main-2.png); background-position: -1390px -1107px; width: 60px; height: 60px; } -.hair_base_7_red { +.hair_base_7_ppurple { background-image: url(spritesmith-main-2.png); background-position: -1365px -1183px; width: 90px; height: 90px; } -.customize-option.hair_base_7_red { +.customize-option.hair_base_7_ppurple { background-image: url(spritesmith-main-2.png); background-position: -1390px -1198px; width: 60px; height: 60px; } -.hair_base_7_snowy { +.hair_base_7_ppurple2 { background-image: url(spritesmith-main-2.png); background-position: -1365px -1274px; width: 90px; height: 90px; } -.customize-option.hair_base_7_snowy { +.customize-option.hair_base_7_ppurple2 { background-image: url(spritesmith-main-2.png); background-position: -1390px -1289px; width: 60px; height: 60px; } -.hair_base_7_white { +.hair_base_7_pumpkin { background-image: url(spritesmith-main-2.png); background-position: 0px -1365px; width: 90px; height: 90px; } -.customize-option.hair_base_7_white { +.customize-option.hair_base_7_pumpkin { background-image: url(spritesmith-main-2.png); background-position: -25px -1380px; width: 60px; height: 60px; } -.hair_base_7_winternight { +.hair_base_7_purple { background-image: url(spritesmith-main-2.png); background-position: -91px -1365px; width: 90px; height: 90px; } -.customize-option.hair_base_7_winternight { +.customize-option.hair_base_7_purple { background-image: url(spritesmith-main-2.png); background-position: -116px -1380px; width: 60px; height: 60px; } -.hair_base_7_winterstar { +.hair_base_7_pyellow { background-image: url(spritesmith-main-2.png); background-position: -182px -1365px; width: 90px; height: 90px; } -.customize-option.hair_base_7_winterstar { +.customize-option.hair_base_7_pyellow { background-image: url(spritesmith-main-2.png); background-position: -207px -1380px; width: 60px; height: 60px; } -.hair_base_7_yellow { +.hair_base_7_pyellow2 { background-image: url(spritesmith-main-2.png); background-position: -273px -1365px; width: 90px; height: 90px; } -.customize-option.hair_base_7_yellow { +.customize-option.hair_base_7_pyellow2 { background-image: url(spritesmith-main-2.png); background-position: -298px -1380px; width: 60px; height: 60px; } -.hair_base_7_zombie { +.hair_base_7_rainbow { background-image: url(spritesmith-main-2.png); background-position: -364px -1365px; width: 90px; height: 90px; } -.customize-option.hair_base_7_zombie { +.customize-option.hair_base_7_rainbow { background-image: url(spritesmith-main-2.png); background-position: -389px -1380px; width: 60px; height: 60px; } -.hair_base_8_TRUred { +.hair_base_7_red { background-image: url(spritesmith-main-2.png); background-position: -455px -1365px; width: 90px; height: 90px; } -.customize-option.hair_base_8_TRUred { +.customize-option.hair_base_7_red { background-image: url(spritesmith-main-2.png); background-position: -480px -1380px; width: 60px; height: 60px; } -.hair_base_8_aurora { +.hair_base_7_snowy { background-image: url(spritesmith-main-2.png); background-position: -546px -1365px; width: 90px; height: 90px; } -.customize-option.hair_base_8_aurora { +.customize-option.hair_base_7_snowy { background-image: url(spritesmith-main-2.png); background-position: -571px -1380px; width: 60px; height: 60px; } -.hair_base_8_black { +.hair_base_7_white { background-image: url(spritesmith-main-2.png); background-position: -637px -1365px; width: 90px; height: 90px; } -.customize-option.hair_base_8_black { +.customize-option.hair_base_7_white { background-image: url(spritesmith-main-2.png); background-position: -662px -1380px; width: 60px; height: 60px; } -.hair_base_8_blond { +.hair_base_7_winternight { background-image: url(spritesmith-main-2.png); background-position: -728px -1365px; width: 90px; height: 90px; } -.customize-option.hair_base_8_blond { +.customize-option.hair_base_7_winternight { background-image: url(spritesmith-main-2.png); background-position: -753px -1380px; width: 60px; height: 60px; } -.hair_base_8_blue { +.hair_base_7_winterstar { background-image: url(spritesmith-main-2.png); background-position: -819px -1365px; width: 90px; height: 90px; } -.customize-option.hair_base_8_blue { +.customize-option.hair_base_7_winterstar { background-image: url(spritesmith-main-2.png); background-position: -844px -1380px; width: 60px; height: 60px; } -.hair_base_8_brown { +.hair_base_7_yellow { background-image: url(spritesmith-main-2.png); background-position: -910px -1365px; width: 90px; height: 90px; } -.customize-option.hair_base_8_brown { +.customize-option.hair_base_7_yellow { background-image: url(spritesmith-main-2.png); background-position: -935px -1380px; width: 60px; height: 60px; } -.hair_base_8_candycane { +.hair_base_7_zombie { background-image: url(spritesmith-main-2.png); background-position: -1001px -1365px; width: 90px; height: 90px; } -.customize-option.hair_base_8_candycane { +.customize-option.hair_base_7_zombie { background-image: url(spritesmith-main-2.png); background-position: -1026px -1380px; width: 60px; height: 60px; } -.hair_base_8_candycorn { +.hair_base_8_TRUred { background-image: url(spritesmith-main-2.png); background-position: -1092px -1365px; width: 90px; height: 90px; } -.customize-option.hair_base_8_candycorn { +.customize-option.hair_base_8_TRUred { background-image: url(spritesmith-main-2.png); background-position: -1117px -1380px; width: 60px; height: 60px; } -.hair_base_8_festive { +.hair_base_8_aurora { background-image: url(spritesmith-main-2.png); background-position: -1183px -1365px; width: 90px; height: 90px; } -.customize-option.hair_base_8_festive { +.customize-option.hair_base_8_aurora { background-image: url(spritesmith-main-2.png); background-position: -1208px -1380px; width: 60px; height: 60px; } -.hair_base_8_frost { +.hair_base_8_black { background-image: url(spritesmith-main-2.png); background-position: -1274px -1365px; width: 90px; height: 90px; } -.customize-option.hair_base_8_frost { +.customize-option.hair_base_8_black { background-image: url(spritesmith-main-2.png); background-position: -1299px -1380px; width: 60px; height: 60px; } -.hair_base_8_ghostwhite { +.hair_base_8_blond { background-image: url(spritesmith-main-2.png); background-position: -1365px -1365px; width: 90px; height: 90px; } -.customize-option.hair_base_8_ghostwhite { +.customize-option.hair_base_8_blond { background-image: url(spritesmith-main-2.png); background-position: -1390px -1380px; width: 60px; height: 60px; } -.hair_base_8_green { +.hair_base_8_blue { background-image: url(spritesmith-main-2.png); background-position: -1456px 0px; width: 90px; height: 90px; } -.customize-option.hair_base_8_green { +.customize-option.hair_base_8_blue { background-image: url(spritesmith-main-2.png); background-position: -1481px -15px; width: 60px; height: 60px; } -.hair_base_8_halloween { +.hair_base_8_brown { background-image: url(spritesmith-main-2.png); background-position: -1456px -91px; width: 90px; height: 90px; } -.customize-option.hair_base_8_halloween { +.customize-option.hair_base_8_brown { background-image: url(spritesmith-main-2.png); background-position: -1481px -106px; width: 60px; height: 60px; } -.hair_base_8_holly { +.hair_base_8_candycane { background-image: url(spritesmith-main-2.png); background-position: -1456px -182px; width: 90px; height: 90px; } -.customize-option.hair_base_8_holly { +.customize-option.hair_base_8_candycane { background-image: url(spritesmith-main-2.png); background-position: -1481px -197px; width: 60px; height: 60px; } -.hair_base_8_hollygreen { +.hair_base_8_candycorn { background-image: url(spritesmith-main-2.png); background-position: -1456px -273px; width: 90px; height: 90px; } -.customize-option.hair_base_8_hollygreen { +.customize-option.hair_base_8_candycorn { background-image: url(spritesmith-main-2.png); background-position: -1481px -288px; width: 60px; height: 60px; } -.hair_base_8_midnight { +.hair_base_8_festive { background-image: url(spritesmith-main-2.png); background-position: -1456px -364px; width: 90px; height: 90px; } -.customize-option.hair_base_8_midnight { +.customize-option.hair_base_8_festive { background-image: url(spritesmith-main-2.png); background-position: -1481px -379px; width: 60px; height: 60px; } -.hair_base_8_pblue { +.hair_base_8_frost { background-image: url(spritesmith-main-2.png); background-position: -1456px -455px; width: 90px; height: 90px; } -.customize-option.hair_base_8_pblue { +.customize-option.hair_base_8_frost { background-image: url(spritesmith-main-2.png); background-position: -1481px -470px; width: 60px; height: 60px; } -.hair_base_8_pblue2 { +.hair_base_8_ghostwhite { background-image: url(spritesmith-main-2.png); background-position: -1456px -546px; width: 90px; height: 90px; } -.customize-option.hair_base_8_pblue2 { +.customize-option.hair_base_8_ghostwhite { background-image: url(spritesmith-main-2.png); background-position: -1481px -561px; width: 60px; height: 60px; } -.hair_base_8_peppermint { +.hair_base_8_green { background-image: url(spritesmith-main-2.png); background-position: -1456px -637px; width: 90px; height: 90px; } -.customize-option.hair_base_8_peppermint { +.customize-option.hair_base_8_green { background-image: url(spritesmith-main-2.png); background-position: -1481px -652px; width: 60px; height: 60px; } -.hair_base_8_pgreen { +.hair_base_8_halloween { background-image: url(spritesmith-main-2.png); background-position: -1456px -728px; width: 90px; height: 90px; } -.customize-option.hair_base_8_pgreen { +.customize-option.hair_base_8_halloween { background-image: url(spritesmith-main-2.png); background-position: -1481px -743px; width: 60px; height: 60px; } -.hair_base_8_pgreen2 { +.hair_base_8_holly { background-image: url(spritesmith-main-2.png); background-position: -1456px -819px; width: 90px; height: 90px; } -.customize-option.hair_base_8_pgreen2 { +.customize-option.hair_base_8_holly { background-image: url(spritesmith-main-2.png); background-position: -1481px -834px; width: 60px; height: 60px; } -.hair_base_8_porange { +.hair_base_8_hollygreen { background-image: url(spritesmith-main-2.png); background-position: -1456px -910px; width: 90px; height: 90px; } -.customize-option.hair_base_8_porange { +.customize-option.hair_base_8_hollygreen { background-image: url(spritesmith-main-2.png); background-position: -1481px -925px; width: 60px; height: 60px; } -.hair_base_8_porange2 { +.hair_base_8_midnight { background-image: url(spritesmith-main-2.png); background-position: -1456px -1001px; width: 90px; height: 90px; } -.customize-option.hair_base_8_porange2 { +.customize-option.hair_base_8_midnight { background-image: url(spritesmith-main-2.png); background-position: -1481px -1016px; width: 60px; height: 60px; } -.hair_base_8_ppink { +.hair_base_8_pblue { background-image: url(spritesmith-main-2.png); background-position: -1456px -1092px; width: 90px; height: 90px; } -.customize-option.hair_base_8_ppink { +.customize-option.hair_base_8_pblue { background-image: url(spritesmith-main-2.png); background-position: -1481px -1107px; width: 60px; height: 60px; } -.hair_base_8_ppink2 { +.hair_base_8_pblue2 { background-image: url(spritesmith-main-2.png); background-position: -1456px -1183px; width: 90px; height: 90px; } -.customize-option.hair_base_8_ppink2 { +.customize-option.hair_base_8_pblue2 { background-image: url(spritesmith-main-2.png); background-position: -1481px -1198px; width: 60px; height: 60px; } -.hair_base_8_ppurple { +.hair_base_8_peppermint { background-image: url(spritesmith-main-2.png); background-position: -1456px -1274px; width: 90px; height: 90px; } -.customize-option.hair_base_8_ppurple { +.customize-option.hair_base_8_peppermint { background-image: url(spritesmith-main-2.png); background-position: -1481px -1289px; width: 60px; height: 60px; } -.hair_base_8_ppurple2 { +.hair_base_8_pgreen { background-image: url(spritesmith-main-2.png); background-position: -1456px -1365px; width: 90px; height: 90px; } -.customize-option.hair_base_8_ppurple2 { +.customize-option.hair_base_8_pgreen { background-image: url(spritesmith-main-2.png); background-position: -1481px -1380px; width: 60px; height: 60px; } -.hair_base_8_pumpkin { +.hair_base_8_pgreen2 { background-image: url(spritesmith-main-2.png); background-position: 0px -1456px; width: 90px; height: 90px; } -.customize-option.hair_base_8_pumpkin { +.customize-option.hair_base_8_pgreen2 { background-image: url(spritesmith-main-2.png); background-position: -25px -1471px; width: 60px; height: 60px; } -.hair_base_8_purple { +.hair_base_8_porange { background-image: url(spritesmith-main-2.png); background-position: -91px -1456px; width: 90px; height: 90px; } -.customize-option.hair_base_8_purple { +.customize-option.hair_base_8_porange { background-image: url(spritesmith-main-2.png); background-position: -116px -1471px; width: 60px; height: 60px; } -.hair_base_8_pyellow { +.hair_base_8_porange2 { background-image: url(spritesmith-main-2.png); background-position: -182px -1456px; width: 90px; height: 90px; } -.customize-option.hair_base_8_pyellow { +.customize-option.hair_base_8_porange2 { background-image: url(spritesmith-main-2.png); background-position: -207px -1471px; width: 60px; height: 60px; } -.hair_base_8_pyellow2 { +.hair_base_8_ppink { background-image: url(spritesmith-main-2.png); background-position: -273px -1456px; width: 90px; height: 90px; } -.customize-option.hair_base_8_pyellow2 { +.customize-option.hair_base_8_ppink { background-image: url(spritesmith-main-2.png); background-position: -298px -1471px; width: 60px; height: 60px; } -.hair_base_8_rainbow { +.hair_base_8_ppink2 { background-image: url(spritesmith-main-2.png); background-position: -364px -1456px; width: 90px; height: 90px; } -.customize-option.hair_base_8_rainbow { +.customize-option.hair_base_8_ppink2 { background-image: url(spritesmith-main-2.png); background-position: -389px -1471px; width: 60px; height: 60px; } -.hair_base_8_red { +.hair_base_8_ppurple { background-image: url(spritesmith-main-2.png); background-position: -455px -1456px; width: 90px; height: 90px; } -.customize-option.hair_base_8_red { +.customize-option.hair_base_8_ppurple { background-image: url(spritesmith-main-2.png); background-position: -480px -1471px; width: 60px; height: 60px; } -.hair_base_8_snowy { +.hair_base_8_ppurple2 { background-image: url(spritesmith-main-2.png); background-position: -546px -1456px; width: 90px; height: 90px; } -.customize-option.hair_base_8_snowy { +.customize-option.hair_base_8_ppurple2 { background-image: url(spritesmith-main-2.png); background-position: -571px -1471px; width: 60px; height: 60px; } -.hair_base_8_white { +.hair_base_8_pumpkin { background-image: url(spritesmith-main-2.png); background-position: -637px -1456px; width: 90px; height: 90px; } -.customize-option.hair_base_8_white { +.customize-option.hair_base_8_pumpkin { background-image: url(spritesmith-main-2.png); background-position: -662px -1471px; width: 60px; height: 60px; } -.hair_base_8_winternight { +.hair_base_8_purple { background-image: url(spritesmith-main-2.png); background-position: -728px -1456px; width: 90px; height: 90px; } -.customize-option.hair_base_8_winternight { +.customize-option.hair_base_8_purple { background-image: url(spritesmith-main-2.png); background-position: -753px -1471px; width: 60px; height: 60px; } -.hair_base_8_winterstar { +.hair_base_8_pyellow { background-image: url(spritesmith-main-2.png); background-position: -819px -1456px; width: 90px; height: 90px; } -.customize-option.hair_base_8_winterstar { +.customize-option.hair_base_8_pyellow { background-image: url(spritesmith-main-2.png); background-position: -844px -1471px; width: 60px; height: 60px; } -.hair_base_8_yellow { +.hair_base_8_pyellow2 { background-image: url(spritesmith-main-2.png); background-position: -910px -1456px; width: 90px; height: 90px; } -.customize-option.hair_base_8_yellow { +.customize-option.hair_base_8_pyellow2 { background-image: url(spritesmith-main-2.png); background-position: -935px -1471px; width: 60px; height: 60px; } -.hair_base_8_zombie { +.hair_base_8_rainbow { background-image: url(spritesmith-main-2.png); background-position: -1001px -1456px; width: 90px; height: 90px; } -.customize-option.hair_base_8_zombie { +.customize-option.hair_base_8_rainbow { background-image: url(spritesmith-main-2.png); background-position: -1026px -1471px; width: 60px; height: 60px; } -.hair_base_9_TRUred { +.hair_base_8_red { background-image: url(spritesmith-main-2.png); background-position: -1092px -1456px; width: 90px; height: 90px; } -.customize-option.hair_base_9_TRUred { +.customize-option.hair_base_8_red { background-image: url(spritesmith-main-2.png); background-position: -1117px -1471px; width: 60px; height: 60px; } -.hair_base_9_aurora { +.hair_base_8_snowy { background-image: url(spritesmith-main-2.png); background-position: -1183px -1456px; width: 90px; height: 90px; } -.customize-option.hair_base_9_aurora { +.customize-option.hair_base_8_snowy { background-image: url(spritesmith-main-2.png); background-position: -1208px -1471px; width: 60px; height: 60px; } -.hair_base_9_black { +.hair_base_8_white { background-image: url(spritesmith-main-2.png); background-position: -1274px -1456px; width: 90px; height: 90px; } -.customize-option.hair_base_9_black { +.customize-option.hair_base_8_white { background-image: url(spritesmith-main-2.png); background-position: -1299px -1471px; width: 60px; height: 60px; } -.hair_base_9_blond { +.hair_base_8_winternight { background-image: url(spritesmith-main-2.png); background-position: -1365px -1456px; width: 90px; height: 90px; } -.customize-option.hair_base_9_blond { +.customize-option.hair_base_8_winternight { background-image: url(spritesmith-main-2.png); background-position: -1390px -1471px; width: 60px; height: 60px; } -.hair_base_9_blue { +.hair_base_8_winterstar { background-image: url(spritesmith-main-2.png); background-position: -1456px -1456px; width: 90px; height: 90px; } -.customize-option.hair_base_9_blue { +.customize-option.hair_base_8_winterstar { background-image: url(spritesmith-main-2.png); background-position: -1481px -1471px; width: 60px; height: 60px; } -.hair_base_9_brown { +.hair_base_8_yellow { background-image: url(spritesmith-main-2.png); background-position: -1547px 0px; width: 90px; height: 90px; } -.customize-option.hair_base_9_brown { +.customize-option.hair_base_8_yellow { background-image: url(spritesmith-main-2.png); background-position: -1572px -15px; width: 60px; height: 60px; } -.hair_base_9_candycane { +.hair_base_8_zombie { background-image: url(spritesmith-main-2.png); background-position: -1547px -91px; width: 90px; height: 90px; } -.customize-option.hair_base_9_candycane { +.customize-option.hair_base_8_zombie { background-image: url(spritesmith-main-2.png); background-position: -1572px -106px; width: 60px; height: 60px; } -.hair_base_9_candycorn { +.hair_base_9_TRUred { background-image: url(spritesmith-main-2.png); background-position: -1547px -182px; width: 90px; height: 90px; } -.customize-option.hair_base_9_candycorn { +.customize-option.hair_base_9_TRUred { background-image: url(spritesmith-main-2.png); background-position: -1572px -197px; width: 60px; height: 60px; } -.hair_base_9_festive { +.hair_base_9_aurora { background-image: url(spritesmith-main-2.png); background-position: -1547px -273px; width: 90px; height: 90px; } -.customize-option.hair_base_9_festive { +.customize-option.hair_base_9_aurora { background-image: url(spritesmith-main-2.png); background-position: -1572px -288px; width: 60px; height: 60px; } -.hair_base_9_frost { +.hair_base_9_black { background-image: url(spritesmith-main-2.png); background-position: -1547px -364px; width: 90px; height: 90px; } -.customize-option.hair_base_9_frost { +.customize-option.hair_base_9_black { background-image: url(spritesmith-main-2.png); background-position: -1572px -379px; width: 60px; height: 60px; } -.hair_base_9_ghostwhite { +.hair_base_9_blond { background-image: url(spritesmith-main-2.png); background-position: -1547px -455px; width: 90px; height: 90px; } -.customize-option.hair_base_9_ghostwhite { +.customize-option.hair_base_9_blond { background-image: url(spritesmith-main-2.png); background-position: -1572px -470px; width: 60px; height: 60px; } -.hair_base_9_green { +.hair_base_9_blue { background-image: url(spritesmith-main-2.png); background-position: -1547px -546px; width: 90px; height: 90px; } -.customize-option.hair_base_9_green { +.customize-option.hair_base_9_blue { background-image: url(spritesmith-main-2.png); background-position: -1572px -561px; width: 60px; height: 60px; } -.hair_base_9_halloween { +.hair_base_9_brown { background-image: url(spritesmith-main-2.png); background-position: -1547px -637px; width: 90px; height: 90px; } -.customize-option.hair_base_9_halloween { +.customize-option.hair_base_9_brown { background-image: url(spritesmith-main-2.png); background-position: -1572px -652px; width: 60px; height: 60px; } -.hair_base_9_holly { +.hair_base_9_candycane { background-image: url(spritesmith-main-2.png); background-position: -1547px -728px; width: 90px; height: 90px; } -.customize-option.hair_base_9_holly { +.customize-option.hair_base_9_candycane { background-image: url(spritesmith-main-2.png); background-position: -1572px -743px; width: 60px; height: 60px; } -.hair_base_9_hollygreen { +.hair_base_9_candycorn { background-image: url(spritesmith-main-2.png); background-position: -1547px -819px; width: 90px; height: 90px; } -.customize-option.hair_base_9_hollygreen { +.customize-option.hair_base_9_candycorn { background-image: url(spritesmith-main-2.png); background-position: -1572px -834px; width: 60px; height: 60px; } -.hair_base_9_midnight { +.hair_base_9_festive { background-image: url(spritesmith-main-2.png); background-position: -1547px -910px; width: 90px; height: 90px; } -.customize-option.hair_base_9_midnight { +.customize-option.hair_base_9_festive { background-image: url(spritesmith-main-2.png); background-position: -1572px -925px; width: 60px; height: 60px; } -.hair_base_9_pblue { +.hair_base_9_frost { background-image: url(spritesmith-main-2.png); background-position: -1547px -1001px; width: 90px; height: 90px; } -.customize-option.hair_base_9_pblue { +.customize-option.hair_base_9_frost { background-image: url(spritesmith-main-2.png); background-position: -1572px -1016px; width: 60px; height: 60px; } -.hair_base_9_pblue2 { +.hair_base_9_ghostwhite { background-image: url(spritesmith-main-2.png); background-position: -1547px -1092px; width: 90px; height: 90px; } -.customize-option.hair_base_9_pblue2 { +.customize-option.hair_base_9_ghostwhite { background-image: url(spritesmith-main-2.png); background-position: -1572px -1107px; width: 60px; height: 60px; } -.hair_base_9_peppermint { +.hair_base_9_green { background-image: url(spritesmith-main-2.png); background-position: -1547px -1183px; width: 90px; height: 90px; } -.customize-option.hair_base_9_peppermint { +.customize-option.hair_base_9_green { background-image: url(spritesmith-main-2.png); background-position: -1572px -1198px; width: 60px; height: 60px; } -.hair_base_9_pgreen { +.hair_base_9_halloween { background-image: url(spritesmith-main-2.png); background-position: -1547px -1274px; width: 90px; height: 90px; } -.customize-option.hair_base_9_pgreen { +.customize-option.hair_base_9_halloween { background-image: url(spritesmith-main-2.png); background-position: -1572px -1289px; width: 60px; height: 60px; } -.hair_base_9_pgreen2 { +.hair_base_9_holly { background-image: url(spritesmith-main-2.png); background-position: -1547px -1365px; width: 90px; height: 90px; } -.customize-option.hair_base_9_pgreen2 { +.customize-option.hair_base_9_holly { background-image: url(spritesmith-main-2.png); background-position: -1572px -1380px; width: 60px; height: 60px; } -.hair_base_9_porange { +.hair_base_9_hollygreen { background-image: url(spritesmith-main-2.png); background-position: -1547px -1456px; width: 90px; height: 90px; } -.customize-option.hair_base_9_porange { +.customize-option.hair_base_9_hollygreen { background-image: url(spritesmith-main-2.png); background-position: -1572px -1471px; width: 60px; height: 60px; } -.hair_base_9_porange2 { +.hair_base_9_midnight { background-image: url(spritesmith-main-2.png); background-position: 0px -1547px; width: 90px; height: 90px; } -.customize-option.hair_base_9_porange2 { +.customize-option.hair_base_9_midnight { background-image: url(spritesmith-main-2.png); background-position: -25px -1562px; width: 60px; height: 60px; } -.hair_base_9_ppink { +.hair_base_9_pblue { background-image: url(spritesmith-main-2.png); background-position: -91px -1547px; width: 90px; height: 90px; } -.customize-option.hair_base_9_ppink { +.customize-option.hair_base_9_pblue { background-image: url(spritesmith-main-2.png); background-position: -116px -1562px; width: 60px; height: 60px; } -.hair_base_9_ppink2 { +.hair_base_9_pblue2 { background-image: url(spritesmith-main-2.png); background-position: -182px -1547px; width: 90px; height: 90px; } -.customize-option.hair_base_9_ppink2 { +.customize-option.hair_base_9_pblue2 { background-image: url(spritesmith-main-2.png); background-position: -207px -1562px; width: 60px; height: 60px; } -.hair_base_9_ppurple { +.hair_base_9_peppermint { background-image: url(spritesmith-main-2.png); background-position: -273px -1547px; width: 90px; height: 90px; } -.customize-option.hair_base_9_ppurple { +.customize-option.hair_base_9_peppermint { background-image: url(spritesmith-main-2.png); background-position: -298px -1562px; width: 60px; height: 60px; } -.hair_base_9_ppurple2 { +.hair_base_9_pgreen { background-image: url(spritesmith-main-2.png); background-position: -364px -1547px; width: 90px; height: 90px; } -.customize-option.hair_base_9_ppurple2 { +.customize-option.hair_base_9_pgreen { background-image: url(spritesmith-main-2.png); background-position: -389px -1562px; width: 60px; height: 60px; } -.hair_base_9_pumpkin { +.hair_base_9_pgreen2 { background-image: url(spritesmith-main-2.png); background-position: -455px -1547px; width: 90px; height: 90px; } -.customize-option.hair_base_9_pumpkin { +.customize-option.hair_base_9_pgreen2 { background-image: url(spritesmith-main-2.png); background-position: -480px -1562px; width: 60px; height: 60px; } -.hair_base_9_purple { +.hair_base_9_porange { background-image: url(spritesmith-main-2.png); background-position: -546px -1547px; width: 90px; height: 90px; } -.customize-option.hair_base_9_purple { +.customize-option.hair_base_9_porange { background-image: url(spritesmith-main-2.png); background-position: -571px -1562px; width: 60px; height: 60px; } -.hair_base_9_pyellow { +.hair_base_9_porange2 { background-image: url(spritesmith-main-2.png); background-position: -637px -1547px; width: 90px; height: 90px; } -.customize-option.hair_base_9_pyellow { +.customize-option.hair_base_9_porange2 { background-image: url(spritesmith-main-2.png); background-position: -662px -1562px; width: 60px; height: 60px; } -.hair_base_9_pyellow2 { +.hair_base_9_ppink { background-image: url(spritesmith-main-2.png); background-position: -728px -1547px; width: 90px; height: 90px; } -.customize-option.hair_base_9_pyellow2 { +.customize-option.hair_base_9_ppink { background-image: url(spritesmith-main-2.png); background-position: -753px -1562px; width: 60px; height: 60px; } -.hair_base_9_rainbow { +.hair_base_9_ppink2 { background-image: url(spritesmith-main-2.png); background-position: -819px -1547px; width: 90px; height: 90px; } -.customize-option.hair_base_9_rainbow { +.customize-option.hair_base_9_ppink2 { background-image: url(spritesmith-main-2.png); background-position: -844px -1562px; width: 60px; height: 60px; } -.hair_base_9_red { +.hair_base_9_ppurple { background-image: url(spritesmith-main-2.png); background-position: -910px -1547px; width: 90px; height: 90px; } -.customize-option.hair_base_9_red { +.customize-option.hair_base_9_ppurple { background-image: url(spritesmith-main-2.png); background-position: -935px -1562px; width: 60px; height: 60px; } -.hair_base_9_snowy { +.hair_base_9_ppurple2 { background-image: url(spritesmith-main-2.png); background-position: -1001px -1547px; width: 90px; height: 90px; } -.customize-option.hair_base_9_snowy { +.customize-option.hair_base_9_ppurple2 { background-image: url(spritesmith-main-2.png); background-position: -1026px -1562px; width: 60px; height: 60px; } -.hair_base_9_white { +.hair_base_9_pumpkin { background-image: url(spritesmith-main-2.png); background-position: -1092px -1547px; width: 90px; height: 90px; } -.customize-option.hair_base_9_white { +.customize-option.hair_base_9_pumpkin { background-image: url(spritesmith-main-2.png); background-position: -1117px -1562px; width: 60px; height: 60px; } -.hair_base_9_winternight { +.hair_base_9_purple { background-image: url(spritesmith-main-2.png); background-position: -1183px -1547px; width: 90px; height: 90px; } -.customize-option.hair_base_9_winternight { +.customize-option.hair_base_9_purple { background-image: url(spritesmith-main-2.png); background-position: -1208px -1562px; width: 60px; height: 60px; } -.hair_base_9_winterstar { +.hair_base_9_pyellow { background-image: url(spritesmith-main-2.png); background-position: -1274px -1547px; width: 90px; height: 90px; } -.customize-option.hair_base_9_winterstar { +.customize-option.hair_base_9_pyellow { background-image: url(spritesmith-main-2.png); background-position: -1299px -1562px; width: 60px; height: 60px; } -.hair_base_9_yellow { +.hair_base_9_pyellow2 { background-image: url(spritesmith-main-2.png); background-position: -1365px -1547px; width: 90px; height: 90px; } -.customize-option.hair_base_9_yellow { +.customize-option.hair_base_9_pyellow2 { background-image: url(spritesmith-main-2.png); background-position: -1390px -1562px; width: 60px; height: 60px; } -.hair_base_9_zombie { +.hair_base_9_rainbow { background-image: url(spritesmith-main-2.png); background-position: -1456px -1547px; width: 90px; height: 90px; } -.customize-option.hair_base_9_zombie { +.customize-option.hair_base_9_rainbow { background-image: url(spritesmith-main-2.png); background-position: -1481px -1562px; width: 60px; height: 60px; } -.hair_beard_1_pblue2 { +.hair_base_9_red { background-image: url(spritesmith-main-2.png); background-position: -1547px -1547px; width: 90px; height: 90px; } -.customize-option.hair_beard_1_pblue2 { +.customize-option.hair_base_9_red { background-image: url(spritesmith-main-2.png); background-position: -1572px -1562px; width: 60px; height: 60px; } -.hair_beard_1_pgreen2 { +.hair_base_9_snowy { background-image: url(spritesmith-main-2.png); background-position: -1638px 0px; width: 90px; height: 90px; } -.customize-option.hair_beard_1_pgreen2 { +.customize-option.hair_base_9_snowy { background-image: url(spritesmith-main-2.png); background-position: -1663px -15px; width: 60px; height: 60px; } -.hair_beard_1_porange2 { +.hair_base_9_white { background-image: url(spritesmith-main-2.png); background-position: -1638px -91px; width: 90px; height: 90px; } -.customize-option.hair_beard_1_porange2 { +.customize-option.hair_base_9_white { background-image: url(spritesmith-main-2.png); background-position: -1663px -106px; width: 60px; height: 60px; } -.hair_beard_1_ppink2 { +.hair_base_9_winternight { background-image: url(spritesmith-main-2.png); background-position: -1638px -182px; width: 90px; height: 90px; } -.customize-option.hair_beard_1_ppink2 { +.customize-option.hair_base_9_winternight { background-image: url(spritesmith-main-2.png); background-position: -1663px -197px; width: 60px; height: 60px; } -.hair_beard_1_ppurple2 { +.hair_base_9_winterstar { background-image: url(spritesmith-main-2.png); background-position: -1638px -273px; width: 90px; height: 90px; } -.customize-option.hair_beard_1_ppurple2 { +.customize-option.hair_base_9_winterstar { background-image: url(spritesmith-main-2.png); background-position: -1663px -288px; width: 60px; height: 60px; } -.hair_beard_1_pyellow2 { +.hair_base_9_yellow { background-image: url(spritesmith-main-2.png); background-position: -1638px -364px; width: 90px; height: 90px; } -.customize-option.hair_beard_1_pyellow2 { +.customize-option.hair_base_9_yellow { background-image: url(spritesmith-main-2.png); background-position: -1663px -379px; width: 60px; diff --git a/common/dist/sprites/spritesmith-main-2.png b/common/dist/sprites/spritesmith-main-2.png index 2fac58d092..04cab26d3c 100644 Binary files a/common/dist/sprites/spritesmith-main-2.png and b/common/dist/sprites/spritesmith-main-2.png differ diff --git a/common/dist/sprites/spritesmith-main-3.css b/common/dist/sprites/spritesmith-main-3.css index 45c472d4ca..08aebde70a 100644 --- a/common/dist/sprites/spritesmith-main-3.css +++ b/common/dist/sprites/spritesmith-main-3.css @@ -1,2778 +1,2916 @@ -.hair_beard_2_pblue2 { - background-image: url(spritesmith-main-3.png); - background-position: -454px -273px; - width: 90px; - height: 90px; -} -.customize-option.hair_beard_2_pblue2 { - background-image: url(spritesmith-main-3.png); - background-position: -479px -288px; - width: 60px; - height: 60px; -} -.hair_beard_2_pgreen2 { - background-image: url(spritesmith-main-3.png); - background-position: -1276px -728px; - width: 90px; - height: 90px; -} -.customize-option.hair_beard_2_pgreen2 { - background-image: url(spritesmith-main-3.png); - background-position: -1301px -743px; - width: 60px; - height: 60px; -} -.hair_beard_2_porange2 { +.hair_base_9_zombie { background-image: url(spritesmith-main-3.png); background-position: -1276px -1092px; width: 90px; height: 90px; } -.customize-option.hair_beard_2_porange2 { +.customize-option.hair_base_9_zombie { background-image: url(spritesmith-main-3.png); background-position: -1301px -1107px; width: 60px; height: 60px; } -.hair_beard_2_ppink2 { +.hair_beard_1_pblue2 { + background-image: url(spritesmith-main-3.png); + background-position: -1276px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_1_pblue2 { + background-image: url(spritesmith-main-3.png); + background-position: -1301px -743px; + width: 60px; + height: 60px; +} +.hair_beard_1_pgreen2 { + background-image: url(spritesmith-main-3.png); + background-position: -1276px -1183px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_1_pgreen2 { + background-image: url(spritesmith-main-3.png); + background-position: -1301px -1198px; + width: 60px; + height: 60px; +} +.hair_beard_1_porange2 { + background-image: url(spritesmith-main-3.png); + background-position: -91px -1274px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_1_porange2 { + background-image: url(spritesmith-main-3.png); + background-position: -116px -1289px; + width: 60px; + height: 60px; +} +.hair_beard_1_ppink2 { background-image: url(spritesmith-main-3.png); background-position: -182px -1274px; width: 90px; height: 90px; } -.customize-option.hair_beard_2_ppink2 { +.customize-option.hair_beard_1_ppink2 { background-image: url(spritesmith-main-3.png); background-position: -207px -1289px; width: 60px; height: 60px; } -.hair_beard_2_ppurple2 { - background-image: url(spritesmith-main-3.png); - background-position: -273px -1274px; - width: 90px; - height: 90px; -} -.customize-option.hair_beard_2_ppurple2 { - background-image: url(spritesmith-main-3.png); - background-position: -298px -1289px; - width: 60px; - height: 60px; -} -.hair_beard_2_pyellow2 { - background-image: url(spritesmith-main-3.png); - background-position: -455px -1274px; - width: 90px; - height: 90px; -} -.customize-option.hair_beard_2_pyellow2 { - background-image: url(spritesmith-main-3.png); - background-position: -480px -1289px; - width: 60px; - height: 60px; -} -.hair_beard_3_pblue2 { +.hair_beard_1_ppurple2 { background-image: url(spritesmith-main-3.png); background-position: -546px -1274px; width: 90px; height: 90px; } -.customize-option.hair_beard_3_pblue2 { +.customize-option.hair_beard_1_ppurple2 { background-image: url(spritesmith-main-3.png); background-position: -571px -1289px; width: 60px; height: 60px; } -.hair_beard_3_pgreen2 { +.hair_beard_1_pyellow2 { background-image: url(spritesmith-main-3.png); - background-position: -910px -1274px; + background-position: -637px -1274px; width: 90px; height: 90px; } -.customize-option.hair_beard_3_pgreen2 { +.customize-option.hair_beard_1_pyellow2 { background-image: url(spritesmith-main-3.png); - background-position: -935px -1289px; + background-position: -662px -1289px; width: 60px; height: 60px; } -.hair_beard_3_porange2 { +.hair_beard_2_pblue2 { background-image: url(spritesmith-main-3.png); - background-position: -1001px -1274px; + background-position: -819px -1274px; width: 90px; height: 90px; } -.customize-option.hair_beard_3_porange2 { +.customize-option.hair_beard_2_pblue2 { background-image: url(spritesmith-main-3.png); - background-position: -1026px -1289px; + background-position: -844px -1289px; width: 60px; height: 60px; } -.hair_beard_3_ppink2 { +.hair_beard_2_pgreen2 { + background-image: url(spritesmith-main-3.png); + background-position: -1092px -1274px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_2_pgreen2 { + background-image: url(spritesmith-main-3.png); + background-position: -1117px -1289px; + width: 60px; + height: 60px; +} +.hair_beard_2_porange2 { background-image: url(spritesmith-main-3.png); background-position: -1183px -1274px; width: 90px; height: 90px; } -.customize-option.hair_beard_3_ppink2 { +.customize-option.hair_beard_2_porange2 { background-image: url(spritesmith-main-3.png); background-position: -1208px -1289px; width: 60px; height: 60px; } -.hair_beard_3_ppurple2 { +.hair_beard_2_ppink2 { + background-image: url(spritesmith-main-3.png); + background-position: -1367px 0px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_2_ppink2 { + background-image: url(spritesmith-main-3.png); + background-position: -1392px -15px; + width: 60px; + height: 60px; +} +.hair_beard_2_ppurple2 { background-image: url(spritesmith-main-3.png); background-position: -1367px -91px; width: 90px; height: 90px; } -.customize-option.hair_beard_3_ppurple2 { +.customize-option.hair_beard_2_ppurple2 { background-image: url(spritesmith-main-3.png); background-position: -1392px -106px; width: 60px; height: 60px; } -.hair_beard_3_pyellow2 { - background-image: url(spritesmith-main-3.png); - background-position: -1367px -182px; - width: 90px; - height: 90px; -} -.customize-option.hair_beard_3_pyellow2 { - background-image: url(spritesmith-main-3.png); - background-position: -1392px -197px; - width: 60px; - height: 60px; -} -.hair_mustache_1_pblue2 { - background-image: url(spritesmith-main-3.png); - background-position: -1367px -364px; - width: 90px; - height: 90px; -} -.customize-option.hair_mustache_1_pblue2 { - background-image: url(spritesmith-main-3.png); - background-position: -1392px -379px; - width: 60px; - height: 60px; -} -.hair_mustache_1_pgreen2 { +.hair_beard_2_pyellow2 { background-image: url(spritesmith-main-3.png); background-position: -1367px -455px; width: 90px; height: 90px; } -.customize-option.hair_mustache_1_pgreen2 { +.customize-option.hair_beard_2_pyellow2 { background-image: url(spritesmith-main-3.png); background-position: -1392px -470px; width: 60px; height: 60px; } -.hair_mustache_1_porange2 { +.hair_beard_3_pblue2 { background-image: url(spritesmith-main-3.png); - background-position: 0px -1456px; + background-position: -1367px -546px; width: 90px; height: 90px; } -.customize-option.hair_mustache_1_porange2 { +.customize-option.hair_beard_3_pblue2 { background-image: url(spritesmith-main-3.png); - background-position: -25px -1471px; + background-position: -1392px -561px; width: 60px; height: 60px; } -.hair_mustache_1_ppink2 { +.hair_beard_3_pgreen2 { background-image: url(spritesmith-main-3.png); - background-position: -91px -1456px; + background-position: -1367px -728px; width: 90px; height: 90px; } -.customize-option.hair_mustache_1_ppink2 { +.customize-option.hair_beard_3_pgreen2 { background-image: url(spritesmith-main-3.png); - background-position: -116px -1471px; + background-position: -1392px -743px; width: 60px; height: 60px; } -.hair_mustache_1_ppurple2 { - background-image: url(spritesmith-main-3.png); - background-position: -273px -1456px; - width: 90px; - height: 90px; -} -.customize-option.hair_mustache_1_ppurple2 { - background-image: url(spritesmith-main-3.png); - background-position: -298px -1471px; - width: 60px; - height: 60px; -} -.hair_mustache_1_pyellow2 { - background-image: url(spritesmith-main-3.png); - background-position: -364px -1456px; - width: 90px; - height: 90px; -} -.customize-option.hair_mustache_1_pyellow2 { - background-image: url(spritesmith-main-3.png); - background-position: -389px -1471px; - width: 60px; - height: 60px; -} -.hair_mustache_2_pblue2 { - background-image: url(spritesmith-main-3.png); - background-position: -728px -1456px; - width: 90px; - height: 90px; -} -.customize-option.hair_mustache_2_pblue2 { - background-image: url(spritesmith-main-3.png); - background-position: -753px -1471px; - width: 60px; - height: 60px; -} -.hair_mustache_2_pgreen2 { - background-image: url(spritesmith-main-3.png); - background-position: -819px -1456px; - width: 90px; - height: 90px; -} -.customize-option.hair_mustache_2_pgreen2 { - background-image: url(spritesmith-main-3.png); - background-position: -844px -1471px; - width: 60px; - height: 60px; -} -.hair_mustache_2_porange2 { - background-image: url(spritesmith-main-3.png); - background-position: 0px -364px; - width: 90px; - height: 90px; -} -.customize-option.hair_mustache_2_porange2 { - background-image: url(spritesmith-main-3.png); - background-position: -25px -379px; - width: 60px; - height: 60px; -} -.hair_mustache_2_ppink2 { - background-image: url(spritesmith-main-3.png); - background-position: -91px -364px; - width: 90px; - height: 90px; -} -.customize-option.hair_mustache_2_ppink2 { - background-image: url(spritesmith-main-3.png); - background-position: -116px -379px; - width: 60px; - height: 60px; -} -.hair_mustache_2_ppurple2 { - background-image: url(spritesmith-main-3.png); - background-position: -182px -364px; - width: 90px; - height: 90px; -} -.customize-option.hair_mustache_2_ppurple2 { - background-image: url(spritesmith-main-3.png); - background-position: -207px -379px; - width: 60px; - height: 60px; -} -.hair_mustache_2_pyellow2 { - background-image: url(spritesmith-main-3.png); - background-position: -273px -364px; - width: 90px; - height: 90px; -} -.customize-option.hair_mustache_2_pyellow2 { - background-image: url(spritesmith-main-3.png); - background-position: -298px -379px; - width: 60px; - height: 60px; -} -.broad_shirt_black { - background-image: url(spritesmith-main-3.png); - background-position: -364px -364px; - width: 90px; - height: 90px; -} -.customize-option.broad_shirt_black { - background-image: url(spritesmith-main-3.png); - background-position: -389px -394px; - width: 60px; - height: 60px; -} -.broad_shirt_blue { - background-image: url(spritesmith-main-3.png); - background-position: -455px -364px; - width: 90px; - height: 90px; -} -.customize-option.broad_shirt_blue { - background-image: url(spritesmith-main-3.png); - background-position: -480px -394px; - width: 60px; - height: 60px; -} -.broad_shirt_convict { - background-image: url(spritesmith-main-3.png); - background-position: 0px -455px; - width: 90px; - height: 90px; -} -.customize-option.broad_shirt_convict { - background-image: url(spritesmith-main-3.png); - background-position: -25px -485px; - width: 60px; - height: 60px; -} -.broad_shirt_cross { - background-image: url(spritesmith-main-3.png); - background-position: -91px -455px; - width: 90px; - height: 90px; -} -.customize-option.broad_shirt_cross { - background-image: url(spritesmith-main-3.png); - background-position: -116px -485px; - width: 60px; - height: 60px; -} -.broad_shirt_fire { - background-image: url(spritesmith-main-3.png); - background-position: -182px -455px; - width: 90px; - height: 90px; -} -.customize-option.broad_shirt_fire { - background-image: url(spritesmith-main-3.png); - background-position: -207px -485px; - width: 60px; - height: 60px; -} -.broad_shirt_green { - background-image: url(spritesmith-main-3.png); - background-position: -273px -455px; - width: 90px; - height: 90px; -} -.customize-option.broad_shirt_green { - background-image: url(spritesmith-main-3.png); - background-position: -298px -485px; - width: 60px; - height: 60px; -} -.broad_shirt_horizon { - background-image: url(spritesmith-main-3.png); - background-position: -364px -455px; - width: 90px; - height: 90px; -} -.customize-option.broad_shirt_horizon { - background-image: url(spritesmith-main-3.png); - background-position: -389px -485px; - width: 60px; - height: 60px; -} -.broad_shirt_ocean { - background-image: url(spritesmith-main-3.png); - background-position: -455px -455px; - width: 90px; - height: 90px; -} -.customize-option.broad_shirt_ocean { - background-image: url(spritesmith-main-3.png); - background-position: -480px -485px; - width: 60px; - height: 60px; -} -.broad_shirt_pink { - background-image: url(spritesmith-main-3.png); - background-position: -548px 0px; - width: 90px; - height: 90px; -} -.customize-option.broad_shirt_pink { - background-image: url(spritesmith-main-3.png); - background-position: -573px -30px; - width: 60px; - height: 60px; -} -.broad_shirt_purple { - background-image: url(spritesmith-main-3.png); - background-position: -548px -91px; - width: 90px; - height: 90px; -} -.customize-option.broad_shirt_purple { - background-image: url(spritesmith-main-3.png); - background-position: -573px -121px; - width: 60px; - height: 60px; -} -.broad_shirt_rainbow { - background-image: url(spritesmith-main-3.png); - background-position: -548px -182px; - width: 90px; - height: 90px; -} -.customize-option.broad_shirt_rainbow { - background-image: url(spritesmith-main-3.png); - background-position: -573px -212px; - width: 60px; - height: 60px; -} -.broad_shirt_redblue { - background-image: url(spritesmith-main-3.png); - background-position: -548px -273px; - width: 90px; - height: 90px; -} -.customize-option.broad_shirt_redblue { - background-image: url(spritesmith-main-3.png); - background-position: -573px -303px; - width: 60px; - height: 60px; -} -.broad_shirt_thunder { - background-image: url(spritesmith-main-3.png); - background-position: -548px -364px; - width: 90px; - height: 90px; -} -.customize-option.broad_shirt_thunder { - background-image: url(spritesmith-main-3.png); - background-position: -573px -394px; - width: 60px; - height: 60px; -} -.broad_shirt_tropical { - background-image: url(spritesmith-main-3.png); - background-position: -548px -455px; - width: 90px; - height: 90px; -} -.customize-option.broad_shirt_tropical { - background-image: url(spritesmith-main-3.png); - background-position: -573px -485px; - width: 60px; - height: 60px; -} -.broad_shirt_white { - background-image: url(spritesmith-main-3.png); - background-position: 0px -546px; - width: 90px; - height: 90px; -} -.customize-option.broad_shirt_white { - background-image: url(spritesmith-main-3.png); - background-position: -25px -576px; - width: 60px; - height: 60px; -} -.broad_shirt_yellow { - background-image: url(spritesmith-main-3.png); - background-position: -91px -546px; - width: 90px; - height: 90px; -} -.customize-option.broad_shirt_yellow { - background-image: url(spritesmith-main-3.png); - background-position: -116px -576px; - width: 60px; - height: 60px; -} -.broad_shirt_zombie { - background-image: url(spritesmith-main-3.png); - background-position: -182px -546px; - width: 90px; - height: 90px; -} -.customize-option.broad_shirt_zombie { - background-image: url(spritesmith-main-3.png); - background-position: -207px -576px; - width: 60px; - height: 60px; -} -.slim_shirt_black { - background-image: url(spritesmith-main-3.png); - background-position: -273px -546px; - width: 90px; - height: 90px; -} -.customize-option.slim_shirt_black { - background-image: url(spritesmith-main-3.png); - background-position: -298px -576px; - width: 60px; - height: 60px; -} -.slim_shirt_blue { - background-image: url(spritesmith-main-3.png); - background-position: -364px -546px; - width: 90px; - height: 90px; -} -.customize-option.slim_shirt_blue { - background-image: url(spritesmith-main-3.png); - background-position: -389px -576px; - width: 60px; - height: 60px; -} -.slim_shirt_convict { - background-image: url(spritesmith-main-3.png); - background-position: -455px -546px; - width: 90px; - height: 90px; -} -.customize-option.slim_shirt_convict { - background-image: url(spritesmith-main-3.png); - background-position: -480px -576px; - width: 60px; - height: 60px; -} -.slim_shirt_cross { - background-image: url(spritesmith-main-3.png); - background-position: -546px -546px; - width: 90px; - height: 90px; -} -.customize-option.slim_shirt_cross { - background-image: url(spritesmith-main-3.png); - background-position: -571px -576px; - width: 60px; - height: 60px; -} -.slim_shirt_fire { - background-image: url(spritesmith-main-3.png); - background-position: -639px 0px; - width: 90px; - height: 90px; -} -.customize-option.slim_shirt_fire { - background-image: url(spritesmith-main-3.png); - background-position: -664px -30px; - width: 60px; - height: 60px; -} -.slim_shirt_green { - background-image: url(spritesmith-main-3.png); - background-position: -639px -91px; - width: 90px; - height: 90px; -} -.customize-option.slim_shirt_green { - background-image: url(spritesmith-main-3.png); - background-position: -664px -121px; - width: 60px; - height: 60px; -} -.slim_shirt_horizon { - background-image: url(spritesmith-main-3.png); - background-position: -639px -182px; - width: 90px; - height: 90px; -} -.customize-option.slim_shirt_horizon { - background-image: url(spritesmith-main-3.png); - background-position: -664px -212px; - width: 60px; - height: 60px; -} -.slim_shirt_ocean { - background-image: url(spritesmith-main-3.png); - background-position: -639px -273px; - width: 90px; - height: 90px; -} -.customize-option.slim_shirt_ocean { - background-image: url(spritesmith-main-3.png); - background-position: -664px -303px; - width: 60px; - height: 60px; -} -.slim_shirt_pink { - background-image: url(spritesmith-main-3.png); - background-position: -639px -364px; - width: 90px; - height: 90px; -} -.customize-option.slim_shirt_pink { - background-image: url(spritesmith-main-3.png); - background-position: -664px -394px; - width: 60px; - height: 60px; -} -.slim_shirt_purple { - background-image: url(spritesmith-main-3.png); - background-position: -639px -455px; - width: 90px; - height: 90px; -} -.customize-option.slim_shirt_purple { - background-image: url(spritesmith-main-3.png); - background-position: -664px -485px; - width: 60px; - height: 60px; -} -.slim_shirt_rainbow { - background-image: url(spritesmith-main-3.png); - background-position: -639px -546px; - width: 90px; - height: 90px; -} -.customize-option.slim_shirt_rainbow { - background-image: url(spritesmith-main-3.png); - background-position: -664px -576px; - width: 60px; - height: 60px; -} -.slim_shirt_redblue { - background-image: url(spritesmith-main-3.png); - background-position: 0px -637px; - width: 90px; - height: 90px; -} -.customize-option.slim_shirt_redblue { - background-image: url(spritesmith-main-3.png); - background-position: -25px -667px; - width: 60px; - height: 60px; -} -.slim_shirt_thunder { - background-image: url(spritesmith-main-3.png); - background-position: -91px -637px; - width: 90px; - height: 90px; -} -.customize-option.slim_shirt_thunder { - background-image: url(spritesmith-main-3.png); - background-position: -116px -667px; - width: 60px; - height: 60px; -} -.slim_shirt_tropical { - background-image: url(spritesmith-main-3.png); - background-position: -182px -637px; - width: 90px; - height: 90px; -} -.customize-option.slim_shirt_tropical { - background-image: url(spritesmith-main-3.png); - background-position: -207px -667px; - width: 60px; - height: 60px; -} -.slim_shirt_white { - background-image: url(spritesmith-main-3.png); - background-position: -273px -637px; - width: 90px; - height: 90px; -} -.customize-option.slim_shirt_white { - background-image: url(spritesmith-main-3.png); - background-position: -298px -667px; - width: 60px; - height: 60px; -} -.slim_shirt_yellow { - background-image: url(spritesmith-main-3.png); - background-position: -364px -637px; - width: 90px; - height: 90px; -} -.customize-option.slim_shirt_yellow { - background-image: url(spritesmith-main-3.png); - background-position: -389px -667px; - width: 60px; - height: 60px; -} -.slim_shirt_zombie { - background-image: url(spritesmith-main-3.png); - background-position: -455px -637px; - width: 90px; - height: 90px; -} -.customize-option.slim_shirt_zombie { - background-image: url(spritesmith-main-3.png); - background-position: -480px -667px; - width: 60px; - height: 60px; -} -.skin_0ff591 { - background-image: url(spritesmith-main-3.png); - background-position: -546px -637px; - width: 90px; - height: 90px; -} -.customize-option.skin_0ff591 { - background-image: url(spritesmith-main-3.png); - background-position: -571px -652px; - width: 60px; - height: 60px; -} -.skin_0ff591_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -637px -637px; - width: 90px; - height: 90px; -} -.customize-option.skin_0ff591_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -662px -652px; - width: 60px; - height: 60px; -} -.skin_2b43f6 { - background-image: url(spritesmith-main-3.png); - background-position: -730px 0px; - width: 90px; - height: 90px; -} -.customize-option.skin_2b43f6 { - background-image: url(spritesmith-main-3.png); - background-position: -755px -15px; - width: 60px; - height: 60px; -} -.skin_2b43f6_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -730px -91px; - width: 90px; - height: 90px; -} -.customize-option.skin_2b43f6_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -755px -106px; - width: 60px; - height: 60px; -} -.skin_6bd049 { - background-image: url(spritesmith-main-3.png); - background-position: -730px -182px; - width: 90px; - height: 90px; -} -.customize-option.skin_6bd049 { - background-image: url(spritesmith-main-3.png); - background-position: -755px -197px; - width: 60px; - height: 60px; -} -.skin_6bd049_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -730px -273px; - width: 90px; - height: 90px; -} -.customize-option.skin_6bd049_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -755px -288px; - width: 60px; - height: 60px; -} -.skin_800ed0 { - background-image: url(spritesmith-main-3.png); - background-position: -730px -364px; - width: 90px; - height: 90px; -} -.customize-option.skin_800ed0 { - background-image: url(spritesmith-main-3.png); - background-position: -755px -379px; - width: 60px; - height: 60px; -} -.skin_800ed0_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -730px -455px; - width: 90px; - height: 90px; -} -.customize-option.skin_800ed0_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -755px -470px; - width: 60px; - height: 60px; -} -.skin_915533 { - background-image: url(spritesmith-main-3.png); - background-position: -730px -546px; - width: 90px; - height: 90px; -} -.customize-option.skin_915533 { - background-image: url(spritesmith-main-3.png); - background-position: -755px -561px; - width: 60px; - height: 60px; -} -.skin_915533_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -730px -637px; - width: 90px; - height: 90px; -} -.customize-option.skin_915533_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -755px -652px; - width: 60px; - height: 60px; -} -.skin_98461a { - background-image: url(spritesmith-main-3.png); - background-position: 0px -728px; - width: 90px; - height: 90px; -} -.customize-option.skin_98461a { - background-image: url(spritesmith-main-3.png); - background-position: -25px -743px; - width: 60px; - height: 60px; -} -.skin_98461a_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -91px -728px; - width: 90px; - height: 90px; -} -.customize-option.skin_98461a_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -116px -743px; - width: 60px; - height: 60px; -} -.skin_bear { - background-image: url(spritesmith-main-3.png); - background-position: -182px -728px; - width: 90px; - height: 90px; -} -.customize-option.skin_bear { - background-image: url(spritesmith-main-3.png); - background-position: -207px -743px; - width: 60px; - height: 60px; -} -.skin_bear_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -273px -728px; - width: 90px; - height: 90px; -} -.customize-option.skin_bear_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -298px -743px; - width: 60px; - height: 60px; -} -.skin_c06534 { - background-image: url(spritesmith-main-3.png); - background-position: -364px -728px; - width: 90px; - height: 90px; -} -.customize-option.skin_c06534 { - background-image: url(spritesmith-main-3.png); - background-position: -389px -743px; - width: 60px; - height: 60px; -} -.skin_c06534_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -455px -728px; - width: 90px; - height: 90px; -} -.customize-option.skin_c06534_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -480px -743px; - width: 60px; - height: 60px; -} -.skin_c3e1dc { - background-image: url(spritesmith-main-3.png); - background-position: -546px -728px; - width: 90px; - height: 90px; -} -.customize-option.skin_c3e1dc { - background-image: url(spritesmith-main-3.png); - background-position: -571px -743px; - width: 60px; - height: 60px; -} -.skin_c3e1dc_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -637px -728px; - width: 90px; - height: 90px; -} -.customize-option.skin_c3e1dc_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -662px -743px; - width: 60px; - height: 60px; -} -.skin_cactus { - background-image: url(spritesmith-main-3.png); - background-position: -728px -728px; - width: 90px; - height: 90px; -} -.customize-option.skin_cactus { - background-image: url(spritesmith-main-3.png); - background-position: -753px -743px; - width: 60px; - height: 60px; -} -.skin_cactus_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -821px 0px; - width: 90px; - height: 90px; -} -.customize-option.skin_cactus_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -846px -15px; - width: 60px; - height: 60px; -} -.skin_candycorn { - background-image: url(spritesmith-main-3.png); - background-position: -821px -91px; - width: 90px; - height: 90px; -} -.customize-option.skin_candycorn { - background-image: url(spritesmith-main-3.png); - background-position: -846px -106px; - width: 60px; - height: 60px; -} -.skin_candycorn_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -821px -182px; - width: 90px; - height: 90px; -} -.customize-option.skin_candycorn_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -846px -197px; - width: 60px; - height: 60px; -} -.skin_clownfish { - background-image: url(spritesmith-main-3.png); - background-position: -821px -273px; - width: 90px; - height: 90px; -} -.customize-option.skin_clownfish { - background-image: url(spritesmith-main-3.png); - background-position: -846px -288px; - width: 60px; - height: 60px; -} -.skin_clownfish_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -821px -364px; - width: 90px; - height: 90px; -} -.customize-option.skin_clownfish_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -846px -379px; - width: 60px; - height: 60px; -} -.skin_d7a9f7 { - background-image: url(spritesmith-main-3.png); - background-position: -821px -455px; - width: 90px; - height: 90px; -} -.customize-option.skin_d7a9f7 { - background-image: url(spritesmith-main-3.png); - background-position: -846px -470px; - width: 60px; - height: 60px; -} -.skin_d7a9f7_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -821px -546px; - width: 90px; - height: 90px; -} -.customize-option.skin_d7a9f7_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -846px -561px; - width: 60px; - height: 60px; -} -.skin_ddc994 { - background-image: url(spritesmith-main-3.png); - background-position: -821px -637px; - width: 90px; - height: 90px; -} -.customize-option.skin_ddc994 { - background-image: url(spritesmith-main-3.png); - background-position: -846px -652px; - width: 60px; - height: 60px; -} -.skin_ddc994_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -821px -728px; - width: 90px; - height: 90px; -} -.customize-option.skin_ddc994_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -846px -743px; - width: 60px; - height: 60px; -} -.skin_deepocean { - background-image: url(spritesmith-main-3.png); - background-position: 0px -819px; - width: 90px; - height: 90px; -} -.customize-option.skin_deepocean { - background-image: url(spritesmith-main-3.png); - background-position: -25px -834px; - width: 60px; - height: 60px; -} -.skin_deepocean_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -91px -819px; - width: 90px; - height: 90px; -} -.customize-option.skin_deepocean_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -116px -834px; - width: 60px; - height: 60px; -} -.skin_ea8349 { - background-image: url(spritesmith-main-3.png); - background-position: -182px -819px; - width: 90px; - height: 90px; -} -.customize-option.skin_ea8349 { - background-image: url(spritesmith-main-3.png); - background-position: -207px -834px; - width: 60px; - height: 60px; -} -.skin_ea8349_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -273px -819px; - width: 90px; - height: 90px; -} -.customize-option.skin_ea8349_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -298px -834px; - width: 60px; - height: 60px; -} -.skin_eb052b { - background-image: url(spritesmith-main-3.png); - background-position: -364px -819px; - width: 90px; - height: 90px; -} -.customize-option.skin_eb052b { - background-image: url(spritesmith-main-3.png); - background-position: -389px -834px; - width: 60px; - height: 60px; -} -.skin_eb052b_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -455px -819px; - width: 90px; - height: 90px; -} -.customize-option.skin_eb052b_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -480px -834px; - width: 60px; - height: 60px; -} -.skin_f5a76e { - background-image: url(spritesmith-main-3.png); - background-position: -546px -819px; - width: 90px; - height: 90px; -} -.customize-option.skin_f5a76e { - background-image: url(spritesmith-main-3.png); - background-position: -571px -834px; - width: 60px; - height: 60px; -} -.skin_f5a76e_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -637px -819px; - width: 90px; - height: 90px; -} -.customize-option.skin_f5a76e_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -662px -834px; - width: 60px; - height: 60px; -} -.skin_f5d70f { - background-image: url(spritesmith-main-3.png); - background-position: -728px -819px; - width: 90px; - height: 90px; -} -.customize-option.skin_f5d70f { - background-image: url(spritesmith-main-3.png); - background-position: -753px -834px; - width: 60px; - height: 60px; -} -.skin_f5d70f_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -819px -819px; - width: 90px; - height: 90px; -} -.customize-option.skin_f5d70f_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -844px -834px; - width: 60px; - height: 60px; -} -.skin_f69922 { - background-image: url(spritesmith-main-3.png); - background-position: -912px 0px; - width: 90px; - height: 90px; -} -.customize-option.skin_f69922 { - background-image: url(spritesmith-main-3.png); - background-position: -937px -15px; - width: 60px; - height: 60px; -} -.skin_f69922_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -912px -91px; - width: 90px; - height: 90px; -} -.customize-option.skin_f69922_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -937px -106px; - width: 60px; - height: 60px; -} -.skin_fox { - background-image: url(spritesmith-main-3.png); - background-position: -912px -182px; - width: 90px; - height: 90px; -} -.customize-option.skin_fox { - background-image: url(spritesmith-main-3.png); - background-position: -937px -197px; - width: 60px; - height: 60px; -} -.skin_fox_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -912px -273px; - width: 90px; - height: 90px; -} -.customize-option.skin_fox_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -937px -288px; - width: 60px; - height: 60px; -} -.skin_ghost { - background-image: url(spritesmith-main-3.png); - background-position: -912px -364px; - width: 90px; - height: 90px; -} -.customize-option.skin_ghost { - background-image: url(spritesmith-main-3.png); - background-position: -937px -379px; - width: 60px; - height: 60px; -} -.skin_ghost_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -912px -455px; - width: 90px; - height: 90px; -} -.customize-option.skin_ghost_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -937px -470px; - width: 60px; - height: 60px; -} -.skin_lion { - background-image: url(spritesmith-main-3.png); - background-position: -912px -546px; - width: 90px; - height: 90px; -} -.customize-option.skin_lion { - background-image: url(spritesmith-main-3.png); - background-position: -937px -561px; - width: 60px; - height: 60px; -} -.skin_lion_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -912px -637px; - width: 90px; - height: 90px; -} -.customize-option.skin_lion_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -937px -652px; - width: 60px; - height: 60px; -} -.skin_merblue { - background-image: url(spritesmith-main-3.png); - background-position: -912px -728px; - width: 90px; - height: 90px; -} -.customize-option.skin_merblue { - background-image: url(spritesmith-main-3.png); - background-position: -937px -743px; - width: 60px; - height: 60px; -} -.skin_merblue_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -912px -819px; - width: 90px; - height: 90px; -} -.customize-option.skin_merblue_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -937px -834px; - width: 60px; - height: 60px; -} -.skin_mergold { - background-image: url(spritesmith-main-3.png); - background-position: 0px -910px; - width: 90px; - height: 90px; -} -.customize-option.skin_mergold { - background-image: url(spritesmith-main-3.png); - background-position: -25px -925px; - width: 60px; - height: 60px; -} -.skin_mergold_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -91px -910px; - width: 90px; - height: 90px; -} -.customize-option.skin_mergold_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -116px -925px; - width: 60px; - height: 60px; -} -.skin_mergreen { - background-image: url(spritesmith-main-3.png); - background-position: -182px -910px; - width: 90px; - height: 90px; -} -.customize-option.skin_mergreen { - background-image: url(spritesmith-main-3.png); - background-position: -207px -925px; - width: 60px; - height: 60px; -} -.skin_mergreen_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -273px -910px; - width: 90px; - height: 90px; -} -.customize-option.skin_mergreen_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -298px -925px; - width: 60px; - height: 60px; -} -.skin_merruby { - background-image: url(spritesmith-main-3.png); - background-position: -364px -910px; - width: 90px; - height: 90px; -} -.customize-option.skin_merruby { - background-image: url(spritesmith-main-3.png); - background-position: -389px -925px; - width: 60px; - height: 60px; -} -.skin_merruby_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -455px -910px; - width: 90px; - height: 90px; -} -.customize-option.skin_merruby_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -480px -925px; - width: 60px; - height: 60px; -} -.skin_monster { - background-image: url(spritesmith-main-3.png); - background-position: -546px -910px; - width: 90px; - height: 90px; -} -.customize-option.skin_monster { - background-image: url(spritesmith-main-3.png); - background-position: -571px -925px; - width: 60px; - height: 60px; -} -.skin_monster_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -637px -910px; - width: 90px; - height: 90px; -} -.customize-option.skin_monster_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -662px -925px; - width: 60px; - height: 60px; -} -.skin_ogre { - background-image: url(spritesmith-main-3.png); - background-position: -728px -910px; - width: 90px; - height: 90px; -} -.customize-option.skin_ogre { - background-image: url(spritesmith-main-3.png); - background-position: -753px -925px; - width: 60px; - height: 60px; -} -.skin_ogre_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -819px -910px; - width: 90px; - height: 90px; -} -.customize-option.skin_ogre_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -844px -925px; - width: 60px; - height: 60px; -} -.skin_panda { - background-image: url(spritesmith-main-3.png); - background-position: -910px -910px; - width: 90px; - height: 90px; -} -.customize-option.skin_panda { - background-image: url(spritesmith-main-3.png); - background-position: -935px -925px; - width: 60px; - height: 60px; -} -.skin_panda_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -1003px 0px; - width: 90px; - height: 90px; -} -.customize-option.skin_panda_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -1028px -15px; - width: 60px; - height: 60px; -} -.skin_pastelBlue { - background-image: url(spritesmith-main-3.png); - background-position: -1003px -91px; - width: 90px; - height: 90px; -} -.customize-option.skin_pastelBlue { - background-image: url(spritesmith-main-3.png); - background-position: -1028px -106px; - width: 60px; - height: 60px; -} -.skin_pastelBlue_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -1003px -182px; - width: 90px; - height: 90px; -} -.customize-option.skin_pastelBlue_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -1028px -197px; - width: 60px; - height: 60px; -} -.skin_pastelGreen { - background-image: url(spritesmith-main-3.png); - background-position: -1003px -273px; - width: 90px; - height: 90px; -} -.customize-option.skin_pastelGreen { - background-image: url(spritesmith-main-3.png); - background-position: -1028px -288px; - width: 60px; - height: 60px; -} -.skin_pastelGreen_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -1003px -364px; - width: 90px; - height: 90px; -} -.customize-option.skin_pastelGreen_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -1028px -379px; - width: 60px; - height: 60px; -} -.skin_pastelOrange { - background-image: url(spritesmith-main-3.png); - background-position: -1003px -455px; - width: 90px; - height: 90px; -} -.customize-option.skin_pastelOrange { - background-image: url(spritesmith-main-3.png); - background-position: -1028px -470px; - width: 60px; - height: 60px; -} -.skin_pastelOrange_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -1003px -546px; - width: 90px; - height: 90px; -} -.customize-option.skin_pastelOrange_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -1028px -561px; - width: 60px; - height: 60px; -} -.skin_pastelPink { - background-image: url(spritesmith-main-3.png); - background-position: -1003px -637px; - width: 90px; - height: 90px; -} -.customize-option.skin_pastelPink { - background-image: url(spritesmith-main-3.png); - background-position: -1028px -652px; - width: 60px; - height: 60px; -} -.skin_pastelPink_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -1003px -728px; - width: 90px; - height: 90px; -} -.customize-option.skin_pastelPink_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -1028px -743px; - width: 60px; - height: 60px; -} -.skin_pastelPurple { - background-image: url(spritesmith-main-3.png); - background-position: -1003px -819px; - width: 90px; - height: 90px; -} -.customize-option.skin_pastelPurple { - background-image: url(spritesmith-main-3.png); - background-position: -1028px -834px; - width: 60px; - height: 60px; -} -.skin_pastelPurple_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -1003px -910px; - width: 90px; - height: 90px; -} -.customize-option.skin_pastelPurple_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -1028px -925px; - width: 60px; - height: 60px; -} -.skin_pastelRainbowChevron { - background-image: url(spritesmith-main-3.png); - background-position: 0px -1001px; - width: 90px; - height: 90px; -} -.customize-option.skin_pastelRainbowChevron { - background-image: url(spritesmith-main-3.png); - background-position: -25px -1016px; - width: 60px; - height: 60px; -} -.skin_pastelRainbowChevron_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -91px -1001px; - width: 90px; - height: 90px; -} -.customize-option.skin_pastelRainbowChevron_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -116px -1016px; - width: 60px; - height: 60px; -} -.skin_pastelRainbowDiagonal { - background-image: url(spritesmith-main-3.png); - background-position: -182px -1001px; - width: 90px; - height: 90px; -} -.customize-option.skin_pastelRainbowDiagonal { - background-image: url(spritesmith-main-3.png); - background-position: -207px -1016px; - width: 60px; - height: 60px; -} -.skin_pastelRainbowDiagonal_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -273px -1001px; - width: 90px; - height: 90px; -} -.customize-option.skin_pastelRainbowDiagonal_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -298px -1016px; - width: 60px; - height: 60px; -} -.skin_pastelYellow { - background-image: url(spritesmith-main-3.png); - background-position: -364px -1001px; - width: 90px; - height: 90px; -} -.customize-option.skin_pastelYellow { - background-image: url(spritesmith-main-3.png); - background-position: -389px -1016px; - width: 60px; - height: 60px; -} -.skin_pastelYellow_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -455px -1001px; - width: 90px; - height: 90px; -} -.customize-option.skin_pastelYellow_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -480px -1016px; - width: 60px; - height: 60px; -} -.skin_pig { - background-image: url(spritesmith-main-3.png); - background-position: -546px -1001px; - width: 90px; - height: 90px; -} -.customize-option.skin_pig { - background-image: url(spritesmith-main-3.png); - background-position: -571px -1016px; - width: 60px; - height: 60px; -} -.skin_pig_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -637px -1001px; - width: 90px; - height: 90px; -} -.customize-option.skin_pig_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -662px -1016px; - width: 60px; - height: 60px; -} -.skin_pumpkin { - background-image: url(spritesmith-main-3.png); - background-position: -728px -1001px; - width: 90px; - height: 90px; -} -.customize-option.skin_pumpkin { - background-image: url(spritesmith-main-3.png); - background-position: -753px -1016px; - width: 60px; - height: 60px; -} -.skin_pumpkin2 { - background-image: url(spritesmith-main-3.png); - background-position: -819px -1001px; - width: 90px; - height: 90px; -} -.customize-option.skin_pumpkin2 { - background-image: url(spritesmith-main-3.png); - background-position: -844px -1016px; - width: 60px; - height: 60px; -} -.skin_pumpkin2_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -910px -1001px; - width: 90px; - height: 90px; -} -.customize-option.skin_pumpkin2_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -935px -1016px; - width: 60px; - height: 60px; -} -.skin_pumpkin_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -1001px -1001px; - width: 90px; - height: 90px; -} -.customize-option.skin_pumpkin_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -1026px -1016px; - width: 60px; - height: 60px; -} -.skin_rainbow { - background-image: url(spritesmith-main-3.png); - background-position: -1094px 0px; - width: 90px; - height: 90px; -} -.customize-option.skin_rainbow { - background-image: url(spritesmith-main-3.png); - background-position: -1119px -15px; - width: 60px; - height: 60px; -} -.skin_rainbow_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -1094px -91px; - width: 90px; - height: 90px; -} -.customize-option.skin_rainbow_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -1119px -106px; - width: 60px; - height: 60px; -} -.skin_reptile { - background-image: url(spritesmith-main-3.png); - background-position: -1094px -182px; - width: 90px; - height: 90px; -} -.customize-option.skin_reptile { - background-image: url(spritesmith-main-3.png); - background-position: -1119px -197px; - width: 60px; - height: 60px; -} -.skin_reptile_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -1094px -273px; - width: 90px; - height: 90px; -} -.customize-option.skin_reptile_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -1119px -288px; - width: 60px; - height: 60px; -} -.skin_shadow { - background-image: url(spritesmith-main-3.png); - background-position: -1094px -364px; - width: 90px; - height: 90px; -} -.customize-option.skin_shadow { - background-image: url(spritesmith-main-3.png); - background-position: -1119px -379px; - width: 60px; - height: 60px; -} -.skin_shadow2 { - background-image: url(spritesmith-main-3.png); - background-position: -1094px -455px; - width: 90px; - height: 90px; -} -.customize-option.skin_shadow2 { - background-image: url(spritesmith-main-3.png); - background-position: -1119px -470px; - width: 60px; - height: 60px; -} -.skin_shadow2_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -1094px -546px; - width: 90px; - height: 90px; -} -.customize-option.skin_shadow2_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -1119px -561px; - width: 60px; - height: 60px; -} -.skin_shadow_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -1094px -637px; - width: 90px; - height: 90px; -} -.customize-option.skin_shadow_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -1119px -652px; - width: 60px; - height: 60px; -} -.skin_shark { - background-image: url(spritesmith-main-3.png); - background-position: -1094px -728px; - width: 90px; - height: 90px; -} -.customize-option.skin_shark { - background-image: url(spritesmith-main-3.png); - background-position: -1119px -743px; - width: 60px; - height: 60px; -} -.skin_shark_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -1094px -819px; - width: 90px; - height: 90px; -} -.customize-option.skin_shark_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -1119px -834px; - width: 60px; - height: 60px; -} -.skin_skeleton { - background-image: url(spritesmith-main-3.png); - background-position: -1094px -910px; - width: 90px; - height: 90px; -} -.customize-option.skin_skeleton { - background-image: url(spritesmith-main-3.png); - background-position: -1119px -925px; - width: 60px; - height: 60px; -} -.skin_skeleton2 { - background-image: url(spritesmith-main-3.png); - background-position: -1094px -1001px; - width: 90px; - height: 90px; -} -.customize-option.skin_skeleton2 { - background-image: url(spritesmith-main-3.png); - background-position: -1119px -1016px; - width: 60px; - height: 60px; -} -.skin_skeleton2_sleep { - background-image: url(spritesmith-main-3.png); - background-position: 0px -1092px; - width: 90px; - height: 90px; -} -.customize-option.skin_skeleton2_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -25px -1107px; - width: 60px; - height: 60px; -} -.skin_skeleton_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -91px -1092px; - width: 90px; - height: 90px; -} -.customize-option.skin_skeleton_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -116px -1107px; - width: 60px; - height: 60px; -} -.skin_tiger { - background-image: url(spritesmith-main-3.png); - background-position: -182px -1092px; - width: 90px; - height: 90px; -} -.customize-option.skin_tiger { - background-image: url(spritesmith-main-3.png); - background-position: -207px -1107px; - width: 60px; - height: 60px; -} -.skin_tiger_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -273px -1092px; - width: 90px; - height: 90px; -} -.customize-option.skin_tiger_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -298px -1107px; - width: 60px; - height: 60px; -} -.skin_transparent { - background-image: url(spritesmith-main-3.png); - background-position: -364px -1092px; - width: 90px; - height: 90px; -} -.customize-option.skin_transparent { - background-image: url(spritesmith-main-3.png); - background-position: -389px -1107px; - width: 60px; - height: 60px; -} -.skin_transparent_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -455px -1092px; - width: 90px; - height: 90px; -} -.customize-option.skin_transparent_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -480px -1107px; - width: 60px; - height: 60px; -} -.skin_tropicalwater { - background-image: url(spritesmith-main-3.png); - background-position: -546px -1092px; - width: 90px; - height: 90px; -} -.customize-option.skin_tropicalwater { - background-image: url(spritesmith-main-3.png); - background-position: -571px -1107px; - width: 60px; - height: 60px; -} -.skin_tropicalwater_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -637px -1092px; - width: 90px; - height: 90px; -} -.customize-option.skin_tropicalwater_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -662px -1107px; - width: 60px; - height: 60px; -} -.skin_wolf { - background-image: url(spritesmith-main-3.png); - background-position: -728px -1092px; - width: 90px; - height: 90px; -} -.customize-option.skin_wolf { - background-image: url(spritesmith-main-3.png); - background-position: -753px -1107px; - width: 60px; - height: 60px; -} -.skin_wolf_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -819px -1092px; - width: 90px; - height: 90px; -} -.customize-option.skin_wolf_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -844px -1107px; - width: 60px; - height: 60px; -} -.skin_zombie { - background-image: url(spritesmith-main-3.png); - background-position: -910px -1092px; - width: 90px; - height: 90px; -} -.customize-option.skin_zombie { - background-image: url(spritesmith-main-3.png); - background-position: -935px -1107px; - width: 60px; - height: 60px; -} -.skin_zombie2 { - background-image: url(spritesmith-main-3.png); - background-position: -1001px -1092px; - width: 90px; - height: 90px; -} -.customize-option.skin_zombie2 { - background-image: url(spritesmith-main-3.png); - background-position: -1026px -1107px; - width: 60px; - height: 60px; -} -.skin_zombie2_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -1092px -1092px; - width: 90px; - height: 90px; -} -.customize-option.skin_zombie2_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -1117px -1107px; - width: 60px; - height: 60px; -} -.skin_zombie_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -1185px 0px; - width: 90px; - height: 90px; -} -.customize-option.skin_zombie_sleep { - background-image: url(spritesmith-main-3.png); - background-position: -1210px -15px; - width: 60px; - height: 60px; -} -.broad_armor_armoire_gladiatorArmor { - background-image: url(spritesmith-main-3.png); - background-position: -1185px -91px; - width: 90px; - height: 90px; -} -.broad_armor_armoire_goldenToga { - background-image: url(spritesmith-main-3.png); - background-position: -1185px -182px; - width: 90px; - height: 90px; -} -.broad_armor_armoire_hornedIronArmor { - background-image: url(spritesmith-main-3.png); - background-position: -1185px -273px; - width: 90px; - height: 90px; -} -.broad_armor_armoire_lunarArmor { - background-image: url(spritesmith-main-3.png); - background-position: -1185px -364px; - width: 90px; - height: 90px; -} -.broad_armor_armoire_plagueDoctorOvercoat { - background-image: url(spritesmith-main-3.png); - background-position: -1185px -455px; - width: 90px; - height: 90px; -} -.broad_armor_armoire_rancherRobes { - background-image: url(spritesmith-main-3.png); - background-position: -1185px -546px; - width: 90px; - height: 90px; -} -.broad_armor_armoire_royalRobes { - background-image: url(spritesmith-main-3.png); - background-position: -1185px -637px; - width: 90px; - height: 90px; -} -.broad_armor_armoire_shepherdRobes { - background-image: url(spritesmith-main-3.png); - background-position: -1185px -728px; - width: 90px; - height: 90px; -} -.eyewear_armoire_plagueDoctorMask { - background-image: url(spritesmith-main-3.png); - background-position: -1185px -819px; - width: 90px; - height: 90px; -} -.head_armoire_blackCat { - background-image: url(spritesmith-main-3.png); - background-position: -1185px -910px; - width: 90px; - height: 90px; -} -.head_armoire_blueFloppyHat { - background-image: url(spritesmith-main-3.png); - background-position: -1185px -1001px; - width: 90px; - height: 90px; -} -.head_armoire_blueHairbow { - background-image: url(spritesmith-main-3.png); - background-position: -1185px -1092px; - width: 90px; - height: 90px; -} -.head_armoire_gladiatorHelm { - background-image: url(spritesmith-main-3.png); - background-position: 0px -1183px; - width: 90px; - height: 90px; -} -.head_armoire_goldenLaurels { - background-image: url(spritesmith-main-3.png); - background-position: -91px -1183px; - width: 90px; - height: 90px; -} -.head_armoire_hornedIronHelm { - background-image: url(spritesmith-main-3.png); - background-position: -182px -1183px; - width: 90px; - height: 90px; -} -.head_armoire_lunarCrown { - background-image: url(spritesmith-main-3.png); - background-position: -273px -1183px; - width: 90px; - height: 90px; -} -.head_armoire_orangeCat { - background-image: url(spritesmith-main-3.png); - background-position: -364px -1183px; - width: 90px; - height: 90px; -} -.head_armoire_plagueDoctorHat { - background-image: url(spritesmith-main-3.png); - background-position: -455px -1183px; - width: 90px; - height: 90px; -} -.head_armoire_rancherHat { - background-image: url(spritesmith-main-3.png); - background-position: -546px -1183px; - width: 90px; - height: 90px; -} -.head_armoire_redFloppyHat { - background-image: url(spritesmith-main-3.png); - background-position: -637px -1183px; - width: 90px; - height: 90px; -} -.head_armoire_redHairbow { - background-image: url(spritesmith-main-3.png); - background-position: -728px -1183px; - width: 90px; - height: 90px; -} -.head_armoire_royalCrown { - background-image: url(spritesmith-main-3.png); - background-position: -819px -1183px; - width: 90px; - height: 90px; -} -.head_armoire_shepherdHeaddress { - background-image: url(spritesmith-main-3.png); - background-position: -910px -1183px; - width: 90px; - height: 90px; -} -.head_armoire_violetFloppyHat { - background-image: url(spritesmith-main-3.png); - background-position: -1001px -1183px; - width: 90px; - height: 90px; -} -.head_armoire_yellowHairbow { - background-image: url(spritesmith-main-3.png); - background-position: -1092px -1183px; - width: 90px; - height: 90px; -} -.shield_armoire_gladiatorShield { - background-image: url(spritesmith-main-3.png); - background-position: -1183px -1183px; - width: 90px; - height: 90px; -} -.shield_armoire_midnightShield { - background-image: url(spritesmith-main-3.png); - background-position: -1276px 0px; - width: 90px; - height: 90px; -} -.shield_armoire_royalCane { - background-image: url(spritesmith-main-3.png); - background-position: -1276px -91px; - width: 90px; - height: 90px; -} -.shop_armor_armoire_gladiatorArmor { - background-image: url(spritesmith-main-3.png); - background-position: -1640px -943px; - width: 40px; - height: 40px; -} -.shop_armor_armoire_goldenToga { - background-image: url(spritesmith-main-3.png); - background-position: -1640px -779px; - width: 40px; - height: 40px; -} -.shop_armor_armoire_hornedIronArmor { - background-image: url(spritesmith-main-3.png); - background-position: -1640px -738px; - width: 40px; - height: 40px; -} -.shop_armor_armoire_lunarArmor { - background-image: url(spritesmith-main-3.png); - background-position: -1640px -697px; - width: 40px; - height: 40px; -} -.shop_armor_armoire_plagueDoctorOvercoat { - background-image: url(spritesmith-main-3.png); - background-position: -1640px -656px; - width: 40px; - height: 40px; -} -.shop_armor_armoire_rancherRobes { - background-image: url(spritesmith-main-3.png); - background-position: -1640px -533px; - width: 40px; - height: 40px; -} -.shop_armor_armoire_royalRobes { - background-image: url(spritesmith-main-3.png); - background-position: -1640px -984px; - width: 40px; - height: 40px; -} -.shop_armor_armoire_shepherdRobes { - background-image: url(spritesmith-main-3.png); - background-position: -1640px -492px; - width: 40px; - height: 40px; -} -.shop_eyewear_armoire_plagueDoctorMask { - background-image: url(spritesmith-main-3.png); - background-position: -1640px -451px; - width: 40px; - height: 40px; -} -.shop_head_armoire_blackCat { - background-image: url(spritesmith-main-3.png); - background-position: -1640px -410px; - width: 40px; - height: 40px; -} -.shop_head_armoire_blueFloppyHat { - background-image: url(spritesmith-main-3.png); - background-position: -1640px -369px; - width: 40px; - height: 40px; -} -.shop_head_armoire_blueHairbow { - background-image: url(spritesmith-main-3.png); - background-position: -1640px -328px; - width: 40px; - height: 40px; -} -.shop_head_armoire_gladiatorHelm { - background-image: url(spritesmith-main-3.png); - background-position: -1640px -287px; - width: 40px; - height: 40px; -} -.shop_head_armoire_goldenLaurels { - background-image: url(spritesmith-main-3.png); - background-position: -1640px -246px; - width: 40px; - height: 40px; -} -.shop_head_armoire_hornedIronHelm { - background-image: url(spritesmith-main-3.png); - background-position: -1640px -205px; - width: 40px; - height: 40px; -} -.shop_head_armoire_lunarCrown { - background-image: url(spritesmith-main-3.png); - background-position: -1640px -164px; - width: 40px; - height: 40px; -} -.shop_head_armoire_orangeCat { - background-image: url(spritesmith-main-3.png); - background-position: -1640px -123px; - width: 40px; - height: 40px; -} -.shop_head_armoire_plagueDoctorHat { - background-image: url(spritesmith-main-3.png); - background-position: -1640px -82px; - width: 40px; - height: 40px; -} -.shop_head_armoire_rancherHat { - background-image: url(spritesmith-main-3.png); - background-position: -1640px -41px; - width: 40px; - height: 40px; -} -.shop_head_armoire_redFloppyHat { - background-image: url(spritesmith-main-3.png); - background-position: -1640px 0px; - width: 40px; - height: 40px; -} -.shop_head_armoire_redHairbow { - background-image: url(spritesmith-main-3.png); - background-position: -1576px -1588px; - width: 40px; - height: 40px; -} -.shop_head_armoire_royalCrown { - background-image: url(spritesmith-main-3.png); - background-position: -1535px -1588px; - width: 40px; - height: 40px; -} -.shop_head_armoire_shepherdHeaddress { - background-image: url(spritesmith-main-3.png); - background-position: -1494px -1588px; - width: 40px; - height: 40px; -} -.shop_head_armoire_violetFloppyHat { - background-image: url(spritesmith-main-3.png); - background-position: -1453px -1588px; - width: 40px; - height: 40px; -} -.shop_head_armoire_yellowHairbow { - background-image: url(spritesmith-main-3.png); - background-position: -182px -1588px; - width: 40px; - height: 40px; -} -.shop_shield_armoire_gladiatorShield { - background-image: url(spritesmith-main-3.png); - background-position: -1576px -1547px; - width: 40px; - height: 40px; -} -.shop_shield_armoire_midnightShield { - background-image: url(spritesmith-main-3.png); - background-position: -1535px -1547px; - width: 40px; - height: 40px; -} -.shop_shield_armoire_royalCane { - background-image: url(spritesmith-main-3.png); - background-position: -1494px -1547px; - width: 40px; - height: 40px; -} -.shop_weapon_armoire_basicCrossbow { - background-image: url(spritesmith-main-3.png); - background-position: -1453px -1547px; - width: 40px; - height: 40px; -} -.shop_weapon_armoire_batWand { - background-image: url(spritesmith-main-3.png); - background-position: -1412px -1547px; - width: 40px; - height: 40px; -} -.shop_weapon_armoire_goldWingStaff { - background-image: url(spritesmith-main-3.png); - background-position: -1371px -1547px; - width: 40px; - height: 40px; -} -.shop_weapon_armoire_ironCrook { - background-image: url(spritesmith-main-3.png); - background-position: -1330px -1547px; - width: 40px; - height: 40px; -} -.shop_weapon_armoire_lunarSceptre { - background-image: url(spritesmith-main-3.png); - background-position: -1289px -1547px; - width: 40px; - height: 40px; -} -.shop_weapon_armoire_mythmakerSword { - background-image: url(spritesmith-main-3.png); - background-position: -1248px -1547px; - width: 40px; - height: 40px; -} -.shop_weapon_armoire_rancherLasso { - background-image: url(spritesmith-main-3.png); - background-position: -1207px -1547px; - width: 40px; - height: 40px; -} -.shop_weapon_armoire_shepherdsCrook { - background-image: url(spritesmith-main-3.png); - background-position: -1166px -1547px; - width: 40px; - height: 40px; -} -.slim_armor_armoire_gladiatorArmor { +.hair_beard_3_porange2 { background-image: url(spritesmith-main-3.png); background-position: -1367px -819px; width: 90px; height: 90px; } -.slim_armor_armoire_goldenToga { +.customize-option.hair_beard_3_porange2 { background-image: url(spritesmith-main-3.png); - background-position: -1367px -910px; - width: 90px; - height: 90px; + background-position: -1392px -834px; + width: 60px; + height: 60px; } -.slim_armor_armoire_hornedIronArmor { - background-image: url(spritesmith-main-3.png); - background-position: -1367px -1001px; - width: 90px; - height: 90px; -} -.slim_armor_armoire_lunarArmor { - background-image: url(spritesmith-main-3.png); - background-position: -1367px -1092px; - width: 90px; - height: 90px; -} -.slim_armor_armoire_plagueDoctorOvercoat { +.hair_beard_3_ppink2 { background-image: url(spritesmith-main-3.png); background-position: -1367px -1183px; width: 90px; height: 90px; } -.slim_armor_armoire_rancherRobes { +.customize-option.hair_beard_3_ppink2 { + background-image: url(spritesmith-main-3.png); + background-position: -1392px -1198px; + width: 60px; + height: 60px; +} +.hair_beard_3_ppurple2 { background-image: url(spritesmith-main-3.png); background-position: -1367px -1274px; width: 90px; height: 90px; } -.slim_armor_armoire_royalRobes { +.customize-option.hair_beard_3_ppurple2 { background-image: url(spritesmith-main-3.png); - background-position: 0px -1365px; + background-position: -1392px -1289px; + width: 60px; + height: 60px; +} +.hair_beard_3_pyellow2 { + background-image: url(spritesmith-main-3.png); + background-position: -454px -182px; width: 90px; height: 90px; } -.slim_armor_armoire_shepherdRobes { +.customize-option.hair_beard_3_pyellow2 { background-image: url(spritesmith-main-3.png); - background-position: -91px -1365px; + background-position: -479px -197px; + width: 60px; + height: 60px; +} +.hair_mustache_1_pblue2 { + background-image: url(spritesmith-main-3.png); + background-position: -454px -273px; width: 90px; height: 90px; } -.weapon_armoire_basicCrossbow { +.customize-option.hair_mustache_1_pblue2 { background-image: url(spritesmith-main-3.png); - background-position: -182px -1365px; + background-position: -479px -288px; + width: 60px; + height: 60px; +} +.hair_mustache_1_pgreen2 { + background-image: url(spritesmith-main-3.png); + background-position: 0px -364px; width: 90px; height: 90px; } -.weapon_armoire_batWand { +.customize-option.hair_mustache_1_pgreen2 { background-image: url(spritesmith-main-3.png); - background-position: -273px -1365px; + background-position: -25px -379px; + width: 60px; + height: 60px; +} +.hair_mustache_1_porange2 { + background-image: url(spritesmith-main-3.png); + background-position: -91px -364px; width: 90px; height: 90px; } -.weapon_armoire_goldWingStaff { +.customize-option.hair_mustache_1_porange2 { background-image: url(spritesmith-main-3.png); - background-position: -364px -1365px; + background-position: -116px -379px; + width: 60px; + height: 60px; +} +.hair_mustache_1_ppink2 { + background-image: url(spritesmith-main-3.png); + background-position: -182px -364px; width: 90px; height: 90px; } -.weapon_armoire_ironCrook { +.customize-option.hair_mustache_1_ppink2 { background-image: url(spritesmith-main-3.png); - background-position: -455px -1365px; + background-position: -207px -379px; + width: 60px; + height: 60px; +} +.hair_mustache_1_ppurple2 { + background-image: url(spritesmith-main-3.png); + background-position: -273px -364px; width: 90px; height: 90px; } -.weapon_armoire_lunarSceptre { +.customize-option.hair_mustache_1_ppurple2 { background-image: url(spritesmith-main-3.png); - background-position: -546px -1365px; + background-position: -298px -379px; + width: 60px; + height: 60px; +} +.hair_mustache_1_pyellow2 { + background-image: url(spritesmith-main-3.png); + background-position: -364px -364px; width: 90px; height: 90px; } -.weapon_armoire_mythmakerSword { +.customize-option.hair_mustache_1_pyellow2 { background-image: url(spritesmith-main-3.png); - background-position: -637px -1365px; + background-position: -389px -379px; + width: 60px; + height: 60px; +} +.hair_mustache_2_pblue2 { + background-image: url(spritesmith-main-3.png); + background-position: -455px -364px; width: 90px; height: 90px; } -.weapon_armoire_rancherLasso { +.customize-option.hair_mustache_2_pblue2 { background-image: url(spritesmith-main-3.png); - background-position: -728px -1365px; + background-position: -480px -379px; + width: 60px; + height: 60px; +} +.hair_mustache_2_pgreen2 { + background-image: url(spritesmith-main-3.png); + background-position: 0px -455px; width: 90px; height: 90px; } -.weapon_armoire_shepherdsCrook { +.customize-option.hair_mustache_2_pgreen2 { background-image: url(spritesmith-main-3.png); - background-position: -819px -1365px; + background-position: -25px -470px; + width: 60px; + height: 60px; +} +.hair_mustache_2_porange2 { + background-image: url(spritesmith-main-3.png); + background-position: -91px -455px; width: 90px; height: 90px; } -.broad_armor_healer_1 { +.customize-option.hair_mustache_2_porange2 { background-image: url(spritesmith-main-3.png); - background-position: -910px -1365px; + background-position: -116px -470px; + width: 60px; + height: 60px; +} +.hair_mustache_2_ppink2 { + background-image: url(spritesmith-main-3.png); + background-position: -182px -455px; width: 90px; height: 90px; } -.broad_armor_healer_2 { +.customize-option.hair_mustache_2_ppink2 { background-image: url(spritesmith-main-3.png); - background-position: -1001px -1365px; + background-position: -207px -470px; + width: 60px; + height: 60px; +} +.hair_mustache_2_ppurple2 { + background-image: url(spritesmith-main-3.png); + background-position: -273px -455px; width: 90px; height: 90px; } -.broad_armor_healer_3 { +.customize-option.hair_mustache_2_ppurple2 { background-image: url(spritesmith-main-3.png); - background-position: -1092px -1365px; + background-position: -298px -470px; + width: 60px; + height: 60px; +} +.hair_mustache_2_pyellow2 { + background-image: url(spritesmith-main-3.png); + background-position: -364px -455px; width: 90px; height: 90px; } -.broad_armor_healer_4 { +.customize-option.hair_mustache_2_pyellow2 { background-image: url(spritesmith-main-3.png); - background-position: -1183px -1365px; + background-position: -389px -470px; + width: 60px; + height: 60px; +} +.broad_shirt_black { + background-image: url(spritesmith-main-3.png); + background-position: -455px -455px; width: 90px; height: 90px; } -.broad_armor_healer_5 { +.customize-option.broad_shirt_black { background-image: url(spritesmith-main-3.png); - background-position: -1274px -1365px; + background-position: -480px -485px; + width: 60px; + height: 60px; +} +.broad_shirt_blue { + background-image: url(spritesmith-main-3.png); + background-position: -548px 0px; width: 90px; height: 90px; } -.broad_armor_rogue_1 { +.customize-option.broad_shirt_blue { background-image: url(spritesmith-main-3.png); - background-position: -1365px -1365px; + background-position: -573px -30px; + width: 60px; + height: 60px; +} +.broad_shirt_convict { + background-image: url(spritesmith-main-3.png); + background-position: -548px -91px; width: 90px; height: 90px; } -.broad_armor_rogue_2 { +.customize-option.broad_shirt_convict { background-image: url(spritesmith-main-3.png); - background-position: -1458px 0px; + background-position: -573px -121px; + width: 60px; + height: 60px; +} +.broad_shirt_cross { + background-image: url(spritesmith-main-3.png); + background-position: -548px -182px; width: 90px; height: 90px; } -.broad_armor_rogue_3 { +.customize-option.broad_shirt_cross { background-image: url(spritesmith-main-3.png); - background-position: -1458px -91px; + background-position: -573px -212px; + width: 60px; + height: 60px; +} +.broad_shirt_fire { + background-image: url(spritesmith-main-3.png); + background-position: -548px -273px; width: 90px; height: 90px; } -.broad_armor_rogue_4 { +.customize-option.broad_shirt_fire { background-image: url(spritesmith-main-3.png); - background-position: -1458px -182px; + background-position: -573px -303px; + width: 60px; + height: 60px; +} +.broad_shirt_green { + background-image: url(spritesmith-main-3.png); + background-position: -548px -364px; width: 90px; height: 90px; } -.broad_armor_rogue_5 { +.customize-option.broad_shirt_green { background-image: url(spritesmith-main-3.png); - background-position: -1458px -273px; + background-position: -573px -394px; + width: 60px; + height: 60px; +} +.broad_shirt_horizon { + background-image: url(spritesmith-main-3.png); + background-position: -548px -455px; width: 90px; height: 90px; } -.broad_armor_special_2 { +.customize-option.broad_shirt_horizon { background-image: url(spritesmith-main-3.png); - background-position: -1458px -364px; + background-position: -573px -485px; + width: 60px; + height: 60px; +} +.broad_shirt_ocean { + background-image: url(spritesmith-main-3.png); + background-position: 0px -546px; width: 90px; height: 90px; } -.broad_armor_special_finnedOceanicArmor { +.customize-option.broad_shirt_ocean { background-image: url(spritesmith-main-3.png); - background-position: -1458px -455px; + background-position: -25px -576px; + width: 60px; + height: 60px; +} +.broad_shirt_pink { + background-image: url(spritesmith-main-3.png); + background-position: -91px -546px; width: 90px; height: 90px; } -.broad_armor_warrior_1 { +.customize-option.broad_shirt_pink { background-image: url(spritesmith-main-3.png); - background-position: -1458px -546px; + background-position: -116px -576px; + width: 60px; + height: 60px; +} +.broad_shirt_purple { + background-image: url(spritesmith-main-3.png); + background-position: -182px -546px; width: 90px; height: 90px; } -.broad_armor_warrior_2 { +.customize-option.broad_shirt_purple { background-image: url(spritesmith-main-3.png); - background-position: -1458px -637px; + background-position: -207px -576px; + width: 60px; + height: 60px; +} +.broad_shirt_rainbow { + background-image: url(spritesmith-main-3.png); + background-position: -273px -546px; width: 90px; height: 90px; } -.broad_armor_warrior_3 { +.customize-option.broad_shirt_rainbow { background-image: url(spritesmith-main-3.png); - background-position: -1458px -728px; + background-position: -298px -576px; + width: 60px; + height: 60px; +} +.broad_shirt_redblue { + background-image: url(spritesmith-main-3.png); + background-position: -364px -546px; width: 90px; height: 90px; } -.broad_armor_warrior_4 { +.customize-option.broad_shirt_redblue { background-image: url(spritesmith-main-3.png); - background-position: -1458px -819px; + background-position: -389px -576px; + width: 60px; + height: 60px; +} +.broad_shirt_thunder { + background-image: url(spritesmith-main-3.png); + background-position: -455px -546px; width: 90px; height: 90px; } -.broad_armor_warrior_5 { +.customize-option.broad_shirt_thunder { background-image: url(spritesmith-main-3.png); - background-position: -1458px -910px; + background-position: -480px -576px; + width: 60px; + height: 60px; +} +.broad_shirt_tropical { + background-image: url(spritesmith-main-3.png); + background-position: -546px -546px; width: 90px; height: 90px; } -.broad_armor_wizard_1 { +.customize-option.broad_shirt_tropical { background-image: url(spritesmith-main-3.png); - background-position: -1458px -1001px; + background-position: -571px -576px; + width: 60px; + height: 60px; +} +.broad_shirt_white { + background-image: url(spritesmith-main-3.png); + background-position: -639px 0px; width: 90px; height: 90px; } -.broad_armor_wizard_2 { +.customize-option.broad_shirt_white { background-image: url(spritesmith-main-3.png); - background-position: -1458px -1092px; + background-position: -664px -30px; + width: 60px; + height: 60px; +} +.broad_shirt_yellow { + background-image: url(spritesmith-main-3.png); + background-position: -639px -91px; width: 90px; height: 90px; } -.broad_armor_wizard_3 { +.customize-option.broad_shirt_yellow { background-image: url(spritesmith-main-3.png); - background-position: -1458px -1183px; + background-position: -664px -121px; + width: 60px; + height: 60px; +} +.broad_shirt_zombie { + background-image: url(spritesmith-main-3.png); + background-position: -639px -182px; width: 90px; height: 90px; } -.broad_armor_wizard_4 { +.customize-option.broad_shirt_zombie { background-image: url(spritesmith-main-3.png); - background-position: -1458px -1274px; + background-position: -664px -212px; + width: 60px; + height: 60px; +} +.slim_shirt_black { + background-image: url(spritesmith-main-3.png); + background-position: -639px -273px; width: 90px; height: 90px; } -.broad_armor_wizard_5 { +.customize-option.slim_shirt_black { background-image: url(spritesmith-main-3.png); - background-position: -1458px -1365px; + background-position: -664px -303px; + width: 60px; + height: 60px; +} +.slim_shirt_blue { + background-image: url(spritesmith-main-3.png); + background-position: -639px -364px; width: 90px; height: 90px; } -.shop_armor_healer_1 { +.customize-option.slim_shirt_blue { background-image: url(spritesmith-main-3.png); - background-position: -1125px -1547px; + background-position: -664px -394px; + width: 60px; + height: 60px; +} +.slim_shirt_convict { + background-image: url(spritesmith-main-3.png); + background-position: -639px -455px; + width: 90px; + height: 90px; +} +.customize-option.slim_shirt_convict { + background-image: url(spritesmith-main-3.png); + background-position: -664px -485px; + width: 60px; + height: 60px; +} +.slim_shirt_cross { + background-image: url(spritesmith-main-3.png); + background-position: -639px -546px; + width: 90px; + height: 90px; +} +.customize-option.slim_shirt_cross { + background-image: url(spritesmith-main-3.png); + background-position: -664px -576px; + width: 60px; + height: 60px; +} +.slim_shirt_fire { + background-image: url(spritesmith-main-3.png); + background-position: 0px -637px; + width: 90px; + height: 90px; +} +.customize-option.slim_shirt_fire { + background-image: url(spritesmith-main-3.png); + background-position: -25px -667px; + width: 60px; + height: 60px; +} +.slim_shirt_green { + background-image: url(spritesmith-main-3.png); + background-position: -91px -637px; + width: 90px; + height: 90px; +} +.customize-option.slim_shirt_green { + background-image: url(spritesmith-main-3.png); + background-position: -116px -667px; + width: 60px; + height: 60px; +} +.slim_shirt_horizon { + background-image: url(spritesmith-main-3.png); + background-position: -182px -637px; + width: 90px; + height: 90px; +} +.customize-option.slim_shirt_horizon { + background-image: url(spritesmith-main-3.png); + background-position: -207px -667px; + width: 60px; + height: 60px; +} +.slim_shirt_ocean { + background-image: url(spritesmith-main-3.png); + background-position: -273px -637px; + width: 90px; + height: 90px; +} +.customize-option.slim_shirt_ocean { + background-image: url(spritesmith-main-3.png); + background-position: -298px -667px; + width: 60px; + height: 60px; +} +.slim_shirt_pink { + background-image: url(spritesmith-main-3.png); + background-position: -364px -637px; + width: 90px; + height: 90px; +} +.customize-option.slim_shirt_pink { + background-image: url(spritesmith-main-3.png); + background-position: -389px -667px; + width: 60px; + height: 60px; +} +.slim_shirt_purple { + background-image: url(spritesmith-main-3.png); + background-position: -455px -637px; + width: 90px; + height: 90px; +} +.customize-option.slim_shirt_purple { + background-image: url(spritesmith-main-3.png); + background-position: -480px -667px; + width: 60px; + height: 60px; +} +.slim_shirt_rainbow { + background-image: url(spritesmith-main-3.png); + background-position: -546px -637px; + width: 90px; + height: 90px; +} +.customize-option.slim_shirt_rainbow { + background-image: url(spritesmith-main-3.png); + background-position: -571px -667px; + width: 60px; + height: 60px; +} +.slim_shirt_redblue { + background-image: url(spritesmith-main-3.png); + background-position: -637px -637px; + width: 90px; + height: 90px; +} +.customize-option.slim_shirt_redblue { + background-image: url(spritesmith-main-3.png); + background-position: -662px -667px; + width: 60px; + height: 60px; +} +.slim_shirt_thunder { + background-image: url(spritesmith-main-3.png); + background-position: -730px 0px; + width: 90px; + height: 90px; +} +.customize-option.slim_shirt_thunder { + background-image: url(spritesmith-main-3.png); + background-position: -755px -30px; + width: 60px; + height: 60px; +} +.slim_shirt_tropical { + background-image: url(spritesmith-main-3.png); + background-position: -730px -91px; + width: 90px; + height: 90px; +} +.customize-option.slim_shirt_tropical { + background-image: url(spritesmith-main-3.png); + background-position: -755px -121px; + width: 60px; + height: 60px; +} +.slim_shirt_white { + background-image: url(spritesmith-main-3.png); + background-position: -730px -182px; + width: 90px; + height: 90px; +} +.customize-option.slim_shirt_white { + background-image: url(spritesmith-main-3.png); + background-position: -755px -212px; + width: 60px; + height: 60px; +} +.slim_shirt_yellow { + background-image: url(spritesmith-main-3.png); + background-position: -730px -273px; + width: 90px; + height: 90px; +} +.customize-option.slim_shirt_yellow { + background-image: url(spritesmith-main-3.png); + background-position: -755px -303px; + width: 60px; + height: 60px; +} +.slim_shirt_zombie { + background-image: url(spritesmith-main-3.png); + background-position: -730px -364px; + width: 90px; + height: 90px; +} +.customize-option.slim_shirt_zombie { + background-image: url(spritesmith-main-3.png); + background-position: -755px -394px; + width: 60px; + height: 60px; +} +.skin_0ff591 { + background-image: url(spritesmith-main-3.png); + background-position: -730px -455px; + width: 90px; + height: 90px; +} +.customize-option.skin_0ff591 { + background-image: url(spritesmith-main-3.png); + background-position: -755px -470px; + width: 60px; + height: 60px; +} +.skin_0ff591_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -730px -546px; + width: 90px; + height: 90px; +} +.customize-option.skin_0ff591_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -755px -561px; + width: 60px; + height: 60px; +} +.skin_2b43f6 { + background-image: url(spritesmith-main-3.png); + background-position: -730px -637px; + width: 90px; + height: 90px; +} +.customize-option.skin_2b43f6 { + background-image: url(spritesmith-main-3.png); + background-position: -755px -652px; + width: 60px; + height: 60px; +} +.skin_2b43f6_sleep { + background-image: url(spritesmith-main-3.png); + background-position: 0px -728px; + width: 90px; + height: 90px; +} +.customize-option.skin_2b43f6_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -25px -743px; + width: 60px; + height: 60px; +} +.skin_6bd049 { + background-image: url(spritesmith-main-3.png); + background-position: -91px -728px; + width: 90px; + height: 90px; +} +.customize-option.skin_6bd049 { + background-image: url(spritesmith-main-3.png); + background-position: -116px -743px; + width: 60px; + height: 60px; +} +.skin_6bd049_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -182px -728px; + width: 90px; + height: 90px; +} +.customize-option.skin_6bd049_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -207px -743px; + width: 60px; + height: 60px; +} +.skin_800ed0 { + background-image: url(spritesmith-main-3.png); + background-position: -273px -728px; + width: 90px; + height: 90px; +} +.customize-option.skin_800ed0 { + background-image: url(spritesmith-main-3.png); + background-position: -298px -743px; + width: 60px; + height: 60px; +} +.skin_800ed0_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -364px -728px; + width: 90px; + height: 90px; +} +.customize-option.skin_800ed0_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -389px -743px; + width: 60px; + height: 60px; +} +.skin_915533 { + background-image: url(spritesmith-main-3.png); + background-position: -455px -728px; + width: 90px; + height: 90px; +} +.customize-option.skin_915533 { + background-image: url(spritesmith-main-3.png); + background-position: -480px -743px; + width: 60px; + height: 60px; +} +.skin_915533_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -546px -728px; + width: 90px; + height: 90px; +} +.customize-option.skin_915533_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -571px -743px; + width: 60px; + height: 60px; +} +.skin_98461a { + background-image: url(spritesmith-main-3.png); + background-position: -637px -728px; + width: 90px; + height: 90px; +} +.customize-option.skin_98461a { + background-image: url(spritesmith-main-3.png); + background-position: -662px -743px; + width: 60px; + height: 60px; +} +.skin_98461a_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -728px -728px; + width: 90px; + height: 90px; +} +.customize-option.skin_98461a_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -753px -743px; + width: 60px; + height: 60px; +} +.skin_bear { + background-image: url(spritesmith-main-3.png); + background-position: -821px 0px; + width: 90px; + height: 90px; +} +.customize-option.skin_bear { + background-image: url(spritesmith-main-3.png); + background-position: -846px -15px; + width: 60px; + height: 60px; +} +.skin_bear_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -821px -91px; + width: 90px; + height: 90px; +} +.customize-option.skin_bear_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -846px -106px; + width: 60px; + height: 60px; +} +.skin_c06534 { + background-image: url(spritesmith-main-3.png); + background-position: -821px -182px; + width: 90px; + height: 90px; +} +.customize-option.skin_c06534 { + background-image: url(spritesmith-main-3.png); + background-position: -846px -197px; + width: 60px; + height: 60px; +} +.skin_c06534_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -821px -273px; + width: 90px; + height: 90px; +} +.customize-option.skin_c06534_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -846px -288px; + width: 60px; + height: 60px; +} +.skin_c3e1dc { + background-image: url(spritesmith-main-3.png); + background-position: -821px -364px; + width: 90px; + height: 90px; +} +.customize-option.skin_c3e1dc { + background-image: url(spritesmith-main-3.png); + background-position: -846px -379px; + width: 60px; + height: 60px; +} +.skin_c3e1dc_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -821px -455px; + width: 90px; + height: 90px; +} +.customize-option.skin_c3e1dc_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -846px -470px; + width: 60px; + height: 60px; +} +.skin_cactus { + background-image: url(spritesmith-main-3.png); + background-position: -821px -546px; + width: 90px; + height: 90px; +} +.customize-option.skin_cactus { + background-image: url(spritesmith-main-3.png); + background-position: -846px -561px; + width: 60px; + height: 60px; +} +.skin_cactus_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -821px -637px; + width: 90px; + height: 90px; +} +.customize-option.skin_cactus_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -846px -652px; + width: 60px; + height: 60px; +} +.skin_candycorn { + background-image: url(spritesmith-main-3.png); + background-position: -821px -728px; + width: 90px; + height: 90px; +} +.customize-option.skin_candycorn { + background-image: url(spritesmith-main-3.png); + background-position: -846px -743px; + width: 60px; + height: 60px; +} +.skin_candycorn_sleep { + background-image: url(spritesmith-main-3.png); + background-position: 0px -819px; + width: 90px; + height: 90px; +} +.customize-option.skin_candycorn_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -25px -834px; + width: 60px; + height: 60px; +} +.skin_clownfish { + background-image: url(spritesmith-main-3.png); + background-position: -91px -819px; + width: 90px; + height: 90px; +} +.customize-option.skin_clownfish { + background-image: url(spritesmith-main-3.png); + background-position: -116px -834px; + width: 60px; + height: 60px; +} +.skin_clownfish_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -182px -819px; + width: 90px; + height: 90px; +} +.customize-option.skin_clownfish_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -207px -834px; + width: 60px; + height: 60px; +} +.skin_d7a9f7 { + background-image: url(spritesmith-main-3.png); + background-position: -273px -819px; + width: 90px; + height: 90px; +} +.customize-option.skin_d7a9f7 { + background-image: url(spritesmith-main-3.png); + background-position: -298px -834px; + width: 60px; + height: 60px; +} +.skin_d7a9f7_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -364px -819px; + width: 90px; + height: 90px; +} +.customize-option.skin_d7a9f7_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -389px -834px; + width: 60px; + height: 60px; +} +.skin_ddc994 { + background-image: url(spritesmith-main-3.png); + background-position: -455px -819px; + width: 90px; + height: 90px; +} +.customize-option.skin_ddc994 { + background-image: url(spritesmith-main-3.png); + background-position: -480px -834px; + width: 60px; + height: 60px; +} +.skin_ddc994_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -546px -819px; + width: 90px; + height: 90px; +} +.customize-option.skin_ddc994_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -571px -834px; + width: 60px; + height: 60px; +} +.skin_deepocean { + background-image: url(spritesmith-main-3.png); + background-position: -637px -819px; + width: 90px; + height: 90px; +} +.customize-option.skin_deepocean { + background-image: url(spritesmith-main-3.png); + background-position: -662px -834px; + width: 60px; + height: 60px; +} +.skin_deepocean_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -728px -819px; + width: 90px; + height: 90px; +} +.customize-option.skin_deepocean_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -753px -834px; + width: 60px; + height: 60px; +} +.skin_ea8349 { + background-image: url(spritesmith-main-3.png); + background-position: -819px -819px; + width: 90px; + height: 90px; +} +.customize-option.skin_ea8349 { + background-image: url(spritesmith-main-3.png); + background-position: -844px -834px; + width: 60px; + height: 60px; +} +.skin_ea8349_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -912px 0px; + width: 90px; + height: 90px; +} +.customize-option.skin_ea8349_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -937px -15px; + width: 60px; + height: 60px; +} +.skin_eb052b { + background-image: url(spritesmith-main-3.png); + background-position: -912px -91px; + width: 90px; + height: 90px; +} +.customize-option.skin_eb052b { + background-image: url(spritesmith-main-3.png); + background-position: -937px -106px; + width: 60px; + height: 60px; +} +.skin_eb052b_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -912px -182px; + width: 90px; + height: 90px; +} +.customize-option.skin_eb052b_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -937px -197px; + width: 60px; + height: 60px; +} +.skin_f5a76e { + background-image: url(spritesmith-main-3.png); + background-position: -912px -273px; + width: 90px; + height: 90px; +} +.customize-option.skin_f5a76e { + background-image: url(spritesmith-main-3.png); + background-position: -937px -288px; + width: 60px; + height: 60px; +} +.skin_f5a76e_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -912px -364px; + width: 90px; + height: 90px; +} +.customize-option.skin_f5a76e_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -937px -379px; + width: 60px; + height: 60px; +} +.skin_f5d70f { + background-image: url(spritesmith-main-3.png); + background-position: -912px -455px; + width: 90px; + height: 90px; +} +.customize-option.skin_f5d70f { + background-image: url(spritesmith-main-3.png); + background-position: -937px -470px; + width: 60px; + height: 60px; +} +.skin_f5d70f_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -912px -546px; + width: 90px; + height: 90px; +} +.customize-option.skin_f5d70f_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -937px -561px; + width: 60px; + height: 60px; +} +.skin_f69922 { + background-image: url(spritesmith-main-3.png); + background-position: -912px -637px; + width: 90px; + height: 90px; +} +.customize-option.skin_f69922 { + background-image: url(spritesmith-main-3.png); + background-position: -937px -652px; + width: 60px; + height: 60px; +} +.skin_f69922_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -912px -728px; + width: 90px; + height: 90px; +} +.customize-option.skin_f69922_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -937px -743px; + width: 60px; + height: 60px; +} +.skin_fox { + background-image: url(spritesmith-main-3.png); + background-position: -912px -819px; + width: 90px; + height: 90px; +} +.customize-option.skin_fox { + background-image: url(spritesmith-main-3.png); + background-position: -937px -834px; + width: 60px; + height: 60px; +} +.skin_fox_sleep { + background-image: url(spritesmith-main-3.png); + background-position: 0px -910px; + width: 90px; + height: 90px; +} +.customize-option.skin_fox_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -25px -925px; + width: 60px; + height: 60px; +} +.skin_ghost { + background-image: url(spritesmith-main-3.png); + background-position: -91px -910px; + width: 90px; + height: 90px; +} +.customize-option.skin_ghost { + background-image: url(spritesmith-main-3.png); + background-position: -116px -925px; + width: 60px; + height: 60px; +} +.skin_ghost_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -182px -910px; + width: 90px; + height: 90px; +} +.customize-option.skin_ghost_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -207px -925px; + width: 60px; + height: 60px; +} +.skin_lion { + background-image: url(spritesmith-main-3.png); + background-position: -273px -910px; + width: 90px; + height: 90px; +} +.customize-option.skin_lion { + background-image: url(spritesmith-main-3.png); + background-position: -298px -925px; + width: 60px; + height: 60px; +} +.skin_lion_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -364px -910px; + width: 90px; + height: 90px; +} +.customize-option.skin_lion_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -389px -925px; + width: 60px; + height: 60px; +} +.skin_merblue { + background-image: url(spritesmith-main-3.png); + background-position: -455px -910px; + width: 90px; + height: 90px; +} +.customize-option.skin_merblue { + background-image: url(spritesmith-main-3.png); + background-position: -480px -925px; + width: 60px; + height: 60px; +} +.skin_merblue_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -546px -910px; + width: 90px; + height: 90px; +} +.customize-option.skin_merblue_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -571px -925px; + width: 60px; + height: 60px; +} +.skin_mergold { + background-image: url(spritesmith-main-3.png); + background-position: -637px -910px; + width: 90px; + height: 90px; +} +.customize-option.skin_mergold { + background-image: url(spritesmith-main-3.png); + background-position: -662px -925px; + width: 60px; + height: 60px; +} +.skin_mergold_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -728px -910px; + width: 90px; + height: 90px; +} +.customize-option.skin_mergold_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -753px -925px; + width: 60px; + height: 60px; +} +.skin_mergreen { + background-image: url(spritesmith-main-3.png); + background-position: -819px -910px; + width: 90px; + height: 90px; +} +.customize-option.skin_mergreen { + background-image: url(spritesmith-main-3.png); + background-position: -844px -925px; + width: 60px; + height: 60px; +} +.skin_mergreen_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -910px -910px; + width: 90px; + height: 90px; +} +.customize-option.skin_mergreen_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -935px -925px; + width: 60px; + height: 60px; +} +.skin_merruby { + background-image: url(spritesmith-main-3.png); + background-position: -1003px 0px; + width: 90px; + height: 90px; +} +.customize-option.skin_merruby { + background-image: url(spritesmith-main-3.png); + background-position: -1028px -15px; + width: 60px; + height: 60px; +} +.skin_merruby_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -1003px -91px; + width: 90px; + height: 90px; +} +.customize-option.skin_merruby_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -1028px -106px; + width: 60px; + height: 60px; +} +.skin_monster { + background-image: url(spritesmith-main-3.png); + background-position: -1003px -182px; + width: 90px; + height: 90px; +} +.customize-option.skin_monster { + background-image: url(spritesmith-main-3.png); + background-position: -1028px -197px; + width: 60px; + height: 60px; +} +.skin_monster_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -1003px -273px; + width: 90px; + height: 90px; +} +.customize-option.skin_monster_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -1028px -288px; + width: 60px; + height: 60px; +} +.skin_ogre { + background-image: url(spritesmith-main-3.png); + background-position: -1003px -364px; + width: 90px; + height: 90px; +} +.customize-option.skin_ogre { + background-image: url(spritesmith-main-3.png); + background-position: -1028px -379px; + width: 60px; + height: 60px; +} +.skin_ogre_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -1003px -455px; + width: 90px; + height: 90px; +} +.customize-option.skin_ogre_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -1028px -470px; + width: 60px; + height: 60px; +} +.skin_panda { + background-image: url(spritesmith-main-3.png); + background-position: -1003px -546px; + width: 90px; + height: 90px; +} +.customize-option.skin_panda { + background-image: url(spritesmith-main-3.png); + background-position: -1028px -561px; + width: 60px; + height: 60px; +} +.skin_panda_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -1003px -637px; + width: 90px; + height: 90px; +} +.customize-option.skin_panda_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -1028px -652px; + width: 60px; + height: 60px; +} +.skin_pastelBlue { + background-image: url(spritesmith-main-3.png); + background-position: -1003px -728px; + width: 90px; + height: 90px; +} +.customize-option.skin_pastelBlue { + background-image: url(spritesmith-main-3.png); + background-position: -1028px -743px; + width: 60px; + height: 60px; +} +.skin_pastelBlue_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -1003px -819px; + width: 90px; + height: 90px; +} +.customize-option.skin_pastelBlue_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -1028px -834px; + width: 60px; + height: 60px; +} +.skin_pastelGreen { + background-image: url(spritesmith-main-3.png); + background-position: -1003px -910px; + width: 90px; + height: 90px; +} +.customize-option.skin_pastelGreen { + background-image: url(spritesmith-main-3.png); + background-position: -1028px -925px; + width: 60px; + height: 60px; +} +.skin_pastelGreen_sleep { + background-image: url(spritesmith-main-3.png); + background-position: 0px -1001px; + width: 90px; + height: 90px; +} +.customize-option.skin_pastelGreen_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -25px -1016px; + width: 60px; + height: 60px; +} +.skin_pastelOrange { + background-image: url(spritesmith-main-3.png); + background-position: -91px -1001px; + width: 90px; + height: 90px; +} +.customize-option.skin_pastelOrange { + background-image: url(spritesmith-main-3.png); + background-position: -116px -1016px; + width: 60px; + height: 60px; +} +.skin_pastelOrange_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -182px -1001px; + width: 90px; + height: 90px; +} +.customize-option.skin_pastelOrange_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -207px -1016px; + width: 60px; + height: 60px; +} +.skin_pastelPink { + background-image: url(spritesmith-main-3.png); + background-position: -273px -1001px; + width: 90px; + height: 90px; +} +.customize-option.skin_pastelPink { + background-image: url(spritesmith-main-3.png); + background-position: -298px -1016px; + width: 60px; + height: 60px; +} +.skin_pastelPink_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -364px -1001px; + width: 90px; + height: 90px; +} +.customize-option.skin_pastelPink_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -389px -1016px; + width: 60px; + height: 60px; +} +.skin_pastelPurple { + background-image: url(spritesmith-main-3.png); + background-position: -455px -1001px; + width: 90px; + height: 90px; +} +.customize-option.skin_pastelPurple { + background-image: url(spritesmith-main-3.png); + background-position: -480px -1016px; + width: 60px; + height: 60px; +} +.skin_pastelPurple_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -546px -1001px; + width: 90px; + height: 90px; +} +.customize-option.skin_pastelPurple_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -571px -1016px; + width: 60px; + height: 60px; +} +.skin_pastelRainbowChevron { + background-image: url(spritesmith-main-3.png); + background-position: -637px -1001px; + width: 90px; + height: 90px; +} +.customize-option.skin_pastelRainbowChevron { + background-image: url(spritesmith-main-3.png); + background-position: -662px -1016px; + width: 60px; + height: 60px; +} +.skin_pastelRainbowChevron_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -728px -1001px; + width: 90px; + height: 90px; +} +.customize-option.skin_pastelRainbowChevron_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -753px -1016px; + width: 60px; + height: 60px; +} +.skin_pastelRainbowDiagonal { + background-image: url(spritesmith-main-3.png); + background-position: -819px -1001px; + width: 90px; + height: 90px; +} +.customize-option.skin_pastelRainbowDiagonal { + background-image: url(spritesmith-main-3.png); + background-position: -844px -1016px; + width: 60px; + height: 60px; +} +.skin_pastelRainbowDiagonal_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -910px -1001px; + width: 90px; + height: 90px; +} +.customize-option.skin_pastelRainbowDiagonal_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -935px -1016px; + width: 60px; + height: 60px; +} +.skin_pastelYellow { + background-image: url(spritesmith-main-3.png); + background-position: -1001px -1001px; + width: 90px; + height: 90px; +} +.customize-option.skin_pastelYellow { + background-image: url(spritesmith-main-3.png); + background-position: -1026px -1016px; + width: 60px; + height: 60px; +} +.skin_pastelYellow_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -1094px 0px; + width: 90px; + height: 90px; +} +.customize-option.skin_pastelYellow_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -1119px -15px; + width: 60px; + height: 60px; +} +.skin_pig { + background-image: url(spritesmith-main-3.png); + background-position: -1094px -91px; + width: 90px; + height: 90px; +} +.customize-option.skin_pig { + background-image: url(spritesmith-main-3.png); + background-position: -1119px -106px; + width: 60px; + height: 60px; +} +.skin_pig_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -1094px -182px; + width: 90px; + height: 90px; +} +.customize-option.skin_pig_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -1119px -197px; + width: 60px; + height: 60px; +} +.skin_pumpkin { + background-image: url(spritesmith-main-3.png); + background-position: -1094px -273px; + width: 90px; + height: 90px; +} +.customize-option.skin_pumpkin { + background-image: url(spritesmith-main-3.png); + background-position: -1119px -288px; + width: 60px; + height: 60px; +} +.skin_pumpkin2 { + background-image: url(spritesmith-main-3.png); + background-position: -1094px -364px; + width: 90px; + height: 90px; +} +.customize-option.skin_pumpkin2 { + background-image: url(spritesmith-main-3.png); + background-position: -1119px -379px; + width: 60px; + height: 60px; +} +.skin_pumpkin2_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -1094px -455px; + width: 90px; + height: 90px; +} +.customize-option.skin_pumpkin2_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -1119px -470px; + width: 60px; + height: 60px; +} +.skin_pumpkin_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -1094px -546px; + width: 90px; + height: 90px; +} +.customize-option.skin_pumpkin_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -1119px -561px; + width: 60px; + height: 60px; +} +.skin_rainbow { + background-image: url(spritesmith-main-3.png); + background-position: -1094px -637px; + width: 90px; + height: 90px; +} +.customize-option.skin_rainbow { + background-image: url(spritesmith-main-3.png); + background-position: -1119px -652px; + width: 60px; + height: 60px; +} +.skin_rainbow_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -1094px -728px; + width: 90px; + height: 90px; +} +.customize-option.skin_rainbow_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -1119px -743px; + width: 60px; + height: 60px; +} +.skin_reptile { + background-image: url(spritesmith-main-3.png); + background-position: -1094px -819px; + width: 90px; + height: 90px; +} +.customize-option.skin_reptile { + background-image: url(spritesmith-main-3.png); + background-position: -1119px -834px; + width: 60px; + height: 60px; +} +.skin_reptile_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -1094px -910px; + width: 90px; + height: 90px; +} +.customize-option.skin_reptile_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -1119px -925px; + width: 60px; + height: 60px; +} +.skin_shadow { + background-image: url(spritesmith-main-3.png); + background-position: -1094px -1001px; + width: 90px; + height: 90px; +} +.customize-option.skin_shadow { + background-image: url(spritesmith-main-3.png); + background-position: -1119px -1016px; + width: 60px; + height: 60px; +} +.skin_shadow2 { + background-image: url(spritesmith-main-3.png); + background-position: 0px -1092px; + width: 90px; + height: 90px; +} +.customize-option.skin_shadow2 { + background-image: url(spritesmith-main-3.png); + background-position: -25px -1107px; + width: 60px; + height: 60px; +} +.skin_shadow2_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -91px -1092px; + width: 90px; + height: 90px; +} +.customize-option.skin_shadow2_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -116px -1107px; + width: 60px; + height: 60px; +} +.skin_shadow_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -182px -1092px; + width: 90px; + height: 90px; +} +.customize-option.skin_shadow_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -207px -1107px; + width: 60px; + height: 60px; +} +.skin_shark { + background-image: url(spritesmith-main-3.png); + background-position: -273px -1092px; + width: 90px; + height: 90px; +} +.customize-option.skin_shark { + background-image: url(spritesmith-main-3.png); + background-position: -298px -1107px; + width: 60px; + height: 60px; +} +.skin_shark_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -364px -1092px; + width: 90px; + height: 90px; +} +.customize-option.skin_shark_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -389px -1107px; + width: 60px; + height: 60px; +} +.skin_skeleton { + background-image: url(spritesmith-main-3.png); + background-position: -455px -1092px; + width: 90px; + height: 90px; +} +.customize-option.skin_skeleton { + background-image: url(spritesmith-main-3.png); + background-position: -480px -1107px; + width: 60px; + height: 60px; +} +.skin_skeleton2 { + background-image: url(spritesmith-main-3.png); + background-position: -546px -1092px; + width: 90px; + height: 90px; +} +.customize-option.skin_skeleton2 { + background-image: url(spritesmith-main-3.png); + background-position: -571px -1107px; + width: 60px; + height: 60px; +} +.skin_skeleton2_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -637px -1092px; + width: 90px; + height: 90px; +} +.customize-option.skin_skeleton2_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -662px -1107px; + width: 60px; + height: 60px; +} +.skin_skeleton_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -728px -1092px; + width: 90px; + height: 90px; +} +.customize-option.skin_skeleton_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -753px -1107px; + width: 60px; + height: 60px; +} +.skin_tiger { + background-image: url(spritesmith-main-3.png); + background-position: -819px -1092px; + width: 90px; + height: 90px; +} +.customize-option.skin_tiger { + background-image: url(spritesmith-main-3.png); + background-position: -844px -1107px; + width: 60px; + height: 60px; +} +.skin_tiger_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -910px -1092px; + width: 90px; + height: 90px; +} +.customize-option.skin_tiger_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -935px -1107px; + width: 60px; + height: 60px; +} +.skin_transparent { + background-image: url(spritesmith-main-3.png); + background-position: -1001px -1092px; + width: 90px; + height: 90px; +} +.customize-option.skin_transparent { + background-image: url(spritesmith-main-3.png); + background-position: -1026px -1107px; + width: 60px; + height: 60px; +} +.skin_transparent_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -1092px -1092px; + width: 90px; + height: 90px; +} +.customize-option.skin_transparent_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -1117px -1107px; + width: 60px; + height: 60px; +} +.skin_tropicalwater { + background-image: url(spritesmith-main-3.png); + background-position: -1185px 0px; + width: 90px; + height: 90px; +} +.customize-option.skin_tropicalwater { + background-image: url(spritesmith-main-3.png); + background-position: -1210px -15px; + width: 60px; + height: 60px; +} +.skin_tropicalwater_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -1185px -91px; + width: 90px; + height: 90px; +} +.customize-option.skin_tropicalwater_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -1210px -106px; + width: 60px; + height: 60px; +} +.skin_wolf { + background-image: url(spritesmith-main-3.png); + background-position: -1185px -182px; + width: 90px; + height: 90px; +} +.customize-option.skin_wolf { + background-image: url(spritesmith-main-3.png); + background-position: -1210px -197px; + width: 60px; + height: 60px; +} +.skin_wolf_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -1185px -273px; + width: 90px; + height: 90px; +} +.customize-option.skin_wolf_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -1210px -288px; + width: 60px; + height: 60px; +} +.skin_zombie { + background-image: url(spritesmith-main-3.png); + background-position: -1185px -364px; + width: 90px; + height: 90px; +} +.customize-option.skin_zombie { + background-image: url(spritesmith-main-3.png); + background-position: -1210px -379px; + width: 60px; + height: 60px; +} +.skin_zombie2 { + background-image: url(spritesmith-main-3.png); + background-position: -1185px -455px; + width: 90px; + height: 90px; +} +.customize-option.skin_zombie2 { + background-image: url(spritesmith-main-3.png); + background-position: -1210px -470px; + width: 60px; + height: 60px; +} +.skin_zombie2_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -1185px -546px; + width: 90px; + height: 90px; +} +.customize-option.skin_zombie2_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -1210px -561px; + width: 60px; + height: 60px; +} +.skin_zombie_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -1185px -637px; + width: 90px; + height: 90px; +} +.customize-option.skin_zombie_sleep { + background-image: url(spritesmith-main-3.png); + background-position: -1210px -652px; + width: 60px; + height: 60px; +} +.broad_armor_armoire_crystalCrescentRobes { + background-image: url(spritesmith-main-3.png); + background-position: -1185px -728px; + width: 90px; + height: 90px; +} +.broad_armor_armoire_gladiatorArmor { + background-image: url(spritesmith-main-3.png); + background-position: -1185px -819px; + width: 90px; + height: 90px; +} +.broad_armor_armoire_goldenToga { + background-image: url(spritesmith-main-3.png); + background-position: -1185px -910px; + width: 90px; + height: 90px; +} +.broad_armor_armoire_hornedIronArmor { + background-image: url(spritesmith-main-3.png); + background-position: -1185px -1001px; + width: 90px; + height: 90px; +} +.broad_armor_armoire_lunarArmor { + background-image: url(spritesmith-main-3.png); + background-position: -1185px -1092px; + width: 90px; + height: 90px; +} +.broad_armor_armoire_plagueDoctorOvercoat { + background-image: url(spritesmith-main-3.png); + background-position: 0px -1183px; + width: 90px; + height: 90px; +} +.broad_armor_armoire_rancherRobes { + background-image: url(spritesmith-main-3.png); + background-position: -91px -1183px; + width: 90px; + height: 90px; +} +.broad_armor_armoire_royalRobes { + background-image: url(spritesmith-main-3.png); + background-position: -182px -1183px; + width: 90px; + height: 90px; +} +.broad_armor_armoire_shepherdRobes { + background-image: url(spritesmith-main-3.png); + background-position: -273px -1183px; + width: 90px; + height: 90px; +} +.eyewear_armoire_plagueDoctorMask { + background-image: url(spritesmith-main-3.png); + background-position: -364px -1183px; + width: 90px; + height: 90px; +} +.head_armoire_blackCat { + background-image: url(spritesmith-main-3.png); + background-position: -455px -1183px; + width: 90px; + height: 90px; +} +.head_armoire_blueFloppyHat { + background-image: url(spritesmith-main-3.png); + background-position: -546px -1183px; + width: 90px; + height: 90px; +} +.head_armoire_blueHairbow { + background-image: url(spritesmith-main-3.png); + background-position: -637px -1183px; + width: 90px; + height: 90px; +} +.head_armoire_crystalCrescentHat { + background-image: url(spritesmith-main-3.png); + background-position: -728px -1183px; + width: 90px; + height: 90px; +} +.head_armoire_gladiatorHelm { + background-image: url(spritesmith-main-3.png); + background-position: -819px -1183px; + width: 90px; + height: 90px; +} +.head_armoire_goldenLaurels { + background-image: url(spritesmith-main-3.png); + background-position: -910px -1183px; + width: 90px; + height: 90px; +} +.head_armoire_hornedIronHelm { + background-image: url(spritesmith-main-3.png); + background-position: -1001px -1183px; + width: 90px; + height: 90px; +} +.head_armoire_lunarCrown { + background-image: url(spritesmith-main-3.png); + background-position: -1092px -1183px; + width: 90px; + height: 90px; +} +.head_armoire_orangeCat { + background-image: url(spritesmith-main-3.png); + background-position: -1183px -1183px; + width: 90px; + height: 90px; +} +.head_armoire_plagueDoctorHat { + background-image: url(spritesmith-main-3.png); + background-position: -1276px 0px; + width: 90px; + height: 90px; +} +.head_armoire_rancherHat { + background-image: url(spritesmith-main-3.png); + background-position: -1276px -91px; + width: 90px; + height: 90px; +} +.head_armoire_redFloppyHat { + background-image: url(spritesmith-main-3.png); + background-position: -1276px -182px; + width: 90px; + height: 90px; +} +.head_armoire_redHairbow { + background-image: url(spritesmith-main-3.png); + background-position: -1276px -273px; + width: 90px; + height: 90px; +} +.head_armoire_royalCrown { + background-image: url(spritesmith-main-3.png); + background-position: -1276px -364px; + width: 90px; + height: 90px; +} +.head_armoire_shepherdHeaddress { + background-image: url(spritesmith-main-3.png); + background-position: -1276px -455px; + width: 90px; + height: 90px; +} +.head_armoire_violetFloppyHat { + background-image: url(spritesmith-main-3.png); + background-position: -1276px -546px; + width: 90px; + height: 90px; +} +.head_armoire_yellowHairbow { + background-image: url(spritesmith-main-3.png); + background-position: -1276px -637px; + width: 90px; + height: 90px; +} +.shield_armoire_gladiatorShield { + background-image: url(spritesmith-main-3.png); + background-position: -454px -91px; + width: 90px; + height: 90px; +} +.shield_armoire_midnightShield { + background-image: url(spritesmith-main-3.png); + background-position: -1276px -819px; + width: 90px; + height: 90px; +} +.shield_armoire_royalCane { + background-image: url(spritesmith-main-3.png); + background-position: -1276px -910px; + width: 90px; + height: 90px; +} +.shop_armor_armoire_crystalCrescentRobes { + background-image: url(spritesmith-main-3.png); + background-position: -1640px -902px; width: 40px; height: 40px; } -.shop_armor_healer_2 { +.shop_armor_armoire_gladiatorArmor { background-image: url(spritesmith-main-3.png); - background-position: -1084px -1547px; + background-position: -1640px -861px; width: 40px; height: 40px; } -.shop_armor_healer_3 { +.shop_armor_armoire_goldenToga { background-image: url(spritesmith-main-3.png); - background-position: -1043px -1547px; + background-position: -1640px -820px; width: 40px; height: 40px; } -.shop_armor_healer_4 { +.shop_armor_armoire_hornedIronArmor { background-image: url(spritesmith-main-3.png); - background-position: -1002px -1547px; + background-position: -1640px -779px; width: 40px; height: 40px; } -.shop_armor_healer_5 { +.shop_armor_armoire_lunarArmor { background-image: url(spritesmith-main-3.png); - background-position: -961px -1547px; + background-position: -1640px -738px; width: 40px; height: 40px; } -.shop_armor_rogue_1 { +.shop_armor_armoire_plagueDoctorOvercoat { background-image: url(spritesmith-main-3.png); - background-position: -920px -1547px; + background-position: -1640px -697px; width: 40px; height: 40px; } -.shop_armor_rogue_2 { +.shop_armor_armoire_rancherRobes { background-image: url(spritesmith-main-3.png); - background-position: -879px -1547px; + background-position: -1640px -656px; width: 40px; height: 40px; } -.shop_armor_rogue_3 { +.shop_armor_armoire_royalRobes { background-image: url(spritesmith-main-3.png); - background-position: -838px -1547px; + background-position: -1640px -615px; width: 40px; height: 40px; } -.shop_armor_rogue_4 { +.shop_armor_armoire_shepherdRobes { background-image: url(spritesmith-main-3.png); - background-position: -797px -1547px; + background-position: -1640px -574px; width: 40px; height: 40px; } -.shop_armor_rogue_5 { +.shop_eyewear_armoire_plagueDoctorMask { background-image: url(spritesmith-main-3.png); - background-position: -756px -1547px; + background-position: -1640px -533px; width: 40px; height: 40px; } -.shop_armor_special_0 { +.shop_head_armoire_blackCat { background-image: url(spritesmith-main-3.png); - background-position: -715px -1547px; + background-position: -1640px -492px; width: 40px; height: 40px; } -.shop_armor_special_1 { +.shop_head_armoire_blueFloppyHat { background-image: url(spritesmith-main-3.png); - background-position: -674px -1547px; + background-position: -838px -1588px; width: 40px; height: 40px; } -.shop_armor_special_2 { +.shop_head_armoire_blueHairbow { background-image: url(spritesmith-main-3.png); - background-position: -551px -1547px; + background-position: -797px -1588px; width: 40px; height: 40px; } -.shop_armor_special_finnedOceanicArmor { +.shop_head_armoire_crystalCrescentHat { background-image: url(spritesmith-main-3.png); - background-position: -510px -1547px; + background-position: -756px -1588px; width: 40px; height: 40px; } -.shop_armor_warrior_1 { +.shop_head_armoire_gladiatorHelm { background-image: url(spritesmith-main-3.png); - background-position: -469px -1547px; + background-position: -715px -1588px; width: 40px; height: 40px; } -.shop_armor_warrior_2 { +.shop_head_armoire_goldenLaurels { background-image: url(spritesmith-main-3.png); - background-position: -428px -1547px; + background-position: -674px -1588px; width: 40px; height: 40px; } -.shop_armor_warrior_3 { - background-image: url(spritesmith-main-3.png); - background-position: -387px -1547px; - width: 40px; - height: 40px; -} -.shop_armor_warrior_4 { - background-image: url(spritesmith-main-3.png); - background-position: -346px -1547px; - width: 40px; - height: 40px; -} -.shop_armor_warrior_5 { - background-image: url(spritesmith-main-3.png); - background-position: -305px -1547px; - width: 40px; - height: 40px; -} -.shop_armor_wizard_1 { - background-image: url(spritesmith-main-3.png); - background-position: -264px -1547px; - width: 40px; - height: 40px; -} -.shop_armor_wizard_2 { - background-image: url(spritesmith-main-3.png); - background-position: -223px -1547px; - width: 40px; - height: 40px; -} -.shop_armor_wizard_3 { - background-image: url(spritesmith-main-3.png); - background-position: -182px -1547px; - width: 40px; - height: 40px; -} -.shop_armor_wizard_4 { +.shop_head_armoire_hornedIronHelm { background-image: url(spritesmith-main-3.png); background-position: -633px -1588px; width: 40px; height: 40px; } +.shop_head_armoire_lunarCrown { + background-image: url(spritesmith-main-3.png); + background-position: -1640px -943px; + width: 40px; + height: 40px; +} +.shop_head_armoire_orangeCat { + background-image: url(spritesmith-main-3.png); + background-position: -551px -1588px; + width: 40px; + height: 40px; +} +.shop_head_armoire_plagueDoctorHat { + background-image: url(spritesmith-main-3.png); + background-position: -510px -1588px; + width: 40px; + height: 40px; +} +.shop_head_armoire_rancherHat { + background-image: url(spritesmith-main-3.png); + background-position: -469px -1588px; + width: 40px; + height: 40px; +} +.shop_head_armoire_redFloppyHat { + background-image: url(spritesmith-main-3.png); + background-position: -428px -1588px; + width: 40px; + height: 40px; +} +.shop_head_armoire_redHairbow { + background-image: url(spritesmith-main-3.png); + background-position: -387px -1588px; + width: 40px; + height: 40px; +} +.shop_head_armoire_royalCrown { + background-image: url(spritesmith-main-3.png); + background-position: -346px -1588px; + width: 40px; + height: 40px; +} +.shop_head_armoire_shepherdHeaddress { + background-image: url(spritesmith-main-3.png); + background-position: -305px -1588px; + width: 40px; + height: 40px; +} +.shop_head_armoire_violetFloppyHat { + background-image: url(spritesmith-main-3.png); + background-position: -264px -1588px; + width: 40px; + height: 40px; +} +.shop_head_armoire_yellowHairbow { + background-image: url(spritesmith-main-3.png); + background-position: -223px -1588px; + width: 40px; + height: 40px; +} +.shop_shield_armoire_gladiatorShield { + background-image: url(spritesmith-main-3.png); + background-position: -182px -1588px; + width: 40px; + height: 40px; +} +.shop_shield_armoire_midnightShield { + background-image: url(spritesmith-main-3.png); + background-position: -1576px -1547px; + width: 40px; + height: 40px; +} +.shop_shield_armoire_royalCane { + background-image: url(spritesmith-main-3.png); + background-position: -1535px -1547px; + width: 40px; + height: 40px; +} +.shop_weapon_armoire_basicCrossbow { + background-image: url(spritesmith-main-3.png); + background-position: -1494px -1547px; + width: 40px; + height: 40px; +} +.shop_weapon_armoire_batWand { + background-image: url(spritesmith-main-3.png); + background-position: -1453px -1547px; + width: 40px; + height: 40px; +} +.shop_weapon_armoire_blueLongbow { + background-image: url(spritesmith-main-3.png); + background-position: -1412px -1547px; + width: 40px; + height: 40px; +} +.shop_weapon_armoire_crystalCrescentStaff { + background-image: url(spritesmith-main-3.png); + background-position: -1371px -1547px; + width: 40px; + height: 40px; +} +.shop_weapon_armoire_goldWingStaff { + background-image: url(spritesmith-main-3.png); + background-position: -1330px -1547px; + width: 40px; + height: 40px; +} +.shop_weapon_armoire_ironCrook { + background-image: url(spritesmith-main-3.png); + background-position: -1207px -1547px; + width: 40px; + height: 40px; +} +.shop_weapon_armoire_lunarSceptre { + background-image: url(spritesmith-main-3.png); + background-position: -1166px -1547px; + width: 40px; + height: 40px; +} +.shop_weapon_armoire_mythmakerSword { + background-image: url(spritesmith-main-3.png); + background-position: -1125px -1547px; + width: 40px; + height: 40px; +} +.shop_weapon_armoire_rancherLasso { + background-image: url(spritesmith-main-3.png); + background-position: -1084px -1547px; + width: 40px; + height: 40px; +} +.shop_weapon_armoire_shepherdsCrook { + background-image: url(spritesmith-main-3.png); + background-position: -1043px -1547px; + width: 40px; + height: 40px; +} +.slim_armor_armoire_crystalCrescentRobes { + background-image: url(spritesmith-main-3.png); + background-position: -637px -1365px; + width: 90px; + height: 90px; +} +.slim_armor_armoire_gladiatorArmor { + background-image: url(spritesmith-main-3.png); + background-position: -728px -1365px; + width: 90px; + height: 90px; +} +.slim_armor_armoire_goldenToga { + background-image: url(spritesmith-main-3.png); + background-position: -819px -1365px; + width: 90px; + height: 90px; +} +.slim_armor_armoire_hornedIronArmor { + background-image: url(spritesmith-main-3.png); + background-position: -910px -1365px; + width: 90px; + height: 90px; +} +.slim_armor_armoire_lunarArmor { + background-image: url(spritesmith-main-3.png); + background-position: -1001px -1365px; + width: 90px; + height: 90px; +} +.slim_armor_armoire_plagueDoctorOvercoat { + background-image: url(spritesmith-main-3.png); + background-position: -1092px -1365px; + width: 90px; + height: 90px; +} +.slim_armor_armoire_rancherRobes { + background-image: url(spritesmith-main-3.png); + background-position: -1183px -1365px; + width: 90px; + height: 90px; +} +.slim_armor_armoire_royalRobes { + background-image: url(spritesmith-main-3.png); + background-position: -1274px -1365px; + width: 90px; + height: 90px; +} +.slim_armor_armoire_shepherdRobes { + background-image: url(spritesmith-main-3.png); + background-position: -1365px -1365px; + width: 90px; + height: 90px; +} +.weapon_armoire_basicCrossbow { + background-image: url(spritesmith-main-3.png); + background-position: -1458px 0px; + width: 90px; + height: 90px; +} +.weapon_armoire_batWand { + background-image: url(spritesmith-main-3.png); + background-position: -1458px -91px; + width: 90px; + height: 90px; +} +.weapon_armoire_blueLongbow { + background-image: url(spritesmith-main-3.png); + background-position: -1458px -182px; + width: 90px; + height: 90px; +} +.weapon_armoire_crystalCrescentStaff { + background-image: url(spritesmith-main-3.png); + background-position: -1458px -273px; + width: 90px; + height: 90px; +} +.weapon_armoire_goldWingStaff { + background-image: url(spritesmith-main-3.png); + background-position: -1458px -364px; + width: 90px; + height: 90px; +} +.weapon_armoire_ironCrook { + background-image: url(spritesmith-main-3.png); + background-position: -1458px -455px; + width: 90px; + height: 90px; +} +.weapon_armoire_lunarSceptre { + background-image: url(spritesmith-main-3.png); + background-position: -1458px -546px; + width: 90px; + height: 90px; +} +.weapon_armoire_mythmakerSword { + background-image: url(spritesmith-main-3.png); + background-position: -1458px -637px; + width: 90px; + height: 90px; +} +.weapon_armoire_rancherLasso { + background-image: url(spritesmith-main-3.png); + background-position: -1458px -728px; + width: 90px; + height: 90px; +} +.weapon_armoire_shepherdsCrook { + background-image: url(spritesmith-main-3.png); + background-position: -1458px -819px; + width: 90px; + height: 90px; +} +.broad_armor_healer_1 { + background-image: url(spritesmith-main-3.png); + background-position: -1458px -910px; + width: 90px; + height: 90px; +} +.broad_armor_healer_2 { + background-image: url(spritesmith-main-3.png); + background-position: -1458px -1001px; + width: 90px; + height: 90px; +} +.broad_armor_healer_3 { + background-image: url(spritesmith-main-3.png); + background-position: -1458px -1092px; + width: 90px; + height: 90px; +} +.broad_armor_healer_4 { + background-image: url(spritesmith-main-3.png); + background-position: -1458px -1183px; + width: 90px; + height: 90px; +} +.broad_armor_healer_5 { + background-image: url(spritesmith-main-3.png); + background-position: -1458px -1274px; + width: 90px; + height: 90px; +} +.broad_armor_rogue_1 { + background-image: url(spritesmith-main-3.png); + background-position: -1458px -1365px; + width: 90px; + height: 90px; +} +.broad_armor_rogue_2 { + background-image: url(spritesmith-main-3.png); + background-position: 0px -1456px; + width: 90px; + height: 90px; +} +.broad_armor_rogue_3 { + background-image: url(spritesmith-main-3.png); + background-position: -91px -1456px; + width: 90px; + height: 90px; +} +.broad_armor_rogue_4 { + background-image: url(spritesmith-main-3.png); + background-position: -182px -1456px; + width: 90px; + height: 90px; +} +.broad_armor_rogue_5 { + background-image: url(spritesmith-main-3.png); + background-position: -273px -1456px; + width: 90px; + height: 90px; +} +.broad_armor_special_2 { + background-image: url(spritesmith-main-3.png); + background-position: -364px -1456px; + width: 90px; + height: 90px; +} +.broad_armor_special_finnedOceanicArmor { + background-image: url(spritesmith-main-3.png); + background-position: -455px -1456px; + width: 90px; + height: 90px; +} +.broad_armor_warrior_1 { + background-image: url(spritesmith-main-3.png); + background-position: -546px -1456px; + width: 90px; + height: 90px; +} +.broad_armor_warrior_2 { + background-image: url(spritesmith-main-3.png); + background-position: -637px -1456px; + width: 90px; + height: 90px; +} +.broad_armor_warrior_3 { + background-image: url(spritesmith-main-3.png); + background-position: -728px -1456px; + width: 90px; + height: 90px; +} +.broad_armor_warrior_4 { + background-image: url(spritesmith-main-3.png); + background-position: -819px -1456px; + width: 90px; + height: 90px; +} +.broad_armor_warrior_5 { + background-image: url(spritesmith-main-3.png); + background-position: -910px -1456px; + width: 90px; + height: 90px; +} +.broad_armor_wizard_1 { + background-image: url(spritesmith-main-3.png); + background-position: -1001px -1456px; + width: 90px; + height: 90px; +} +.broad_armor_wizard_2 { + background-image: url(spritesmith-main-3.png); + background-position: -1092px -1456px; + width: 90px; + height: 90px; +} +.broad_armor_wizard_3 { + background-image: url(spritesmith-main-3.png); + background-position: -1183px -1456px; + width: 90px; + height: 90px; +} +.broad_armor_wizard_4 { + background-image: url(spritesmith-main-3.png); + background-position: -1274px -1456px; + width: 90px; + height: 90px; +} +.broad_armor_wizard_5 { + background-image: url(spritesmith-main-3.png); + background-position: -1365px -1456px; + width: 90px; + height: 90px; +} +.shop_armor_healer_1 { + background-image: url(spritesmith-main-3.png); + background-position: -1002px -1547px; + width: 40px; + height: 40px; +} +.shop_armor_healer_2 { + background-image: url(spritesmith-main-3.png); + background-position: -961px -1547px; + width: 40px; + height: 40px; +} +.shop_armor_healer_3 { + background-image: url(spritesmith-main-3.png); + background-position: -920px -1547px; + width: 40px; + height: 40px; +} +.shop_armor_healer_4 { + background-image: url(spritesmith-main-3.png); + background-position: -879px -1547px; + width: 40px; + height: 40px; +} +.shop_armor_healer_5 { + background-image: url(spritesmith-main-3.png); + background-position: -838px -1547px; + width: 40px; + height: 40px; +} +.shop_armor_rogue_1 { + background-image: url(spritesmith-main-3.png); + background-position: -797px -1547px; + width: 40px; + height: 40px; +} +.shop_armor_rogue_2 { + background-image: url(spritesmith-main-3.png); + background-position: -756px -1547px; + width: 40px; + height: 40px; +} +.shop_armor_rogue_3 { + background-image: url(spritesmith-main-3.png); + background-position: -715px -1547px; + width: 40px; + height: 40px; +} +.shop_armor_rogue_4 { + background-image: url(spritesmith-main-3.png); + background-position: -674px -1547px; + width: 40px; + height: 40px; +} +.shop_armor_rogue_5 { + background-image: url(spritesmith-main-3.png); + background-position: -633px -1547px; + width: 40px; + height: 40px; +} +.shop_armor_special_0 { + background-image: url(spritesmith-main-3.png); + background-position: -592px -1547px; + width: 40px; + height: 40px; +} +.shop_armor_special_1 { + background-image: url(spritesmith-main-3.png); + background-position: -551px -1547px; + width: 40px; + height: 40px; +} +.shop_armor_special_2 { + background-image: url(spritesmith-main-3.png); + background-position: -510px -1547px; + width: 40px; + height: 40px; +} +.shop_armor_special_finnedOceanicArmor { + background-image: url(spritesmith-main-3.png); + background-position: -469px -1547px; + width: 40px; + height: 40px; +} +.shop_armor_warrior_1 { + background-image: url(spritesmith-main-3.png); + background-position: -428px -1547px; + width: 40px; + height: 40px; +} +.shop_armor_warrior_2 { + background-image: url(spritesmith-main-3.png); + background-position: -387px -1547px; + width: 40px; + height: 40px; +} +.shop_armor_warrior_3 { + background-image: url(spritesmith-main-3.png); + background-position: -346px -1547px; + width: 40px; + height: 40px; +} +.shop_armor_warrior_4 { + background-image: url(spritesmith-main-3.png); + background-position: -305px -1547px; + width: 40px; + height: 40px; +} +.shop_armor_warrior_5 { + background-image: url(spritesmith-main-3.png); + background-position: -264px -1547px; + width: 40px; + height: 40px; +} +.shop_armor_wizard_1 { + background-image: url(spritesmith-main-3.png); + background-position: -376px -273px; + width: 40px; + height: 40px; +} +.shop_armor_wizard_2 { + background-image: url(spritesmith-main-3.png); + background-position: -592px -1588px; + width: 40px; + height: 40px; +} +.shop_armor_wizard_3 { + background-image: url(spritesmith-main-3.png); + background-position: -376px -314px; + width: 40px; + height: 40px; +} +.shop_armor_wizard_4 { + background-image: url(spritesmith-main-3.png); + background-position: -182px -1547px; + width: 40px; + height: 40px; +} .shop_armor_wizard_5 { background-image: url(spritesmith-main-3.png); - background-position: -400px -314px; + background-position: -223px -1547px; width: 40px; height: 40px; } .slim_armor_healer_1 { background-image: url(spritesmith-main-3.png); - background-position: -1549px -637px; + background-position: 0px -1547px; width: 90px; height: 90px; } .slim_armor_healer_2 { background-image: url(spritesmith-main-3.png); - background-position: -1549px -728px; + background-position: -1549px -1456px; width: 90px; height: 90px; } .slim_armor_healer_3 { background-image: url(spritesmith-main-3.png); - background-position: -1549px -819px; + background-position: -1549px -1365px; width: 90px; height: 90px; } .slim_armor_healer_4 { background-image: url(spritesmith-main-3.png); - background-position: -1549px -910px; + background-position: -1549px -1274px; width: 90px; height: 90px; } .slim_armor_healer_5 { background-image: url(spritesmith-main-3.png); - background-position: -1549px -1001px; + background-position: -1549px -1183px; width: 90px; height: 90px; } @@ -2784,475 +2922,475 @@ } .slim_armor_rogue_2 { background-image: url(spritesmith-main-3.png); - background-position: -1549px -1183px; + background-position: -1549px -1001px; width: 90px; height: 90px; } .slim_armor_rogue_3 { background-image: url(spritesmith-main-3.png); - background-position: -1549px -1274px; + background-position: -1549px -910px; width: 90px; height: 90px; } .slim_armor_rogue_4 { background-image: url(spritesmith-main-3.png); - background-position: -1549px -1365px; + background-position: -1549px -819px; width: 90px; height: 90px; } .slim_armor_rogue_5 { background-image: url(spritesmith-main-3.png); - background-position: -1549px -1456px; + background-position: -1549px -728px; width: 90px; height: 90px; } .slim_armor_special_2 { background-image: url(spritesmith-main-3.png); - background-position: 0px -1547px; + background-position: -1549px -637px; width: 90px; height: 90px; } .slim_armor_special_finnedOceanicArmor { background-image: url(spritesmith-main-3.png); - background-position: -91px -1547px; + background-position: -1549px -546px; width: 90px; height: 90px; } .slim_armor_warrior_1 { background-image: url(spritesmith-main-3.png); - background-position: -1549px -546px; + background-position: -1549px -455px; width: 90px; height: 90px; } .slim_armor_warrior_2 { background-image: url(spritesmith-main-3.png); - background-position: -1549px -455px; + background-position: -1549px -364px; width: 90px; height: 90px; } .slim_armor_warrior_3 { background-image: url(spritesmith-main-3.png); - background-position: -1549px -364px; + background-position: -1549px -273px; width: 90px; height: 90px; } .slim_armor_warrior_4 { background-image: url(spritesmith-main-3.png); - background-position: -1549px -273px; + background-position: -1549px -182px; width: 90px; height: 90px; } .slim_armor_warrior_5 { background-image: url(spritesmith-main-3.png); - background-position: -1549px -182px; + background-position: -1549px -91px; width: 90px; height: 90px; } .slim_armor_wizard_1 { background-image: url(spritesmith-main-3.png); - background-position: -1549px -91px; + background-position: -1549px 0px; width: 90px; height: 90px; } .slim_armor_wizard_2 { background-image: url(spritesmith-main-3.png); - background-position: -1549px 0px; + background-position: -1456px -1456px; width: 90px; height: 90px; } .slim_armor_wizard_3 { background-image: url(spritesmith-main-3.png); - background-position: -1456px -1456px; + background-position: -546px -1365px; width: 90px; height: 90px; } .slim_armor_wizard_4 { background-image: url(spritesmith-main-3.png); - background-position: -1365px -1456px; + background-position: -455px -1365px; width: 90px; height: 90px; } .slim_armor_wizard_5 { background-image: url(spritesmith-main-3.png); - background-position: -1274px -1456px; + background-position: -364px -1365px; width: 90px; height: 90px; } .broad_armor_special_birthday { background-image: url(spritesmith-main-3.png); - background-position: -1183px -1456px; + background-position: -273px -1365px; width: 90px; height: 90px; } .broad_armor_special_birthday2015 { background-image: url(spritesmith-main-3.png); - background-position: -1092px -1456px; + background-position: -182px -1365px; width: 90px; height: 90px; } .shop_armor_special_birthday { background-image: url(spritesmith-main-3.png); - background-position: -592px -1547px; + background-position: -1248px -1547px; width: 40px; height: 40px; } .shop_armor_special_birthday2015 { background-image: url(spritesmith-main-3.png); - background-position: -633px -1547px; + background-position: -1289px -1547px; width: 40px; height: 40px; } .slim_armor_special_birthday { background-image: url(spritesmith-main-3.png); - background-position: -1001px -1456px; + background-position: -91px -1365px; width: 90px; height: 90px; } .slim_armor_special_birthday2015 { background-image: url(spritesmith-main-3.png); - background-position: -910px -1456px; + background-position: 0px -1365px; width: 90px; height: 90px; } .broad_armor_special_fall2015Healer { background-image: url(spritesmith-main-3.png); - background-position: -212px -273px; + background-position: -282px -273px; width: 93px; height: 90px; } .broad_armor_special_fall2015Mage { background-image: url(spritesmith-main-3.png); - background-position: -106px -273px; + background-position: -212px -182px; width: 105px; height: 90px; } .broad_armor_special_fall2015Rogue { background-image: url(spritesmith-main-3.png); - background-position: -637px -1456px; + background-position: -1367px -1092px; width: 90px; height: 90px; } .broad_armor_special_fall2015Warrior { background-image: url(spritesmith-main-3.png); - background-position: -546px -1456px; + background-position: -1367px -1001px; width: 90px; height: 90px; } .broad_armor_special_fallHealer { background-image: url(spritesmith-main-3.png); - background-position: -455px -1456px; + background-position: -1367px -910px; width: 90px; height: 90px; } .broad_armor_special_fallMage { background-image: url(spritesmith-main-3.png); - background-position: -121px -91px; + background-position: 0px -91px; width: 120px; height: 90px; } .broad_armor_special_fallRogue { background-image: url(spritesmith-main-3.png); - background-position: -348px -182px; + background-position: -348px -91px; width: 105px; height: 90px; } .broad_armor_special_fallWarrior { background-image: url(spritesmith-main-3.png); - background-position: -182px -1456px; + background-position: -1367px -637px; width: 90px; height: 90px; } .head_special_fall2015Healer { background-image: url(spritesmith-main-3.png); - background-position: -306px -273px; + background-position: -94px -273px; width: 93px; height: 90px; } .head_special_fall2015Mage { background-image: url(spritesmith-main-3.png); - background-position: -348px -91px; + background-position: -348px 0px; width: 105px; height: 90px; } .head_special_fall2015Rogue { background-image: url(spritesmith-main-3.png); - background-position: -1367px -728px; + background-position: -1367px -364px; width: 90px; height: 90px; } .head_special_fall2015Warrior { background-image: url(spritesmith-main-3.png); - background-position: -1367px -637px; + background-position: -1367px -273px; width: 90px; height: 90px; } .head_special_fallHealer { background-image: url(spritesmith-main-3.png); - background-position: -1367px -546px; + background-position: -1367px -182px; width: 90px; height: 90px; } .head_special_fallMage { background-image: url(spritesmith-main-3.png); - background-position: 0px -91px; + background-position: -121px 0px; width: 120px; height: 90px; } .head_special_fallRogue { background-image: url(spritesmith-main-3.png); - background-position: -212px -182px; + background-position: -106px -182px; width: 105px; height: 90px; } .head_special_fallWarrior { background-image: url(spritesmith-main-3.png); - background-position: -1367px -273px; + background-position: -1274px -1274px; width: 90px; height: 90px; } .shield_special_fall2015Healer { background-image: url(spritesmith-main-3.png); - background-position: -454px 0px; + background-position: 0px -273px; width: 93px; height: 90px; } .shield_special_fall2015Rogue { background-image: url(spritesmith-main-3.png); - background-position: 0px -273px; + background-position: -242px -91px; width: 105px; height: 90px; } .shield_special_fall2015Warrior { background-image: url(spritesmith-main-3.png); - background-position: -1367px 0px; + background-position: -1001px -1274px; width: 90px; height: 90px; } .shield_special_fallHealer { background-image: url(spritesmith-main-3.png); - background-position: -1274px -1274px; + background-position: -910px -1274px; width: 90px; height: 90px; } .shield_special_fallRogue { background-image: url(spritesmith-main-3.png); - background-position: 0px -182px; + background-position: -242px 0px; width: 105px; height: 90px; } .shield_special_fallWarrior { background-image: url(spritesmith-main-3.png); - background-position: -1092px -1274px; + background-position: -728px -1274px; width: 90px; height: 90px; } .shop_armor_special_fall2015Healer { background-image: url(spritesmith-main-3.png); - background-position: -223px -1588px; + background-position: -879px -1588px; width: 40px; height: 40px; } .shop_armor_special_fall2015Mage { background-image: url(spritesmith-main-3.png); - background-position: -264px -1588px; + background-position: -920px -1588px; width: 40px; height: 40px; } .shop_armor_special_fall2015Rogue { background-image: url(spritesmith-main-3.png); - background-position: -305px -1588px; + background-position: -961px -1588px; width: 40px; height: 40px; } .shop_armor_special_fall2015Warrior { background-image: url(spritesmith-main-3.png); - background-position: -346px -1588px; + background-position: -1002px -1588px; width: 40px; height: 40px; } .shop_armor_special_fallHealer { background-image: url(spritesmith-main-3.png); - background-position: -387px -1588px; + background-position: -1043px -1588px; width: 40px; height: 40px; } .shop_armor_special_fallMage { background-image: url(spritesmith-main-3.png); - background-position: -428px -1588px; + background-position: -1084px -1588px; width: 40px; height: 40px; } .shop_armor_special_fallRogue { background-image: url(spritesmith-main-3.png); - background-position: -469px -1588px; + background-position: -1125px -1588px; width: 40px; height: 40px; } .shop_armor_special_fallWarrior { background-image: url(spritesmith-main-3.png); - background-position: -510px -1588px; + background-position: -1166px -1588px; width: 40px; height: 40px; } .shop_head_special_fall2015Healer { background-image: url(spritesmith-main-3.png); - background-position: -551px -1588px; + background-position: -1207px -1588px; width: 40px; height: 40px; } .shop_head_special_fall2015Mage { background-image: url(spritesmith-main-3.png); - background-position: -592px -1588px; + background-position: -1248px -1588px; width: 40px; height: 40px; } .shop_head_special_fall2015Rogue { background-image: url(spritesmith-main-3.png); - background-position: -400px -273px; + background-position: -1289px -1588px; width: 40px; height: 40px; } .shop_head_special_fall2015Warrior { background-image: url(spritesmith-main-3.png); - background-position: -674px -1588px; + background-position: -1330px -1588px; width: 40px; height: 40px; } .shop_head_special_fallHealer { background-image: url(spritesmith-main-3.png); - background-position: -715px -1588px; + background-position: -1371px -1588px; width: 40px; height: 40px; } .shop_head_special_fallMage { background-image: url(spritesmith-main-3.png); - background-position: -756px -1588px; + background-position: -1412px -1588px; width: 40px; height: 40px; } .shop_head_special_fallRogue { background-image: url(spritesmith-main-3.png); - background-position: -797px -1588px; + background-position: -1453px -1588px; width: 40px; height: 40px; } .shop_head_special_fallWarrior { background-image: url(spritesmith-main-3.png); - background-position: -838px -1588px; + background-position: -1494px -1588px; width: 40px; height: 40px; } .shop_shield_special_fall2015Healer { background-image: url(spritesmith-main-3.png); - background-position: -879px -1588px; + background-position: -1535px -1588px; width: 40px; height: 40px; } .shop_shield_special_fall2015Rogue { background-image: url(spritesmith-main-3.png); - background-position: -920px -1588px; + background-position: -1576px -1588px; width: 40px; height: 40px; } .shop_shield_special_fall2015Warrior { background-image: url(spritesmith-main-3.png); - background-position: -961px -1588px; + background-position: -1640px 0px; width: 40px; height: 40px; } .shop_shield_special_fallHealer { background-image: url(spritesmith-main-3.png); - background-position: -1002px -1588px; + background-position: -1640px -41px; width: 40px; height: 40px; } .shop_shield_special_fallRogue { background-image: url(spritesmith-main-3.png); - background-position: -1043px -1588px; + background-position: -1640px -82px; width: 40px; height: 40px; } .shop_shield_special_fallWarrior { background-image: url(spritesmith-main-3.png); - background-position: -1084px -1588px; + background-position: -1640px -123px; width: 40px; height: 40px; } .shop_weapon_special_fall2015Healer { background-image: url(spritesmith-main-3.png); - background-position: -1125px -1588px; + background-position: -1640px -164px; width: 40px; height: 40px; } .shop_weapon_special_fall2015Mage { background-image: url(spritesmith-main-3.png); - background-position: -1166px -1588px; + background-position: -1640px -205px; width: 40px; height: 40px; } .shop_weapon_special_fall2015Rogue { background-image: url(spritesmith-main-3.png); - background-position: -1207px -1588px; + background-position: -1640px -246px; width: 40px; height: 40px; } .shop_weapon_special_fall2015Warrior { background-image: url(spritesmith-main-3.png); - background-position: -1248px -1588px; + background-position: -1640px -287px; width: 40px; height: 40px; } .shop_weapon_special_fallHealer { background-image: url(spritesmith-main-3.png); - background-position: -1289px -1588px; + background-position: -1640px -328px; width: 40px; height: 40px; } .shop_weapon_special_fallMage { background-image: url(spritesmith-main-3.png); - background-position: -1330px -1588px; + background-position: -1640px -369px; width: 40px; height: 40px; } .shop_weapon_special_fallRogue { background-image: url(spritesmith-main-3.png); - background-position: -1371px -1588px; + background-position: -1640px -410px; width: 40px; height: 40px; } .shop_weapon_special_fallWarrior { background-image: url(spritesmith-main-3.png); - background-position: -1412px -1588px; + background-position: -1640px -451px; width: 40px; height: 40px; } .slim_armor_special_fall2015Healer { background-image: url(spritesmith-main-3.png); - background-position: -454px -91px; + background-position: -454px 0px; width: 93px; height: 90px; } .slim_armor_special_fall2015Mage { background-image: url(spritesmith-main-3.png); - background-position: -242px -91px; + background-position: -348px -182px; width: 105px; height: 90px; } .slim_armor_special_fall2015Rogue { background-image: url(spritesmith-main-3.png); - background-position: -819px -1274px; + background-position: -455px -1274px; width: 90px; height: 90px; } .slim_armor_special_fall2015Warrior { background-image: url(spritesmith-main-3.png); - background-position: -728px -1274px; + background-position: -364px -1274px; width: 90px; height: 90px; } .slim_armor_special_fallHealer { background-image: url(spritesmith-main-3.png); - background-position: -637px -1274px; + background-position: -273px -1274px; width: 90px; height: 90px; } @@ -3264,139 +3402,37 @@ } .slim_armor_special_fallRogue { background-image: url(spritesmith-main-3.png); - background-position: -348px 0px; + background-position: 0px -182px; width: 105px; height: 90px; } .slim_armor_special_fallWarrior { background-image: url(spritesmith-main-3.png); - background-position: -364px -1274px; + background-position: 0px -1274px; width: 90px; height: 90px; } .weapon_special_fall2015Healer { background-image: url(spritesmith-main-3.png); - background-position: -454px -182px; + background-position: -188px -273px; width: 93px; height: 90px; } .weapon_special_fall2015Mage { background-image: url(spritesmith-main-3.png); - background-position: -106px -182px; + background-position: -121px -91px; width: 105px; height: 90px; } .weapon_special_fall2015Rogue { background-image: url(spritesmith-main-3.png); - background-position: -91px -1274px; + background-position: -1276px -1001px; width: 90px; height: 90px; } .weapon_special_fall2015Warrior { background-image: url(spritesmith-main-3.png); - background-position: 0px -1274px; - width: 90px; - height: 90px; -} -.weapon_special_fallHealer { - background-image: url(spritesmith-main-3.png); - background-position: -1276px -1183px; - width: 90px; - height: 90px; -} -.weapon_special_fallMage { - background-image: url(spritesmith-main-3.png); - background-position: -121px 0px; - width: 120px; - height: 90px; -} -.weapon_special_fallRogue { - background-image: url(spritesmith-main-3.png); - background-position: -242px 0px; - width: 105px; - height: 90px; -} -.weapon_special_fallWarrior { - background-image: url(spritesmith-main-3.png); - background-position: -1276px -910px; - width: 90px; - height: 90px; -} -.broad_armor_special_gaymerx { - background-image: url(spritesmith-main-3.png); - background-position: -1276px -819px; - width: 90px; - height: 90px; -} -.head_special_gaymerx { - background-image: url(spritesmith-main-3.png); - background-position: -1276px -637px; - width: 90px; - height: 90px; -} -.shop_armor_special_gaymerx { - background-image: url(spritesmith-main-3.png); - background-position: -1640px -574px; - width: 40px; - height: 40px; -} -.shop_head_special_gaymerx { - background-image: url(spritesmith-main-3.png); - background-position: -1640px -615px; - width: 40px; - height: 40px; -} -.slim_armor_special_gaymerx { - background-image: url(spritesmith-main-3.png); - background-position: -1276px -546px; - width: 90px; - height: 90px; -} -.back_mystery_201402 { - background-image: url(spritesmith-main-3.png); - background-position: -1276px -455px; - width: 90px; - height: 90px; -} -.broad_armor_mystery_201402 { - background-image: url(spritesmith-main-3.png); - background-position: -1276px -364px; - width: 90px; - height: 90px; -} -.head_mystery_201402 { - background-image: url(spritesmith-main-3.png); - background-position: -1276px -273px; - width: 90px; - height: 90px; -} -.shop_armor_mystery_201402 { - background-image: url(spritesmith-main-3.png); - background-position: -1640px -820px; - width: 40px; - height: 40px; -} -.shop_back_mystery_201402 { - background-image: url(spritesmith-main-3.png); - background-position: -1640px -861px; - width: 40px; - height: 40px; -} -.shop_head_mystery_201402 { - background-image: url(spritesmith-main-3.png); - background-position: -1640px -902px; - width: 40px; - height: 40px; -} -.slim_armor_mystery_201402 { - background-image: url(spritesmith-main-3.png); - background-position: -1276px -182px; - width: 90px; - height: 90px; -} -.broad_armor_mystery_201403 { - background-image: url(spritesmith-main-3.png); - background-position: -1276px -1001px; + background-position: -91px -1547px; width: 90px; height: 90px; } diff --git a/common/dist/sprites/spritesmith-main-3.png b/common/dist/sprites/spritesmith-main-3.png index 7ea90fbcb7..d62abf85f5 100644 Binary files a/common/dist/sprites/spritesmith-main-3.png and b/common/dist/sprites/spritesmith-main-3.png differ diff --git a/common/dist/sprites/spritesmith-main-4.css b/common/dist/sprites/spritesmith-main-4.css index 9421578b4d..87772d3be8 100644 --- a/common/dist/sprites/spritesmith-main-4.css +++ b/common/dist/sprites/spritesmith-main-4.css @@ -1,1668 +1,1770 @@ -.headAccessory_mystery_201403 { - background-image: url(spritesmith-main-4.png); - background-position: -910px -1061px; - width: 90px; - height: 90px; -} -.shop_armor_mystery_201403 { - background-image: url(spritesmith-main-4.png); - background-position: -1605px -1435px; - width: 40px; - height: 40px; -} -.shop_headAccessory_mystery_201403 { - background-image: url(spritesmith-main-4.png); - background-position: -1564px -1025px; - width: 40px; - height: 40px; -} -.slim_armor_mystery_201403 { - background-image: url(spritesmith-main-4.png); - background-position: -1109px -728px; - width: 90px; - height: 90px; -} -.back_mystery_201404 { - background-image: url(spritesmith-main-4.png); - background-position: -1001px -1061px; - width: 90px; - height: 90px; -} -.headAccessory_mystery_201404 { - background-image: url(spritesmith-main-4.png); - background-position: -1092px -1061px; - width: 90px; - height: 90px; -} -.shop_back_mystery_201404 { - background-image: url(spritesmith-main-4.png); - background-position: -1564px -533px; - width: 40px; - height: 40px; -} -.shop_headAccessory_mystery_201404 { - background-image: url(spritesmith-main-4.png); - background-position: -1564px -902px; - width: 40px; - height: 40px; -} -.broad_armor_mystery_201405 { - background-image: url(spritesmith-main-4.png); - background-position: -637px -970px; - width: 90px; - height: 90px; -} -.head_mystery_201405 { - background-image: url(spritesmith-main-4.png); - background-position: -728px -970px; - width: 90px; - height: 90px; -} -.shop_armor_mystery_201405 { - background-image: url(spritesmith-main-4.png); - background-position: -697px -1557px; - width: 40px; - height: 40px; -} -.shop_head_mystery_201405 { - background-image: url(spritesmith-main-4.png); - background-position: -246px -1516px; - width: 40px; - height: 40px; -} -.slim_armor_mystery_201405 { - background-image: url(spritesmith-main-4.png); - background-position: -1001px -970px; - width: 90px; - height: 90px; -} -.broad_armor_mystery_201406 { - background-image: url(spritesmith-main-4.png); - background-position: -739px -212px; - width: 90px; - height: 96px; -} -.head_mystery_201406 { - background-image: url(spritesmith-main-4.png); - background-position: -830px -188px; - width: 90px; - height: 96px; -} -.shop_armor_mystery_201406 { - background-image: url(spritesmith-main-4.png); - background-position: -164px -1557px; - width: 40px; - height: 40px; -} -.shop_head_mystery_201406 { - background-image: url(spritesmith-main-4.png); - background-position: -205px -1557px; - width: 40px; - height: 40px; -} -.slim_armor_mystery_201406 { - background-image: url(spritesmith-main-4.png); - background-position: -830px -91px; - width: 90px; - height: 96px; -} -.broad_armor_mystery_201407 { - background-image: url(spritesmith-main-4.png); - background-position: -1200px 0px; - width: 90px; - height: 90px; -} -.head_mystery_201407 { - background-image: url(spritesmith-main-4.png); - background-position: -1200px -273px; - width: 90px; - height: 90px; -} -.shop_armor_mystery_201407 { - background-image: url(spritesmith-main-4.png); - background-position: -369px -1516px; - width: 40px; - height: 40px; -} -.shop_head_mystery_201407 { - background-image: url(spritesmith-main-4.png); - background-position: -1564px -492px; - width: 40px; - height: 40px; -} -.slim_armor_mystery_201407 { - background-image: url(spritesmith-main-4.png); - background-position: -1200px -364px; - width: 90px; - height: 90px; -} -.broad_armor_mystery_201408 { - background-image: url(spritesmith-main-4.png); - background-position: -1200px -455px; - width: 90px; - height: 90px; -} -.head_mystery_201408 { - background-image: url(spritesmith-main-4.png); - background-position: -1200px -546px; - width: 90px; - height: 90px; -} -.shop_armor_mystery_201408 { - background-image: url(spritesmith-main-4.png); - background-position: -1564px -1066px; - width: 40px; - height: 40px; -} -.shop_head_mystery_201408 { - background-image: url(spritesmith-main-4.png); - background-position: -41px -1557px; - width: 40px; - height: 40px; -} -.slim_armor_mystery_201408 { - background-image: url(spritesmith-main-4.png); - background-position: 0px -1152px; - width: 90px; - height: 90px; -} -.broad_armor_mystery_201409 { - background-image: url(spritesmith-main-4.png); - background-position: -91px -1152px; - width: 90px; - height: 90px; -} -.headAccessory_mystery_201409 { - background-image: url(spritesmith-main-4.png); - background-position: -455px -970px; - width: 90px; - height: 90px; -} -.shop_armor_mystery_201409 { - background-image: url(spritesmith-main-4.png); - background-position: -451px -1557px; - width: 40px; - height: 40px; -} -.shop_headAccessory_mystery_201409 { - background-image: url(spritesmith-main-4.png); - background-position: -656px -1557px; - width: 40px; - height: 40px; -} -.slim_armor_mystery_201409 { - background-image: url(spritesmith-main-4.png); - background-position: -546px -970px; - width: 90px; - height: 90px; -} -.back_mystery_201410 { - background-image: url(spritesmith-main-4.png); - background-position: -830px -558px; - width: 93px; - height: 90px; -} -.broad_armor_mystery_201410 { - background-image: url(spritesmith-main-4.png); - background-position: -830px -285px; - width: 93px; - height: 90px; -} -.shop_armor_mystery_201410 { - background-image: url(spritesmith-main-4.png); - background-position: -1564px -328px; - width: 40px; - height: 40px; -} -.shop_back_mystery_201410 { - background-image: url(spritesmith-main-4.png); - background-position: -1564px -369px; - width: 40px; - height: 40px; -} -.slim_armor_mystery_201410 { - background-image: url(spritesmith-main-4.png); - background-position: -94px -788px; - width: 93px; - height: 90px; -} -.head_mystery_201411 { - background-image: url(spritesmith-main-4.png); - background-position: -1109px 0px; - width: 90px; - height: 90px; -} -.shop_head_mystery_201411 { - background-image: url(spritesmith-main-4.png); - background-position: -1564px -820px; - width: 40px; - height: 40px; -} -.shop_weapon_mystery_201411 { - background-image: url(spritesmith-main-4.png); - background-position: -1564px -861px; - width: 40px; - height: 40px; -} -.weapon_mystery_201411 { - background-image: url(spritesmith-main-4.png); - background-position: -1109px -91px; - width: 90px; - height: 90px; -} -.broad_armor_mystery_201412 { - background-image: url(spritesmith-main-4.png); - background-position: -1109px -182px; - width: 90px; - height: 90px; -} -.head_mystery_201412 { - background-image: url(spritesmith-main-4.png); - background-position: -1109px -273px; - width: 90px; - height: 90px; -} -.shop_armor_mystery_201412 { - background-image: url(spritesmith-main-4.png); - background-position: -1564px -1394px; - width: 40px; - height: 40px; -} -.shop_head_mystery_201412 { - background-image: url(spritesmith-main-4.png); - background-position: 0px -1557px; - width: 40px; - height: 40px; -} -.slim_armor_mystery_201412 { - background-image: url(spritesmith-main-4.png); - background-position: -1109px -364px; - width: 90px; - height: 90px; -} -.broad_armor_mystery_201501 { - background-image: url(spritesmith-main-4.png); - background-position: -1109px -455px; - width: 90px; - height: 90px; -} -.head_mystery_201501 { - background-image: url(spritesmith-main-4.png); - background-position: -1109px -546px; - width: 90px; - height: 90px; -} -.shop_armor_mystery_201501 { - background-image: url(spritesmith-main-4.png); - background-position: -246px -1557px; - width: 40px; - height: 40px; -} -.shop_head_mystery_201501 { - background-image: url(spritesmith-main-4.png); - background-position: -369px -1557px; - width: 40px; - height: 40px; -} -.slim_armor_mystery_201501 { - background-image: url(spritesmith-main-4.png); - background-position: -1109px -819px; - width: 90px; - height: 90px; -} -.headAccessory_mystery_201502 { - background-image: url(spritesmith-main-4.png); - background-position: -1109px -910px; - width: 90px; - height: 90px; -} -.shop_headAccessory_mystery_201502 { - background-image: url(spritesmith-main-4.png); - background-position: -574px -1557px; - width: 40px; - height: 40px; -} -.shop_weapon_mystery_201502 { - background-image: url(spritesmith-main-4.png); - background-position: -615px -1557px; - width: 40px; - height: 40px; -} -.weapon_mystery_201502 { - background-image: url(spritesmith-main-4.png); - background-position: 0px -1061px; - width: 90px; - height: 90px; -} -.broad_armor_mystery_201503 { - background-image: url(spritesmith-main-4.png); - background-position: -91px -1061px; - width: 90px; - height: 90px; -} -.eyewear_mystery_201503 { - background-image: url(spritesmith-main-4.png); - background-position: -182px -1061px; - width: 90px; - height: 90px; -} -.shop_armor_mystery_201503 { - background-image: url(spritesmith-main-4.png); - background-position: -287px -1516px; - width: 40px; - height: 40px; -} -.shop_eyewear_mystery_201503 { - background-image: url(spritesmith-main-4.png); - background-position: -328px -1516px; - width: 40px; - height: 40px; -} -.slim_armor_mystery_201503 { - background-image: url(spritesmith-main-4.png); - background-position: -273px -1061px; - width: 90px; - height: 90px; -} -.back_mystery_201504 { - background-image: url(spritesmith-main-4.png); - background-position: -364px -1061px; - width: 90px; - height: 90px; -} -.broad_armor_mystery_201504 { - background-image: url(spritesmith-main-4.png); - background-position: -455px -1061px; - width: 90px; - height: 90px; -} -.shop_armor_mystery_201504 { - background-image: url(spritesmith-main-4.png); - background-position: -1564px -410px; - width: 40px; - height: 40px; -} -.shop_back_mystery_201504 { - background-image: url(spritesmith-main-4.png); - background-position: -1564px -451px; - width: 40px; - height: 40px; -} -.slim_armor_mystery_201504 { - background-image: url(spritesmith-main-4.png); - background-position: -546px -1061px; - width: 90px; - height: 90px; -} -.head_mystery_201505 { - background-image: url(spritesmith-main-4.png); - background-position: -637px -1061px; - width: 90px; - height: 90px; -} -.shop_head_mystery_201505 { - background-image: url(spritesmith-main-4.png); - background-position: -1564px -738px; - width: 40px; - height: 40px; -} -.shop_weapon_mystery_201505 { - background-image: url(spritesmith-main-4.png); - background-position: -1564px -779px; - width: 40px; - height: 40px; -} -.weapon_mystery_201505 { - background-image: url(spritesmith-main-4.png); - background-position: -819px -1061px; - width: 90px; - height: 90px; -} -.broad_armor_mystery_201506 { - background-image: url(spritesmith-main-4.png); - background-position: 0px -591px; - width: 90px; - height: 105px; -} -.eyewear_mystery_201506 { - background-image: url(spritesmith-main-4.png); - background-position: -273px -591px; - width: 90px; - height: 105px; -} -.shop_armor_mystery_201506 { - background-image: url(spritesmith-main-4.png); - background-position: -1564px -943px; - width: 40px; - height: 40px; -} -.shop_eyewear_mystery_201506 { - background-image: url(spritesmith-main-4.png); - background-position: -1564px -984px; - width: 40px; - height: 40px; -} -.slim_armor_mystery_201506 { - background-image: url(spritesmith-main-4.png); - background-position: -739px -106px; - width: 90px; - height: 105px; -} -.back_mystery_201507 { - background-image: url(spritesmith-main-4.png); - background-position: -455px -591px; - width: 90px; - height: 105px; -} -.eyewear_mystery_201507 { - background-image: url(spritesmith-main-4.png); - background-position: -364px -591px; - width: 90px; - height: 105px; -} -.shop_back_mystery_201507 { - background-image: url(spritesmith-main-4.png); - background-position: -1564px -1435px; - width: 40px; - height: 40px; -} -.shop_eyewear_mystery_201507 { - background-image: url(spritesmith-main-4.png); - background-position: -1564px -1476px; - width: 40px; - height: 40px; -} -.broad_armor_mystery_201508 { - background-image: url(spritesmith-main-4.png); - background-position: -830px -467px; - width: 93px; - height: 90px; -} -.head_mystery_201508 { - background-image: url(spritesmith-main-4.png); - background-position: 0px -788px; - width: 93px; - height: 90px; -} -.shop_armor_mystery_201508 { - background-image: url(spritesmith-main-4.png); - background-position: -82px -1557px; - width: 40px; - height: 40px; -} -.shop_head_mystery_201508 { - background-image: url(spritesmith-main-4.png); - background-position: -123px -1557px; - width: 40px; - height: 40px; -} -.slim_armor_mystery_201508 { - background-image: url(spritesmith-main-4.png); - background-position: -830px -376px; - width: 93px; - height: 90px; -} -.broad_armor_mystery_201509 { - background-image: url(spritesmith-main-4.png); - background-position: -1200px -637px; - width: 90px; - height: 90px; -} -.head_mystery_201509 { - background-image: url(spritesmith-main-4.png); - background-position: -1200px -728px; - width: 90px; - height: 90px; -} -.shop_armor_mystery_201509 { - background-image: url(spritesmith-main-4.png); - background-position: -287px -1557px; - width: 40px; - height: 40px; -} -.shop_head_mystery_201509 { - background-image: url(spritesmith-main-4.png); - background-position: -328px -1557px; - width: 40px; - height: 40px; -} -.slim_armor_mystery_201509 { - background-image: url(spritesmith-main-4.png); - background-position: -1200px -1001px; - width: 90px; - height: 90px; -} -.back_mystery_201510 { - background-image: url(spritesmith-main-4.png); - background-position: -536px -394px; - width: 105px; - height: 90px; -} -.headAccessory_mystery_201510 { - background-image: url(spritesmith-main-4.png); - background-position: -830px -649px; - width: 93px; - height: 90px; -} -.shop_back_mystery_201510 { - background-image: url(spritesmith-main-4.png); - background-position: -492px -1557px; - width: 40px; - height: 40px; -} -.shop_headAccessory_mystery_201510 { - background-image: url(spritesmith-main-4.png); - background-position: -533px -1557px; - width: 40px; - height: 40px; -} -.broad_armor_mystery_201511 { - background-image: url(spritesmith-main-4.png); - background-position: -182px -1152px; - width: 90px; - height: 90px; -} -.head_mystery_201511 { - background-image: url(spritesmith-main-4.png); - background-position: -273px -1152px; - width: 90px; - height: 90px; -} -.shop_armor_mystery_201511 { - background-image: url(spritesmith-main-4.png); - background-position: -1516px -1365px; - width: 42px; - height: 42px; -} -.shop_head_mystery_201511 { - background-image: url(spritesmith-main-4.png); - background-position: -1473px -1365px; - width: 42px; - height: 42px; -} -.slim_armor_mystery_201511 { - background-image: url(spritesmith-main-4.png); - background-position: -1291px -546px; - width: 90px; - height: 90px; -} -.broad_armor_mystery_301404 { - background-image: url(spritesmith-main-4.png); - background-position: -1291px -819px; - width: 90px; - height: 90px; -} -.eyewear_mystery_301404 { - background-image: url(spritesmith-main-4.png); - background-position: -1291px -1092px; - width: 90px; - height: 90px; -} -.head_mystery_301404 { - background-image: url(spritesmith-main-4.png); - background-position: -637px -1243px; - width: 90px; - height: 90px; -} -.shop_armor_mystery_301404 { - background-image: url(spritesmith-main-4.png); - background-position: -1564px -164px; - width: 40px; - height: 40px; -} -.shop_eyewear_mystery_301404 { - background-image: url(spritesmith-main-4.png); - background-position: -1564px -205px; - width: 40px; - height: 40px; -} -.shop_head_mystery_301404 { - background-image: url(spritesmith-main-4.png); - background-position: -1564px -246px; - width: 40px; - height: 40px; -} -.shop_weapon_mystery_301404 { - background-image: url(spritesmith-main-4.png); - background-position: -1564px -287px; - width: 40px; - height: 40px; -} -.slim_armor_mystery_301404 { - background-image: url(spritesmith-main-4.png); - background-position: -1382px 0px; - width: 90px; - height: 90px; -} -.weapon_mystery_301404 { - background-image: url(spritesmith-main-4.png); - background-position: -182px -1425px; - width: 90px; - height: 90px; -} -.eyewear_mystery_301405 { - background-image: url(spritesmith-main-4.png); - background-position: -273px -1425px; - width: 90px; - height: 90px; -} -.headAccessory_mystery_301405 { - background-image: url(spritesmith-main-4.png); - background-position: -364px -1425px; - width: 90px; - height: 90px; -} -.head_mystery_301405 { - background-image: url(spritesmith-main-4.png); - background-position: -455px -1425px; - width: 90px; - height: 90px; -} -.shield_mystery_301405 { - background-image: url(spritesmith-main-4.png); - background-position: -546px -1425px; - width: 90px; - height: 90px; -} -.shop_eyewear_mystery_301405 { - background-image: url(spritesmith-main-4.png); - background-position: -1564px -574px; - width: 40px; - height: 40px; -} -.shop_headAccessory_mystery_301405 { - background-image: url(spritesmith-main-4.png); - background-position: -1564px -615px; - width: 40px; - height: 40px; -} -.shop_head_mystery_301405 { - background-image: url(spritesmith-main-4.png); - background-position: -1564px -656px; - width: 40px; - height: 40px; -} -.shop_shield_mystery_301405 { - background-image: url(spritesmith-main-4.png); - background-position: -1564px -697px; - width: 40px; - height: 40px; -} -.broad_armor_special_spring2015Healer { - background-image: url(spritesmith-main-4.png); - background-position: -637px -1425px; - width: 90px; - height: 90px; -} -.broad_armor_special_spring2015Mage { - background-image: url(spritesmith-main-4.png); - background-position: -819px -1425px; - width: 90px; - height: 90px; -} -.broad_armor_special_spring2015Rogue { - background-image: url(spritesmith-main-4.png); - background-position: -739px -400px; - width: 90px; - height: 90px; -} -.broad_armor_special_spring2015Warrior { - background-image: url(spritesmith-main-4.png); - background-position: -739px -491px; - width: 90px; - height: 90px; -} -.broad_armor_special_springHealer { - background-image: url(spritesmith-main-4.png); - background-position: -739px -582px; - width: 90px; - height: 90px; -} -.broad_armor_special_springMage { - background-image: url(spritesmith-main-4.png); - background-position: -188px -788px; - width: 90px; - height: 90px; -} -.broad_armor_special_springRogue { - background-image: url(spritesmith-main-4.png); - background-position: -279px -788px; - width: 90px; - height: 90px; -} -.broad_armor_special_springWarrior { - background-image: url(spritesmith-main-4.png); - background-position: -370px -788px; - width: 90px; - height: 90px; -} -.headAccessory_special_spring2015Healer { - background-image: url(spritesmith-main-4.png); - background-position: -461px -788px; - width: 90px; - height: 90px; -} -.headAccessory_special_spring2015Mage { - background-image: url(spritesmith-main-4.png); - background-position: -552px -788px; - width: 90px; - height: 90px; -} -.headAccessory_special_spring2015Rogue { - background-image: url(spritesmith-main-4.png); - background-position: -643px -788px; - width: 90px; - height: 90px; -} -.headAccessory_special_spring2015Warrior { - background-image: url(spritesmith-main-4.png); - background-position: -734px -788px; - width: 90px; - height: 90px; -} -.headAccessory_special_springHealer { - background-image: url(spritesmith-main-4.png); - background-position: -825px -788px; - width: 90px; - height: 90px; -} -.headAccessory_special_springMage { - background-image: url(spritesmith-main-4.png); - background-position: -927px 0px; - width: 90px; - height: 90px; -} -.headAccessory_special_springRogue { - background-image: url(spritesmith-main-4.png); - background-position: -927px -91px; - width: 90px; - height: 90px; -} -.headAccessory_special_springWarrior { - background-image: url(spritesmith-main-4.png); - background-position: -927px -182px; - width: 90px; - height: 90px; -} -.head_special_spring2015Healer { - background-image: url(spritesmith-main-4.png); - background-position: -927px -273px; - width: 90px; - height: 90px; -} -.head_special_spring2015Mage { - background-image: url(spritesmith-main-4.png); - background-position: -927px -364px; - width: 90px; - height: 90px; -} -.head_special_spring2015Rogue { - background-image: url(spritesmith-main-4.png); - background-position: -927px -455px; - width: 90px; - height: 90px; -} -.head_special_spring2015Warrior { - background-image: url(spritesmith-main-4.png); - background-position: -927px -546px; - width: 90px; - height: 90px; -} -.head_special_springHealer { - background-image: url(spritesmith-main-4.png); - background-position: -927px -637px; - width: 90px; - height: 90px; -} -.head_special_springMage { - background-image: url(spritesmith-main-4.png); - background-position: -927px -728px; - width: 90px; - height: 90px; -} -.head_special_springRogue { - background-image: url(spritesmith-main-4.png); - background-position: 0px -879px; - width: 90px; - height: 90px; -} -.head_special_springWarrior { - background-image: url(spritesmith-main-4.png); - background-position: -91px -879px; - width: 90px; - height: 90px; -} -.shield_special_spring2015Healer { +.weapon_special_fallHealer { background-image: url(spritesmith-main-4.png); background-position: -182px -879px; width: 90px; height: 90px; } -.shield_special_spring2015Rogue { +.weapon_special_fallMage { background-image: url(spritesmith-main-4.png); - background-position: -273px -879px; + background-position: 0px 0px; + width: 120px; + height: 90px; +} +.weapon_special_fallRogue { + background-image: url(spritesmith-main-4.png); + background-position: -336px -303px; + width: 105px; + height: 90px; +} +.weapon_special_fallWarrior { + background-image: url(spritesmith-main-4.png); + background-position: -1033px -455px; width: 90px; height: 90px; } -.shield_special_spring2015Warrior { +.broad_armor_special_gaymerx { background-image: url(spritesmith-main-4.png); - background-position: -364px -879px; + background-position: -1306px -819px; width: 90px; height: 90px; } -.shield_special_springHealer { +.head_special_gaymerx { + background-image: url(spritesmith-main-4.png); + background-position: -1306px -1092px; + width: 90px; + height: 90px; +} +.shop_armor_special_gaymerx { + background-image: url(spritesmith-main-4.png); + background-position: -1670px -615px; + width: 40px; + height: 40px; +} +.shop_head_special_gaymerx { + background-image: url(spritesmith-main-4.png); + background-position: -1670px -574px; + width: 40px; + height: 40px; +} +.slim_armor_special_gaymerx { + background-image: url(spritesmith-main-4.png); + background-position: -273px -1334px; + width: 90px; + height: 90px; +} +.back_mystery_201402 { + background-image: url(spritesmith-main-4.png); + background-position: -364px -1334px; + width: 90px; + height: 90px; +} +.broad_armor_mystery_201402 { + background-image: url(spritesmith-main-4.png); + background-position: -455px -1334px; + width: 90px; + height: 90px; +} +.head_mystery_201402 { + background-image: url(spritesmith-main-4.png); + background-position: -910px -1334px; + width: 90px; + height: 90px; +} +.shop_armor_mystery_201402 { + background-image: url(spritesmith-main-4.png); + background-position: -1670px -533px; + width: 40px; + height: 40px; +} +.shop_back_mystery_201402 { + background-image: url(spritesmith-main-4.png); + background-position: -1670px -492px; + width: 40px; + height: 40px; +} +.shop_head_mystery_201402 { + background-image: url(spritesmith-main-4.png); + background-position: -1670px -451px; + width: 40px; + height: 40px; +} +.slim_armor_mystery_201402 { + background-image: url(spritesmith-main-4.png); + background-position: -942px -455px; + width: 90px; + height: 90px; +} +.broad_armor_mystery_201403 { + background-image: url(spritesmith-main-4.png); + background-position: -942px -546px; + width: 90px; + height: 90px; +} +.headAccessory_mystery_201403 { + background-image: url(spritesmith-main-4.png); + background-position: 0px -879px; + width: 90px; + height: 90px; +} +.shop_armor_mystery_201403 { + background-image: url(spritesmith-main-4.png); + background-position: -1670px -410px; + width: 40px; + height: 40px; +} +.shop_headAccessory_mystery_201403 { + background-image: url(spritesmith-main-4.png); + background-position: -1670px -369px; + width: 40px; + height: 40px; +} +.slim_armor_mystery_201403 { background-image: url(spritesmith-main-4.png); background-position: -455px -879px; width: 90px; height: 90px; } -.shield_special_springRogue { +.back_mystery_201404 { background-image: url(spritesmith-main-4.png); background-position: -546px -879px; width: 90px; height: 90px; } -.shield_special_springWarrior { - background-image: url(spritesmith-main-4.png); - background-position: -637px -879px; - width: 90px; - height: 90px; -} -.shop_armor_special_spring2015Healer { - background-image: url(spritesmith-main-4.png); - background-position: -738px -1557px; - width: 40px; - height: 40px; -} -.shop_armor_special_spring2015Mage { - background-image: url(spritesmith-main-4.png); - background-position: -779px -1557px; - width: 40px; - height: 40px; -} -.shop_armor_special_spring2015Rogue { - background-image: url(spritesmith-main-4.png); - background-position: -927px -819px; - width: 40px; - height: 40px; -} -.shop_armor_special_spring2015Warrior { - background-image: url(spritesmith-main-4.png); - background-position: -968px -819px; - width: 40px; - height: 40px; -} -.shop_armor_special_springHealer { - background-image: url(spritesmith-main-4.png); - background-position: -830px -740px; - width: 40px; - height: 40px; -} -.shop_armor_special_springMage { - background-image: url(spritesmith-main-4.png); - background-position: -871px -740px; - width: 40px; - height: 40px; -} -.shop_armor_special_springRogue { - background-image: url(spritesmith-main-4.png); - background-position: -648px -530px; - width: 40px; - height: 40px; -} -.shop_armor_special_springWarrior { - background-image: url(spritesmith-main-4.png); - background-position: -689px -530px; - width: 40px; - height: 40px; -} -.shop_headAccessory_special_spring2015Healer { - background-image: url(spritesmith-main-4.png); - background-position: -230px -212px; - width: 40px; - height: 40px; -} -.shop_headAccessory_special_spring2015Mage { - background-image: url(spritesmith-main-4.png); - background-position: -230px -253px; - width: 40px; - height: 40px; -} -.shop_headAccessory_special_spring2015Rogue { - background-image: url(spritesmith-main-4.png); - background-position: -336px -303px; - width: 40px; - height: 40px; -} -.shop_headAccessory_special_spring2015Warrior { - background-image: url(spritesmith-main-4.png); - background-position: -377px -303px; - width: 40px; - height: 40px; -} -.shop_headAccessory_special_springHealer { - background-image: url(spritesmith-main-4.png); - background-position: -336px -344px; - width: 40px; - height: 40px; -} -.shop_headAccessory_special_springMage { - background-image: url(spritesmith-main-4.png); - background-position: -377px -344px; - width: 40px; - height: 40px; -} -.shop_headAccessory_special_springRogue { - background-image: url(spritesmith-main-4.png); - background-position: -448px -394px; - width: 40px; - height: 40px; -} -.shop_headAccessory_special_springWarrior { - background-image: url(spritesmith-main-4.png); - background-position: -489px -394px; - width: 40px; - height: 40px; -} -.shop_head_special_spring2015Healer { - background-image: url(spritesmith-main-4.png); - background-position: -448px -435px; - width: 40px; - height: 40px; -} -.shop_head_special_spring2015Mage { - background-image: url(spritesmith-main-4.png); - background-position: -489px -435px; - width: 40px; - height: 40px; -} -.shop_head_special_spring2015Rogue { - background-image: url(spritesmith-main-4.png); - background-position: -1274px -1425px; - width: 40px; - height: 40px; -} -.shop_head_special_spring2015Warrior { - background-image: url(spritesmith-main-4.png); - background-position: -1315px -1425px; - width: 40px; - height: 40px; -} -.shop_head_special_springHealer { - background-image: url(spritesmith-main-4.png); - background-position: -1356px -1425px; - width: 40px; - height: 40px; -} -.shop_head_special_springMage { - background-image: url(spritesmith-main-4.png); - background-position: -1397px -1425px; - width: 40px; - height: 40px; -} -.shop_head_special_springRogue { - background-image: url(spritesmith-main-4.png); - background-position: -1438px -1425px; - width: 40px; - height: 40px; -} -.shop_head_special_springWarrior { - background-image: url(spritesmith-main-4.png); - background-position: -1479px -1425px; - width: 40px; - height: 40px; -} -.shop_shield_special_spring2015Healer { - background-image: url(spritesmith-main-4.png); - background-position: -1520px -1425px; - width: 40px; - height: 40px; -} -.shop_shield_special_spring2015Rogue { - background-image: url(spritesmith-main-4.png); - background-position: -1274px -1466px; - width: 40px; - height: 40px; -} -.shop_shield_special_spring2015Warrior { - background-image: url(spritesmith-main-4.png); - background-position: -1315px -1466px; - width: 40px; - height: 40px; -} -.shop_shield_special_springHealer { - background-image: url(spritesmith-main-4.png); - background-position: -1356px -1466px; - width: 40px; - height: 40px; -} -.shop_shield_special_springRogue { - background-image: url(spritesmith-main-4.png); - background-position: -1397px -1466px; - width: 40px; - height: 40px; -} -.shop_shield_special_springWarrior { - background-image: url(spritesmith-main-4.png); - background-position: -1438px -1466px; - width: 40px; - height: 40px; -} -.shop_weapon_special_spring2015Healer { - background-image: url(spritesmith-main-4.png); - background-position: -1479px -1466px; - width: 40px; - height: 40px; -} -.shop_weapon_special_spring2015Mage { - background-image: url(spritesmith-main-4.png); - background-position: -1520px -1466px; - width: 40px; - height: 40px; -} -.shop_weapon_special_spring2015Rogue { - background-image: url(spritesmith-main-4.png); - background-position: 0px -1516px; - width: 40px; - height: 40px; -} -.shop_weapon_special_spring2015Warrior { - background-image: url(spritesmith-main-4.png); - background-position: -41px -1516px; - width: 40px; - height: 40px; -} -.shop_weapon_special_springHealer { - background-image: url(spritesmith-main-4.png); - background-position: -82px -1516px; - width: 40px; - height: 40px; -} -.shop_weapon_special_springMage { - background-image: url(spritesmith-main-4.png); - background-position: -123px -1516px; - width: 40px; - height: 40px; -} -.shop_weapon_special_springRogue { - background-image: url(spritesmith-main-4.png); - background-position: -164px -1516px; - width: 40px; - height: 40px; -} -.shop_weapon_special_springWarrior { - background-image: url(spritesmith-main-4.png); - background-position: -205px -1516px; - width: 40px; - height: 40px; -} -.slim_armor_special_spring2015Healer { - background-image: url(spritesmith-main-4.png); - background-position: -728px -879px; - width: 90px; - height: 90px; -} -.slim_armor_special_spring2015Mage { +.headAccessory_mystery_201404 { background-image: url(spritesmith-main-4.png); background-position: -819px -879px; width: 90px; height: 90px; } -.slim_armor_special_spring2015Rogue { +.shop_back_mystery_201404 { background-image: url(spritesmith-main-4.png); - background-position: -910px -879px; + background-position: -1670px -328px; + width: 40px; + height: 40px; +} +.shop_headAccessory_mystery_201404 { + background-image: url(spritesmith-main-4.png); + background-position: -1670px -287px; + width: 40px; + height: 40px; +} +.broad_armor_mystery_201405 { + background-image: url(spritesmith-main-4.png); + background-position: -637px -1152px; width: 90px; height: 90px; } -.slim_armor_special_spring2015Warrior { +.head_mystery_201405 { background-image: url(spritesmith-main-4.png); - background-position: -1018px 0px; + background-position: -1306px -91px; width: 90px; height: 90px; } -.slim_armor_special_springHealer { +.shop_armor_mystery_201405 { background-image: url(spritesmith-main-4.png); - background-position: -1018px -91px; + background-position: -1670px -246px; + width: 40px; + height: 40px; +} +.shop_head_mystery_201405 { + background-image: url(spritesmith-main-4.png); + background-position: -1670px -205px; + width: 40px; + height: 40px; +} +.slim_armor_mystery_201405 { + background-image: url(spritesmith-main-4.png); + background-position: -182px -1243px; width: 90px; height: 90px; } -.slim_armor_special_springMage { +.broad_armor_mystery_201406 { background-image: url(spritesmith-main-4.png); - background-position: -1018px -182px; + background-position: -757px -415px; + width: 90px; + height: 96px; +} +.head_mystery_201406 { + background-image: url(spritesmith-main-4.png); + background-position: -757px -318px; + width: 90px; + height: 96px; +} +.shop_armor_mystery_201406 { + background-image: url(spritesmith-main-4.png); + background-position: -1670px -164px; + width: 40px; + height: 40px; +} +.shop_head_mystery_201406 { + background-image: url(spritesmith-main-4.png); + background-position: -1670px -123px; + width: 40px; + height: 40px; +} +.slim_armor_mystery_201406 { + background-image: url(spritesmith-main-4.png); + background-position: -757px -512px; + width: 90px; + height: 96px; +} +.broad_armor_mystery_201407 { + background-image: url(spritesmith-main-4.png); + background-position: -728px -1334px; width: 90px; height: 90px; } -.slim_armor_special_springRogue { +.head_mystery_201407 { background-image: url(spritesmith-main-4.png); - background-position: -1018px -273px; + background-position: -819px -1334px; width: 90px; height: 90px; } -.slim_armor_special_springWarrior { +.shop_armor_mystery_201407 { background-image: url(spritesmith-main-4.png); - background-position: -1018px -364px; + background-position: -1670px -82px; + width: 40px; + height: 40px; +} +.shop_head_mystery_201407 { + background-image: url(spritesmith-main-4.png); + background-position: -1670px -41px; + width: 40px; + height: 40px; +} +.slim_armor_mystery_201407 { + background-image: url(spritesmith-main-4.png); + background-position: -1092px -1334px; width: 90px; height: 90px; } -.weapon_special_spring2015Healer { +.broad_armor_mystery_201408 { background-image: url(spritesmith-main-4.png); - background-position: -1018px -455px; + background-position: -1183px -1334px; width: 90px; height: 90px; } -.weapon_special_spring2015Mage { +.head_mystery_201408 { background-image: url(spritesmith-main-4.png); - background-position: -1018px -546px; + background-position: -1274px -1334px; width: 90px; height: 90px; } -.weapon_special_spring2015Rogue { +.shop_armor_mystery_201408 { background-image: url(spritesmith-main-4.png); - background-position: -1018px -637px; + background-position: -1670px 0px; + width: 40px; + height: 40px; +} +.shop_head_mystery_201408 { + background-image: url(spritesmith-main-4.png); + background-position: -1599px -1598px; + width: 40px; + height: 40px; +} +.slim_armor_mystery_201408 { + background-image: url(spritesmith-main-4.png); + background-position: -1488px -273px; width: 90px; height: 90px; } -.weapon_special_spring2015Warrior { +.broad_armor_mystery_201409 { background-image: url(spritesmith-main-4.png); - background-position: -1018px -728px; + background-position: -1488px -364px; width: 90px; height: 90px; } -.weapon_special_springHealer { +.headAccessory_mystery_201409 { background-image: url(spritesmith-main-4.png); - background-position: -1018px -819px; + background-position: -1488px -455px; width: 90px; height: 90px; } -.weapon_special_springMage { +.shop_armor_mystery_201409 { background-image: url(spritesmith-main-4.png); - background-position: 0px -970px; + background-position: -1558px -1598px; + width: 40px; + height: 40px; +} +.shop_headAccessory_mystery_201409 { + background-image: url(spritesmith-main-4.png); + background-position: -1517px -1598px; + width: 40px; + height: 40px; +} +.slim_armor_mystery_201409 { + background-image: url(spritesmith-main-4.png); + background-position: -1488px -728px; width: 90px; height: 90px; } -.weapon_special_springRogue { +.back_mystery_201410 { background-image: url(spritesmith-main-4.png); - background-position: -91px -970px; + background-position: -848px -91px; + width: 93px; + height: 90px; +} +.broad_armor_mystery_201410 { + background-image: url(spritesmith-main-4.png); + background-position: -848px 0px; + width: 93px; + height: 90px; +} +.shop_armor_mystery_201410 { + background-image: url(spritesmith-main-4.png); + background-position: -1476px -1598px; + width: 40px; + height: 40px; +} +.shop_back_mystery_201410 { + background-image: url(spritesmith-main-4.png); + background-position: -1107px -1598px; + width: 40px; + height: 40px; +} +.slim_armor_mystery_201410 { + background-image: url(spritesmith-main-4.png); + background-position: -701px -697px; + width: 93px; + height: 90px; +} +.head_mystery_201411 { + background-image: url(spritesmith-main-4.png); + background-position: 0px -1425px; width: 90px; height: 90px; } -.weapon_special_springWarrior { +.shop_head_mystery_201411 { background-image: url(spritesmith-main-4.png); - background-position: -182px -970px; + background-position: -1066px -1598px; + width: 40px; + height: 40px; +} +.shop_weapon_mystery_201411 { + background-image: url(spritesmith-main-4.png); + background-position: -1025px -1598px; + width: 40px; + height: 40px; +} +.weapon_mystery_201411 { + background-image: url(spritesmith-main-4.png); + background-position: -728px -1425px; width: 90px; height: 90px; } -.body_special_summer2015Healer { +.broad_armor_mystery_201412 { background-image: url(spritesmith-main-4.png); - background-position: -273px -970px; + background-position: -819px -1425px; width: 90px; height: 90px; } -.body_special_summer2015Mage { +.head_mystery_201412 { background-image: url(spritesmith-main-4.png); - background-position: -364px -970px; + background-position: -910px -1425px; width: 90px; height: 90px; } -.body_special_summer2015Rogue { +.shop_armor_mystery_201412 { background-image: url(spritesmith-main-4.png); - background-position: 0px -106px; - width: 102px; - height: 105px; + background-position: -984px -1598px; + width: 40px; + height: 40px; } -.body_special_summer2015Warrior { +.shop_head_mystery_201412 { background-image: url(spritesmith-main-4.png); - background-position: -273px -485px; - width: 90px; - height: 105px; + background-position: -943px -1598px; + width: 40px; + height: 40px; } -.body_special_summerHealer { +.slim_armor_mystery_201412 { background-image: url(spritesmith-main-4.png); - background-position: -182px -485px; - width: 90px; - height: 105px; -} -.body_special_summerMage { - background-image: url(spritesmith-main-4.png); - background-position: -91px -485px; - width: 90px; - height: 105px; -} -.broad_armor_special_summer2015Healer { - background-image: url(spritesmith-main-4.png); - background-position: -819px -970px; + background-position: -1183px -1425px; width: 90px; height: 90px; } -.broad_armor_special_summer2015Mage { +.broad_armor_mystery_201501 { background-image: url(spritesmith-main-4.png); - background-position: -910px -970px; + background-position: -1456px -1425px; width: 90px; height: 90px; } -.broad_armor_special_summer2015Rogue { +.head_mystery_201501 { background-image: url(spritesmith-main-4.png); - background-position: -206px -106px; - width: 102px; - height: 105px; -} -.broad_armor_special_summer2015Warrior { - background-image: url(spritesmith-main-4.png); - background-position: 0px -485px; - width: 90px; - height: 105px; -} -.broad_armor_special_summerHealer { - background-image: url(spritesmith-main-4.png); - background-position: -637px -591px; - width: 90px; - height: 105px; -} -.broad_armor_special_summerMage { - background-image: url(spritesmith-main-4.png); - background-position: -536px -288px; - width: 90px; - height: 105px; -} -.broad_armor_special_summerRogue { - background-image: url(spritesmith-main-4.png); - background-position: -536px -91px; - width: 111px; - height: 90px; -} -.broad_armor_special_summerWarrior { - background-image: url(spritesmith-main-4.png); - background-position: -536px 0px; - width: 111px; - height: 90px; -} -.eyewear_special_summerRogue { - background-image: url(spritesmith-main-4.png); - background-position: -224px -394px; - width: 111px; - height: 90px; -} -.eyewear_special_summerWarrior { - background-image: url(spritesmith-main-4.png); - background-position: -112px -394px; - width: 111px; - height: 90px; -} -.head_special_summer2015Healer { - background-image: url(spritesmith-main-4.png); - background-position: -1109px -637px; + background-position: -1579px 0px; width: 90px; height: 90px; } -.head_special_summer2015Mage { +.shop_armor_mystery_201501 { background-image: url(spritesmith-main-4.png); - background-position: -739px -309px; + background-position: -902px -1598px; + width: 40px; + height: 40px; +} +.shop_head_mystery_201501 { + background-image: url(spritesmith-main-4.png); + background-position: -861px -1598px; + width: 40px; + height: 40px; +} +.slim_armor_mystery_201501 { + background-image: url(spritesmith-main-4.png); + background-position: -1579px -273px; width: 90px; height: 90px; } -.head_special_summer2015Rogue { +.headAccessory_mystery_201502 { background-image: url(spritesmith-main-4.png); - background-position: -103px -106px; - width: 102px; - height: 105px; + background-position: -1579px -364px; + width: 90px; + height: 90px; } -.head_special_summer2015Warrior { +.shop_headAccessory_mystery_201502 { + background-image: url(spritesmith-main-4.png); + background-position: -820px -1598px; + width: 40px; + height: 40px; +} +.shop_weapon_mystery_201502 { + background-image: url(spritesmith-main-4.png); + background-position: -1435px -1557px; + width: 40px; + height: 40px; +} +.weapon_mystery_201502 { + background-image: url(spritesmith-main-4.png); + background-position: 0px -788px; + width: 90px; + height: 90px; +} +.broad_armor_mystery_201503 { + background-image: url(spritesmith-main-4.png); + background-position: -91px -788px; + width: 90px; + height: 90px; +} +.eyewear_mystery_201503 { + background-image: url(spritesmith-main-4.png); + background-position: -182px -788px; + width: 90px; + height: 90px; +} +.shop_armor_mystery_201503 { + background-image: url(spritesmith-main-4.png); + background-position: -1394px -1557px; + width: 40px; + height: 40px; +} +.shop_eyewear_mystery_201503 { + background-image: url(spritesmith-main-4.png); + background-position: -1353px -1557px; + width: 40px; + height: 40px; +} +.slim_armor_mystery_201503 { + background-image: url(spritesmith-main-4.png); + background-position: -455px -788px; + width: 90px; + height: 90px; +} +.back_mystery_201504 { + background-image: url(spritesmith-main-4.png); + background-position: -546px -788px; + width: 90px; + height: 90px; +} +.broad_armor_mystery_201504 { + background-image: url(spritesmith-main-4.png); + background-position: -637px -788px; + width: 90px; + height: 90px; +} +.shop_armor_mystery_201504 { + background-image: url(spritesmith-main-4.png); + background-position: -1312px -1557px; + width: 40px; + height: 40px; +} +.shop_back_mystery_201504 { + background-image: url(spritesmith-main-4.png); + background-position: -1271px -1557px; + width: 40px; + height: 40px; +} +.slim_armor_mystery_201504 { + background-image: url(spritesmith-main-4.png); + background-position: -942px 0px; + width: 90px; + height: 90px; +} +.head_mystery_201505 { + background-image: url(spritesmith-main-4.png); + background-position: -942px -91px; + width: 90px; + height: 90px; +} +.shop_head_mystery_201505 { + background-image: url(spritesmith-main-4.png); + background-position: -1230px -1557px; + width: 40px; + height: 40px; +} +.shop_weapon_mystery_201505 { + background-image: url(spritesmith-main-4.png); + background-position: -1189px -1557px; + width: 40px; + height: 40px; +} +.weapon_mystery_201505 { + background-image: url(spritesmith-main-4.png); + background-position: -942px -364px; + width: 90px; + height: 90px; +} +.broad_armor_mystery_201506 { background-image: url(spritesmith-main-4.png); background-position: -364px -485px; width: 90px; height: 105px; } -.head_special_summerHealer { +.eyewear_mystery_201506 { background-image: url(spritesmith-main-4.png); background-position: -455px -485px; width: 90px; height: 105px; } -.head_special_summerMage { +.shop_armor_mystery_201506 { background-image: url(spritesmith-main-4.png); - background-position: -546px -485px; + background-position: -1148px -1557px; + width: 40px; + height: 40px; +} +.shop_eyewear_mystery_201506 { + background-image: url(spritesmith-main-4.png); + background-position: -1107px -1557px; + width: 40px; + height: 40px; +} +.slim_armor_mystery_201506 { + background-image: url(spritesmith-main-4.png); + background-position: -666px -424px; width: 90px; height: 105px; } -.head_special_summerRogue { +.back_mystery_201507 { background-image: url(spritesmith-main-4.png); - background-position: -424px -182px; - width: 111px; - height: 90px; -} -.head_special_summerWarrior { - background-image: url(spritesmith-main-4.png); - background-position: -309px -91px; - width: 111px; - height: 90px; -} -.Healer_Summer { - background-image: url(spritesmith-main-4.png); - background-position: -648px -212px; + background-position: 0px -591px; width: 90px; height: 105px; } -.Mage_Summer { - background-image: url(spritesmith-main-4.png); - background-position: -648px -318px; - width: 90px; - height: 105px; -} -.SummerRogue14 { - background-image: url(spritesmith-main-4.png); - background-position: -424px -91px; - width: 111px; - height: 90px; -} -.SummerWarrior14 { - background-image: url(spritesmith-main-4.png); - background-position: -424px 0px; - width: 111px; - height: 90px; -} -.shield_special_summer2015Healer { - background-image: url(spritesmith-main-4.png); - background-position: -728px -1061px; - width: 90px; - height: 90px; -} -.shield_special_summer2015Rogue { - background-image: url(spritesmith-main-4.png); - background-position: -206px 0px; - width: 102px; - height: 105px; -} -.shield_special_summer2015Warrior { +.eyewear_mystery_201507 { background-image: url(spritesmith-main-4.png); background-position: -91px -591px; width: 90px; height: 105px; } -.shield_special_summerHealer { +.shop_back_mystery_201507 { background-image: url(spritesmith-main-4.png); - background-position: -182px -591px; - width: 90px; - height: 105px; + background-position: -1066px -1557px; + width: 40px; + height: 40px; } -.shield_special_summerRogue { +.shop_eyewear_mystery_201507 { background-image: url(spritesmith-main-4.png); - background-position: -112px -303px; - width: 111px; + background-position: -1025px -1557px; + width: 40px; + height: 40px; +} +.broad_armor_mystery_201508 { + background-image: url(spritesmith-main-4.png); + background-position: -848px -182px; + width: 93px; height: 90px; } -.shield_special_summerWarrior { +.head_mystery_201508 { background-image: url(spritesmith-main-4.png); - background-position: 0px -303px; - width: 111px; + background-position: -848px -273px; + width: 93px; height: 90px; } -.shop_armor_special_summer2015Healer { +.shop_armor_mystery_201508 { background-image: url(spritesmith-main-4.png); - background-position: -1605px -205px; + background-position: -984px -1557px; width: 40px; height: 40px; } -.shop_armor_special_summer2015Mage { +.shop_head_mystery_201508 { background-image: url(spritesmith-main-4.png); - background-position: -1605px -246px; + background-position: -943px -1557px; width: 40px; height: 40px; } -.shop_armor_special_summer2015Rogue { +.slim_armor_mystery_201508 { background-image: url(spritesmith-main-4.png); - background-position: -1605px -287px; - width: 40px; - height: 40px; + background-position: -848px -455px; + width: 93px; + height: 90px; } -.shop_armor_special_summer2015Warrior { +.broad_armor_mystery_201509 { background-image: url(spritesmith-main-4.png); - background-position: -1605px -328px; - width: 40px; - height: 40px; -} -.shop_armor_special_summerHealer { - background-image: url(spritesmith-main-4.png); - background-position: -1605px -369px; - width: 40px; - height: 40px; -} -.shop_armor_special_summerMage { - background-image: url(spritesmith-main-4.png); - background-position: -1605px -410px; - width: 40px; - height: 40px; -} -.shop_armor_special_summerRogue { - background-image: url(spritesmith-main-4.png); - background-position: -1605px -451px; - width: 40px; - height: 40px; -} -.shop_armor_special_summerWarrior { - background-image: url(spritesmith-main-4.png); - background-position: -1605px -492px; - width: 40px; - height: 40px; -} -.shop_body_special_summer2015Healer { - background-image: url(spritesmith-main-4.png); - background-position: -1605px -861px; - width: 40px; - height: 40px; -} -.shop_body_special_summer2015Mage { - background-image: url(spritesmith-main-4.png); - background-position: -1605px -902px; - width: 40px; - height: 40px; -} -.shop_body_special_summer2015Rogue { - background-image: url(spritesmith-main-4.png); - background-position: -1605px -943px; - width: 40px; - height: 40px; -} -.shop_body_special_summer2015Warrior { - background-image: url(spritesmith-main-4.png); - background-position: -1605px -984px; - width: 40px; - height: 40px; -} -.shop_body_special_summerHealer { - background-image: url(spritesmith-main-4.png); - background-position: -1605px -1025px; - width: 40px; - height: 40px; -} -.shop_body_special_summerMage { - background-image: url(spritesmith-main-4.png); - background-position: -1605px -1066px; - width: 40px; - height: 40px; -} -.shop_eyewear_special_summerRogue { - background-image: url(spritesmith-main-4.png); - background-position: -1605px -1107px; - width: 40px; - height: 40px; -} -.shop_eyewear_special_summerWarrior { - background-image: url(spritesmith-main-4.png); - background-position: -1605px -1148px; - width: 40px; - height: 40px; -} -.shop_head_special_summer2015Healer { - background-image: url(spritesmith-main-4.png); - background-position: -1605px -1189px; - width: 40px; - height: 40px; -} -.shop_head_special_summer2015Mage { - background-image: url(spritesmith-main-4.png); - background-position: -1605px -1230px; - width: 40px; - height: 40px; -} -.shop_head_special_summer2015Rogue { - background-image: url(spritesmith-main-4.png); - background-position: -1605px -1271px; - width: 40px; - height: 40px; -} -.shop_head_special_summer2015Warrior { - background-image: url(spritesmith-main-4.png); - background-position: -1605px -1312px; - width: 40px; - height: 40px; -} -.shop_head_special_summerHealer { - background-image: url(spritesmith-main-4.png); - background-position: -1605px -1353px; - width: 40px; - height: 40px; -} -.shop_head_special_summerMage { - background-image: url(spritesmith-main-4.png); - background-position: -1605px -1394px; - width: 40px; - height: 40px; -} -.shop_head_special_summerRogue { - background-image: url(spritesmith-main-4.png); - background-position: -1646px -697px; - width: 40px; - height: 40px; -} -.shop_head_special_summerWarrior { - background-image: url(spritesmith-main-4.png); - background-position: -1605px -1476px; - width: 40px; - height: 40px; -} -.shop_shield_special_summer2015Healer { - background-image: url(spritesmith-main-4.png); - background-position: -1605px -1517px; - width: 40px; - height: 40px; -} -.shop_shield_special_summer2015Rogue { - background-image: url(spritesmith-main-4.png); - background-position: 0px -1598px; - width: 40px; - height: 40px; -} -.shop_shield_special_summer2015Warrior { - background-image: url(spritesmith-main-4.png); - background-position: -41px -1598px; - width: 40px; - height: 40px; -} -.shop_shield_special_summerHealer { - background-image: url(spritesmith-main-4.png); - background-position: -82px -1598px; - width: 40px; - height: 40px; -} -.shop_shield_special_summerRogue { - background-image: url(spritesmith-main-4.png); - background-position: -1382px -1274px; - width: 40px; - height: 40px; -} -.shop_shield_special_summerWarrior { - background-image: url(spritesmith-main-4.png); - background-position: -1423px -1274px; - width: 40px; - height: 40px; -} -.shop_weapon_special_summer2015Healer { - background-image: url(spritesmith-main-4.png); - background-position: -1291px -1183px; - width: 40px; - height: 40px; -} -.shop_weapon_special_summer2015Mage { - background-image: url(spritesmith-main-4.png); - background-position: -1332px -1183px; - width: 40px; - height: 40px; -} -.shop_weapon_special_summer2015Rogue { - background-image: url(spritesmith-main-4.png); - background-position: -1200px -1092px; - width: 40px; - height: 40px; -} -.shop_weapon_special_summer2015Warrior { - background-image: url(spritesmith-main-4.png); - background-position: -1241px -1092px; - width: 40px; - height: 40px; -} -.shop_weapon_special_summerHealer { - background-image: url(spritesmith-main-4.png); - background-position: -1109px -1001px; - width: 40px; - height: 40px; -} -.shop_weapon_special_summerMage { - background-image: url(spritesmith-main-4.png); - background-position: -1150px -1001px; - width: 40px; - height: 40px; -} -.shop_weapon_special_summerRogue { - background-image: url(spritesmith-main-4.png); - background-position: -1018px -910px; - width: 40px; - height: 40px; -} -.shop_weapon_special_summerWarrior { - background-image: url(spritesmith-main-4.png); - background-position: -1059px -910px; - width: 40px; - height: 40px; -} -.slim_armor_special_summer2015Healer { - background-image: url(spritesmith-main-4.png); - background-position: -1200px -91px; + background-position: -910px -879px; width: 90px; height: 90px; } -.slim_armor_special_summer2015Mage { +.head_mystery_201509 { background-image: url(spritesmith-main-4.png); - background-position: -1200px -182px; + background-position: -1033px 0px; width: 90px; height: 90px; } -.slim_armor_special_summer2015Rogue { +.shop_armor_mystery_201509 { background-image: url(spritesmith-main-4.png); - background-position: -103px 0px; + background-position: -902px -1557px; + width: 40px; + height: 40px; +} +.shop_head_mystery_201509 { + background-image: url(spritesmith-main-4.png); + background-position: -861px -1557px; + width: 40px; + height: 40px; +} +.slim_armor_mystery_201509 { + background-image: url(spritesmith-main-4.png); + background-position: -1033px -273px; + width: 90px; + height: 90px; +} +.back_mystery_201510 { + background-image: url(spritesmith-main-4.png); + background-position: -448px -394px; + width: 105px; + height: 90px; +} +.headAccessory_mystery_201510 { + background-image: url(spritesmith-main-4.png); + background-position: -848px -364px; + width: 93px; + height: 90px; +} +.shop_back_mystery_201510 { + background-image: url(spritesmith-main-4.png); + background-position: -820px -1557px; + width: 40px; + height: 40px; +} +.shop_headAccessory_mystery_201510 { + background-image: url(spritesmith-main-4.png); + background-position: -779px -1557px; + width: 40px; + height: 40px; +} +.broad_armor_mystery_201511 { + background-image: url(spritesmith-main-4.png); + background-position: -1033px -728px; + width: 90px; + height: 90px; +} +.head_mystery_201511 { + background-image: url(spritesmith-main-4.png); + background-position: -1033px -819px; + width: 90px; + height: 90px; +} +.shop_armor_mystery_201511 { + background-image: url(spritesmith-main-4.png); + background-position: -1622px -637px; + width: 42px; + height: 42px; +} +.shop_head_mystery_201511 { + background-image: url(spritesmith-main-4.png); + background-position: -1579px -637px; + width: 42px; + height: 42px; +} +.slim_armor_mystery_201511 { + background-image: url(spritesmith-main-4.png); + background-position: -182px -970px; + width: 90px; + height: 90px; +} +.broad_armor_mystery_301404 { + background-image: url(spritesmith-main-4.png); + background-position: -273px -970px; + width: 90px; + height: 90px; +} +.eyewear_mystery_301404 { + background-image: url(spritesmith-main-4.png); + background-position: -364px -970px; + width: 90px; + height: 90px; +} +.head_mystery_301404 { + background-image: url(spritesmith-main-4.png); + background-position: -455px -970px; + width: 90px; + height: 90px; +} +.shop_armor_mystery_301404 { + background-image: url(spritesmith-main-4.png); + background-position: -656px -1557px; + width: 40px; + height: 40px; +} +.shop_eyewear_mystery_301404 { + background-image: url(spritesmith-main-4.png); + background-position: -615px -1557px; + width: 40px; + height: 40px; +} +.shop_head_mystery_301404 { + background-image: url(spritesmith-main-4.png); + background-position: -574px -1557px; + width: 40px; + height: 40px; +} +.shop_weapon_mystery_301404 { + background-image: url(spritesmith-main-4.png); + background-position: -533px -1557px; + width: 40px; + height: 40px; +} +.slim_armor_mystery_301404 { + background-image: url(spritesmith-main-4.png); + background-position: -910px -970px; + width: 90px; + height: 90px; +} +.weapon_mystery_301404 { + background-image: url(spritesmith-main-4.png); + background-position: -1001px -970px; + width: 90px; + height: 90px; +} +.eyewear_mystery_301405 { + background-image: url(spritesmith-main-4.png); + background-position: -1124px 0px; + width: 90px; + height: 90px; +} +.headAccessory_mystery_301405 { + background-image: url(spritesmith-main-4.png); + background-position: -1124px -91px; + width: 90px; + height: 90px; +} +.head_mystery_301405 { + background-image: url(spritesmith-main-4.png); + background-position: -1124px -182px; + width: 90px; + height: 90px; +} +.shield_mystery_301405 { + background-image: url(spritesmith-main-4.png); + background-position: -1124px -273px; + width: 90px; + height: 90px; +} +.shop_eyewear_mystery_301405 { + background-image: url(spritesmith-main-4.png); + background-position: -205px -1557px; + width: 40px; + height: 40px; +} +.shop_headAccessory_mystery_301405 { + background-image: url(spritesmith-main-4.png); + background-position: -164px -1557px; + width: 40px; + height: 40px; +} +.shop_head_mystery_301405 { + background-image: url(spritesmith-main-4.png); + background-position: -123px -1557px; + width: 40px; + height: 40px; +} +.shop_shield_mystery_301405 { + background-image: url(spritesmith-main-4.png); + background-position: -82px -1557px; + width: 40px; + height: 40px; +} +.broad_armor_special_spring2015Healer { + background-image: url(spritesmith-main-4.png); + background-position: -1124px -728px; + width: 90px; + height: 90px; +} +.broad_armor_special_spring2015Mage { + background-image: url(spritesmith-main-4.png); + background-position: -1124px -819px; + width: 90px; + height: 90px; +} +.broad_armor_special_spring2015Rogue { + background-image: url(spritesmith-main-4.png); + background-position: -1124px -910px; + width: 90px; + height: 90px; +} +.broad_armor_special_spring2015Warrior { + background-image: url(spritesmith-main-4.png); + background-position: 0px -1061px; + width: 90px; + height: 90px; +} +.broad_armor_special_springHealer { + background-image: url(spritesmith-main-4.png); + background-position: -91px -1061px; + width: 90px; + height: 90px; +} +.broad_armor_special_springMage { + background-image: url(spritesmith-main-4.png); + background-position: -182px -1061px; + width: 90px; + height: 90px; +} +.broad_armor_special_springRogue { + background-image: url(spritesmith-main-4.png); + background-position: -273px -1061px; + width: 90px; + height: 90px; +} +.broad_armor_special_springWarrior { + background-image: url(spritesmith-main-4.png); + background-position: -364px -1061px; + width: 90px; + height: 90px; +} +.headAccessory_special_spring2015Healer { + background-image: url(spritesmith-main-4.png); + background-position: -455px -1061px; + width: 90px; + height: 90px; +} +.headAccessory_special_spring2015Mage { + background-image: url(spritesmith-main-4.png); + background-position: -546px -1061px; + width: 90px; + height: 90px; +} +.headAccessory_special_spring2015Rogue { + background-image: url(spritesmith-main-4.png); + background-position: -637px -1061px; + width: 90px; + height: 90px; +} +.headAccessory_special_spring2015Warrior { + background-image: url(spritesmith-main-4.png); + background-position: -728px -1061px; + width: 90px; + height: 90px; +} +.headAccessory_special_springHealer { + background-image: url(spritesmith-main-4.png); + background-position: -819px -1061px; + width: 90px; + height: 90px; +} +.headAccessory_special_springMage { + background-image: url(spritesmith-main-4.png); + background-position: -910px -1061px; + width: 90px; + height: 90px; +} +.headAccessory_special_springRogue { + background-image: url(spritesmith-main-4.png); + background-position: -1001px -1061px; + width: 90px; + height: 90px; +} +.headAccessory_special_springWarrior { + background-image: url(spritesmith-main-4.png); + background-position: -1092px -1061px; + width: 90px; + height: 90px; +} +.head_special_spring2015Healer { + background-image: url(spritesmith-main-4.png); + background-position: -1215px 0px; + width: 90px; + height: 90px; +} +.head_special_spring2015Mage { + background-image: url(spritesmith-main-4.png); + background-position: -1215px -91px; + width: 90px; + height: 90px; +} +.head_special_spring2015Rogue { + background-image: url(spritesmith-main-4.png); + background-position: -1215px -182px; + width: 90px; + height: 90px; +} +.head_special_spring2015Warrior { + background-image: url(spritesmith-main-4.png); + background-position: -1215px -273px; + width: 90px; + height: 90px; +} +.head_special_springHealer { + background-image: url(spritesmith-main-4.png); + background-position: -1215px -364px; + width: 90px; + height: 90px; +} +.head_special_springMage { + background-image: url(spritesmith-main-4.png); + background-position: -1215px -455px; + width: 90px; + height: 90px; +} +.head_special_springRogue { + background-image: url(spritesmith-main-4.png); + background-position: -1215px -546px; + width: 90px; + height: 90px; +} +.head_special_springWarrior { + background-image: url(spritesmith-main-4.png); + background-position: -1215px -637px; + width: 90px; + height: 90px; +} +.shield_special_spring2015Healer { + background-image: url(spritesmith-main-4.png); + background-position: -1215px -728px; + width: 90px; + height: 90px; +} +.shield_special_spring2015Rogue { + background-image: url(spritesmith-main-4.png); + background-position: -1215px -819px; + width: 90px; + height: 90px; +} +.shield_special_spring2015Warrior { + background-image: url(spritesmith-main-4.png); + background-position: -1215px -910px; + width: 90px; + height: 90px; +} +.shield_special_springHealer { + background-image: url(spritesmith-main-4.png); + background-position: -1215px -1001px; + width: 90px; + height: 90px; +} +.shield_special_springRogue { + background-image: url(spritesmith-main-4.png); + background-position: 0px -1152px; + width: 90px; + height: 90px; +} +.shield_special_springWarrior { + background-image: url(spritesmith-main-4.png); + background-position: -91px -1152px; + width: 90px; + height: 90px; +} +.shop_armor_special_spring2015Healer { + background-image: url(spritesmith-main-4.png); + background-position: -41px -1557px; + width: 40px; + height: 40px; +} +.shop_armor_special_spring2015Mage { + background-image: url(spritesmith-main-4.png); + background-position: 0px -1557px; + width: 40px; + height: 40px; +} +.shop_armor_special_spring2015Rogue { + background-image: url(spritesmith-main-4.png); + background-position: -1599px -1516px; + width: 40px; + height: 40px; +} +.shop_armor_special_spring2015Warrior { + background-image: url(spritesmith-main-4.png); + background-position: -1558px -1516px; + width: 40px; + height: 40px; +} +.shop_armor_special_springHealer { + background-image: url(spritesmith-main-4.png); + background-position: -1517px -1516px; + width: 40px; + height: 40px; +} +.shop_armor_special_springMage { + background-image: url(spritesmith-main-4.png); + background-position: -1579px -680px; + width: 40px; + height: 40px; +} +.shop_armor_special_springRogue { + background-image: url(spritesmith-main-4.png); + background-position: -1435px -1516px; + width: 40px; + height: 40px; +} +.shop_armor_special_springWarrior { + background-image: url(spritesmith-main-4.png); + background-position: -1394px -1516px; + width: 40px; + height: 40px; +} +.shop_headAccessory_special_spring2015Healer { + background-image: url(spritesmith-main-4.png); + background-position: -1353px -1516px; + width: 40px; + height: 40px; +} +.shop_headAccessory_special_spring2015Mage { + background-image: url(spritesmith-main-4.png); + background-position: -1312px -1516px; + width: 40px; + height: 40px; +} +.shop_headAccessory_special_spring2015Rogue { + background-image: url(spritesmith-main-4.png); + background-position: -1271px -1516px; + width: 40px; + height: 40px; +} +.shop_headAccessory_special_spring2015Warrior { + background-image: url(spritesmith-main-4.png); + background-position: -1230px -1516px; + width: 40px; + height: 40px; +} +.shop_headAccessory_special_springHealer { + background-image: url(spritesmith-main-4.png); + background-position: -1189px -1516px; + width: 40px; + height: 40px; +} +.shop_headAccessory_special_springMage { + background-image: url(spritesmith-main-4.png); + background-position: -1148px -1516px; + width: 40px; + height: 40px; +} +.shop_headAccessory_special_springRogue { + background-image: url(spritesmith-main-4.png); + background-position: -1107px -1516px; + width: 40px; + height: 40px; +} +.shop_headAccessory_special_springWarrior { + background-image: url(spritesmith-main-4.png); + background-position: -1066px -1516px; + width: 40px; + height: 40px; +} +.shop_head_special_spring2015Healer { + background-image: url(spritesmith-main-4.png); + background-position: -1025px -1516px; + width: 40px; + height: 40px; +} +.shop_head_special_spring2015Mage { + background-image: url(spritesmith-main-4.png); + background-position: -984px -1516px; + width: 40px; + height: 40px; +} +.shop_head_special_spring2015Rogue { + background-image: url(spritesmith-main-4.png); + background-position: -943px -1516px; + width: 40px; + height: 40px; +} +.shop_head_special_spring2015Warrior { + background-image: url(spritesmith-main-4.png); + background-position: -848px -728px; + width: 40px; + height: 40px; +} +.shop_head_special_springHealer { + background-image: url(spritesmith-main-4.png); + background-position: -983px -819px; + width: 40px; + height: 40px; +} +.shop_head_special_springMage { + background-image: url(spritesmith-main-4.png); + background-position: -942px -819px; + width: 40px; + height: 40px; +} +.shop_head_special_springRogue { + background-image: url(spritesmith-main-4.png); + background-position: -1074px -910px; + width: 40px; + height: 40px; +} +.shop_head_special_springWarrior { + background-image: url(spritesmith-main-4.png); + background-position: -1033px -910px; + width: 40px; + height: 40px; +} +.shop_shield_special_spring2015Healer { + background-image: url(spritesmith-main-4.png); + background-position: -1165px -1001px; + width: 40px; + height: 40px; +} +.shop_shield_special_spring2015Rogue { + background-image: url(spritesmith-main-4.png); + background-position: -1124px -1001px; + width: 40px; + height: 40px; +} +.shop_shield_special_spring2015Warrior { + background-image: url(spritesmith-main-4.png); + background-position: -1256px -1092px; + width: 40px; + height: 40px; +} +.shop_shield_special_springHealer { + background-image: url(spritesmith-main-4.png); + background-position: -1215px -1092px; + width: 40px; + height: 40px; +} +.shop_shield_special_springRogue { + background-image: url(spritesmith-main-4.png); + background-position: -1347px -1183px; + width: 40px; + height: 40px; +} +.shop_shield_special_springWarrior { + background-image: url(spritesmith-main-4.png); + background-position: -1306px -1183px; + width: 40px; + height: 40px; +} +.shop_weapon_special_spring2015Healer { + background-image: url(spritesmith-main-4.png); + background-position: -1438px -1274px; + width: 40px; + height: 40px; +} +.shop_weapon_special_spring2015Mage { + background-image: url(spritesmith-main-4.png); + background-position: -1397px -1274px; + width: 40px; + height: 40px; +} +.shop_weapon_special_spring2015Rogue { + background-image: url(spritesmith-main-4.png); + background-position: -1529px -1365px; + width: 40px; + height: 40px; +} +.shop_weapon_special_spring2015Warrior { + background-image: url(spritesmith-main-4.png); + background-position: -1488px -1365px; + width: 40px; + height: 40px; +} +.shop_weapon_special_springHealer { + background-image: url(spritesmith-main-4.png); + background-position: -1620px -1459px; + width: 40px; + height: 40px; +} +.shop_weapon_special_springMage { + background-image: url(spritesmith-main-4.png); + background-position: -1579px -1459px; + width: 40px; + height: 40px; +} +.shop_weapon_special_springRogue { + background-image: url(spritesmith-main-4.png); + background-position: -1620px -1418px; + width: 40px; + height: 40px; +} +.shop_weapon_special_springWarrior { + background-image: url(spritesmith-main-4.png); + background-position: -1579px -1418px; + width: 40px; + height: 40px; +} +.slim_armor_special_spring2015Healer { + background-image: url(spritesmith-main-4.png); + background-position: -1183px -1243px; + width: 90px; + height: 90px; +} +.slim_armor_special_spring2015Mage { + background-image: url(spritesmith-main-4.png); + background-position: -1274px -1243px; + width: 90px; + height: 90px; +} +.slim_armor_special_spring2015Rogue { + background-image: url(spritesmith-main-4.png); + background-position: -1397px 0px; + width: 90px; + height: 90px; +} +.slim_armor_special_spring2015Warrior { + background-image: url(spritesmith-main-4.png); + background-position: -1397px -91px; + width: 90px; + height: 90px; +} +.slim_armor_special_springHealer { + background-image: url(spritesmith-main-4.png); + background-position: -1397px -182px; + width: 90px; + height: 90px; +} +.slim_armor_special_springMage { + background-image: url(spritesmith-main-4.png); + background-position: -1397px -273px; + width: 90px; + height: 90px; +} +.slim_armor_special_springRogue { + background-image: url(spritesmith-main-4.png); + background-position: -1397px -364px; + width: 90px; + height: 90px; +} +.slim_armor_special_springWarrior { + background-image: url(spritesmith-main-4.png); + background-position: -1397px -455px; + width: 90px; + height: 90px; +} +.weapon_special_spring2015Healer { + background-image: url(spritesmith-main-4.png); + background-position: -1397px -546px; + width: 90px; + height: 90px; +} +.weapon_special_spring2015Mage { + background-image: url(spritesmith-main-4.png); + background-position: -1397px -637px; + width: 90px; + height: 90px; +} +.weapon_special_spring2015Rogue { + background-image: url(spritesmith-main-4.png); + background-position: -1397px -728px; + width: 90px; + height: 90px; +} +.weapon_special_spring2015Warrior { + background-image: url(spritesmith-main-4.png); + background-position: -1397px -819px; + width: 90px; + height: 90px; +} +.weapon_special_springHealer { + background-image: url(spritesmith-main-4.png); + background-position: -1397px -910px; + width: 90px; + height: 90px; +} +.weapon_special_springMage { + background-image: url(spritesmith-main-4.png); + background-position: -1397px -1001px; + width: 90px; + height: 90px; +} +.weapon_special_springRogue { + background-image: url(spritesmith-main-4.png); + background-position: -1397px -1092px; + width: 90px; + height: 90px; +} +.weapon_special_springWarrior { + background-image: url(spritesmith-main-4.png); + background-position: -1397px -1183px; + width: 90px; + height: 90px; +} +.body_special_summer2015Healer { + background-image: url(spritesmith-main-4.png); + background-position: 0px -1334px; + width: 90px; + height: 90px; +} +.body_special_summer2015Mage { + background-image: url(spritesmith-main-4.png); + background-position: -91px -1334px; + width: 90px; + height: 90px; +} +.body_special_summer2015Rogue { + background-image: url(spritesmith-main-4.png); + background-position: -206px -197px; width: 102px; height: 105px; } -.slim_armor_special_summer2015Warrior { +.body_special_summer2015Warrior { + background-image: url(spritesmith-main-4.png); + background-position: -546px -485px; + width: 90px; + height: 105px; +} +.body_special_summerHealer { + background-image: url(spritesmith-main-4.png); + background-position: -666px 0px; + width: 90px; + height: 105px; +} +.body_special_summerMage { + background-image: url(spritesmith-main-4.png); + background-position: -666px -106px; + width: 90px; + height: 105px; +} +.broad_armor_special_summer2015Healer { + background-image: url(spritesmith-main-4.png); + background-position: -546px -1334px; + width: 90px; + height: 90px; +} +.broad_armor_special_summer2015Mage { + background-image: url(spritesmith-main-4.png); + background-position: -637px -1334px; + width: 90px; + height: 90px; +} +.broad_armor_special_summer2015Rogue { + background-image: url(spritesmith-main-4.png); + background-position: 0px -91px; + width: 102px; + height: 105px; +} +.broad_armor_special_summer2015Warrior { + background-image: url(spritesmith-main-4.png); + background-position: -666px -212px; + width: 90px; + height: 105px; +} +.broad_armor_special_summerHealer { + background-image: url(spritesmith-main-4.png); + background-position: -666px -318px; + width: 90px; + height: 105px; +} +.broad_armor_special_summerMage { + background-image: url(spritesmith-main-4.png); + background-position: -554px -364px; + width: 90px; + height: 105px; +} +.broad_armor_special_summerRogue { + background-image: url(spritesmith-main-4.png); + background-position: -112px -394px; + width: 111px; + height: 90px; +} +.broad_armor_special_summerWarrior { + background-image: url(spritesmith-main-4.png); + background-position: -224px -394px; + width: 111px; + height: 90px; +} +.eyewear_special_summerRogue { + background-image: url(spritesmith-main-4.png); + background-position: -336px -394px; + width: 111px; + height: 90px; +} +.eyewear_special_summerWarrior { + background-image: url(spritesmith-main-4.png); + background-position: -554px 0px; + width: 111px; + height: 90px; +} +.head_special_summer2015Healer { + background-image: url(spritesmith-main-4.png); + background-position: -1488px 0px; + width: 90px; + height: 90px; +} +.head_special_summer2015Mage { + background-image: url(spritesmith-main-4.png); + background-position: -1488px -91px; + width: 90px; + height: 90px; +} +.head_special_summer2015Rogue { + background-image: url(spritesmith-main-4.png); + background-position: -103px -197px; + width: 102px; + height: 105px; +} +.head_special_summer2015Warrior { + background-image: url(spritesmith-main-4.png); + background-position: -455px -591px; + width: 90px; + height: 105px; +} +.head_special_summerHealer { background-image: url(spritesmith-main-4.png); background-position: -546px -591px; width: 90px; height: 105px; } +.head_special_summerMage { + background-image: url(spritesmith-main-4.png); + background-position: -637px -591px; + width: 90px; + height: 105px; +} +.head_special_summerRogue { + background-image: url(spritesmith-main-4.png); + background-position: -442px -182px; + width: 111px; + height: 90px; +} +.head_special_summerWarrior { + background-image: url(spritesmith-main-4.png); + background-position: -554px -273px; + width: 111px; + height: 90px; +} +.Healer_Summer { + background-image: url(spritesmith-main-4.png); + background-position: -757px -106px; + width: 90px; + height: 105px; +} +.Mage_Summer { + background-image: url(spritesmith-main-4.png); + background-position: -757px -212px; + width: 90px; + height: 105px; +} +.SummerRogue14 { + background-image: url(spritesmith-main-4.png); + background-position: -554px -91px; + width: 111px; + height: 90px; +} +.SummerWarrior14 { + background-image: url(spritesmith-main-4.png); + background-position: 0px -303px; + width: 111px; + height: 90px; +} +.shield_special_summer2015Healer { + background-image: url(spritesmith-main-4.png); + background-position: -1488px -1092px; + width: 90px; + height: 90px; +} +.shield_special_summer2015Rogue { + background-image: url(spritesmith-main-4.png); + background-position: -224px 0px; + width: 102px; + height: 105px; +} +.shield_special_summer2015Warrior { + background-image: url(spritesmith-main-4.png); + background-position: -273px -485px; + width: 90px; + height: 105px; +} +.shield_special_summerHealer { + background-image: url(spritesmith-main-4.png); + background-position: -182px -485px; + width: 90px; + height: 105px; +} +.shield_special_summerRogue { + background-image: url(spritesmith-main-4.png); + background-position: -442px -91px; + width: 111px; + height: 90px; +} +.shield_special_summerWarrior { + background-image: url(spritesmith-main-4.png); + background-position: -442px 0px; + width: 111px; + height: 90px; +} +.shop_armor_special_summer2015Healer { + background-image: url(spritesmith-main-4.png); + background-position: -1620px -1377px; + width: 40px; + height: 40px; +} +.shop_armor_special_summer2015Mage { + background-image: url(spritesmith-main-4.png); + background-position: -1579px -1377px; + width: 40px; + height: 40px; +} +.shop_armor_special_summer2015Rogue { + background-image: url(spritesmith-main-4.png); + background-position: -1620px -1336px; + width: 40px; + height: 40px; +} +.shop_armor_special_summer2015Warrior { + background-image: url(spritesmith-main-4.png); + background-position: -1579px -1336px; + width: 40px; + height: 40px; +} +.shop_armor_special_summerHealer { + background-image: url(spritesmith-main-4.png); + background-position: -1620px -1295px; + width: 40px; + height: 40px; +} +.shop_armor_special_summerMage { + background-image: url(spritesmith-main-4.png); + background-position: -1579px -1295px; + width: 40px; + height: 40px; +} +.shop_armor_special_summerRogue { + background-image: url(spritesmith-main-4.png); + background-position: -1620px -1254px; + width: 40px; + height: 40px; +} +.shop_armor_special_summerWarrior { + background-image: url(spritesmith-main-4.png); + background-position: -1579px -1254px; + width: 40px; + height: 40px; +} +.shop_body_special_summer2015Healer { + background-image: url(spritesmith-main-4.png); + background-position: -1620px -1213px; + width: 40px; + height: 40px; +} +.shop_body_special_summer2015Mage { + background-image: url(spritesmith-main-4.png); + background-position: -1579px -1213px; + width: 40px; + height: 40px; +} +.shop_body_special_summer2015Rogue { + background-image: url(spritesmith-main-4.png); + background-position: -1620px -1172px; + width: 40px; + height: 40px; +} +.shop_body_special_summer2015Warrior { + background-image: url(spritesmith-main-4.png); + background-position: -1579px -1172px; + width: 40px; + height: 40px; +} +.shop_body_special_summerHealer { + background-image: url(spritesmith-main-4.png); + background-position: -1620px -1131px; + width: 40px; + height: 40px; +} +.shop_body_special_summerMage { + background-image: url(spritesmith-main-4.png); + background-position: -1579px -1131px; + width: 40px; + height: 40px; +} +.shop_eyewear_special_summerRogue { + background-image: url(spritesmith-main-4.png); + background-position: -1620px -1090px; + width: 40px; + height: 40px; +} +.shop_eyewear_special_summerWarrior { + background-image: url(spritesmith-main-4.png); + background-position: -1579px -1090px; + width: 40px; + height: 40px; +} +.shop_head_special_summer2015Healer { + background-image: url(spritesmith-main-4.png); + background-position: -1620px -1049px; + width: 40px; + height: 40px; +} +.shop_head_special_summer2015Mage { + background-image: url(spritesmith-main-4.png); + background-position: -1579px -1049px; + width: 40px; + height: 40px; +} +.shop_head_special_summer2015Rogue { + background-image: url(spritesmith-main-4.png); + background-position: -1620px -1008px; + width: 40px; + height: 40px; +} +.shop_head_special_summer2015Warrior { + background-image: url(spritesmith-main-4.png); + background-position: -1579px -1008px; + width: 40px; + height: 40px; +} +.shop_head_special_summerHealer { + background-image: url(spritesmith-main-4.png); + background-position: -1620px -967px; + width: 40px; + height: 40px; +} +.shop_head_special_summerMage { + background-image: url(spritesmith-main-4.png); + background-position: -697px -1557px; + width: 40px; + height: 40px; +} +.shop_head_special_summerRogue { + background-image: url(spritesmith-main-4.png); + background-position: -1476px -1516px; + width: 40px; + height: 40px; +} +.shop_head_special_summerWarrior { + background-image: url(spritesmith-main-4.png); + background-position: -738px -1557px; + width: 40px; + height: 40px; +} +.shop_shield_special_summer2015Healer { + background-image: url(spritesmith-main-4.png); + background-position: -1620px -680px; + width: 40px; + height: 40px; +} +.shop_shield_special_summer2015Rogue { + background-image: url(spritesmith-main-4.png); + background-position: -1579px -721px; + width: 40px; + height: 40px; +} +.shop_shield_special_summer2015Warrior { + background-image: url(spritesmith-main-4.png); + background-position: -1620px -721px; + width: 40px; + height: 40px; +} +.shop_shield_special_summerHealer { + background-image: url(spritesmith-main-4.png); + background-position: -1579px -762px; + width: 40px; + height: 40px; +} +.shop_shield_special_summerRogue { + background-image: url(spritesmith-main-4.png); + background-position: -1620px -762px; + width: 40px; + height: 40px; +} +.shop_shield_special_summerWarrior { + background-image: url(spritesmith-main-4.png); + background-position: -1579px -803px; + width: 40px; + height: 40px; +} +.shop_weapon_special_summer2015Healer { + background-image: url(spritesmith-main-4.png); + background-position: -1620px -803px; + width: 40px; + height: 40px; +} +.shop_weapon_special_summer2015Mage { + background-image: url(spritesmith-main-4.png); + background-position: -1579px -844px; + width: 40px; + height: 40px; +} +.shop_weapon_special_summer2015Rogue { + background-image: url(spritesmith-main-4.png); + background-position: -1620px -844px; + width: 40px; + height: 40px; +} +.shop_weapon_special_summer2015Warrior { + background-image: url(spritesmith-main-4.png); + background-position: -1579px -885px; + width: 40px; + height: 40px; +} +.shop_weapon_special_summerHealer { + background-image: url(spritesmith-main-4.png); + background-position: -1620px -885px; + width: 40px; + height: 40px; +} +.shop_weapon_special_summerMage { + background-image: url(spritesmith-main-4.png); + background-position: -1579px -926px; + width: 40px; + height: 40px; +} +.shop_weapon_special_summerRogue { + background-image: url(spritesmith-main-4.png); + background-position: -1620px -926px; + width: 40px; + height: 40px; +} +.shop_weapon_special_summerWarrior { + background-image: url(spritesmith-main-4.png); + background-position: -1579px -967px; + width: 40px; + height: 40px; +} +.slim_armor_special_summer2015Healer { + background-image: url(spritesmith-main-4.png); + background-position: -1579px -546px; + width: 90px; + height: 90px; +} +.slim_armor_special_summer2015Mage { + background-image: url(spritesmith-main-4.png); + background-position: -1579px -455px; + width: 90px; + height: 90px; +} +.slim_armor_special_summer2015Rogue { + background-image: url(spritesmith-main-4.png); + background-position: 0px -197px; + width: 102px; + height: 105px; +} +.slim_armor_special_summer2015Warrior { + background-image: url(spritesmith-main-4.png); + background-position: 0px -485px; + width: 90px; + height: 105px; +} .slim_armor_special_summerHealer { background-image: url(spritesmith-main-4.png); - background-position: -536px -182px; + background-position: -91px -485px; width: 90px; height: 105px; } .slim_armor_special_summerMage { background-image: url(spritesmith-main-4.png); - background-position: -739px 0px; + background-position: -757px 0px; width: 90px; height: 105px; } .slim_armor_special_summerRogue { background-image: url(spritesmith-main-4.png); - background-position: -336px -394px; + background-position: -442px -273px; width: 111px; height: 90px; } @@ -1674,157 +1776,157 @@ } .weapon_special_summer2015Healer { background-image: url(spritesmith-main-4.png); - background-position: -1200px -819px; + background-position: -1365px -1425px; width: 90px; height: 90px; } .weapon_special_summer2015Mage { background-image: url(spritesmith-main-4.png); - background-position: -1200px -910px; + background-position: -1274px -1425px; width: 90px; height: 90px; } .weapon_special_summer2015Rogue { background-image: url(spritesmith-main-4.png); - background-position: 0px 0px; + background-position: -121px 0px; width: 102px; height: 105px; } .weapon_special_summer2015Warrior { background-image: url(spritesmith-main-4.png); - background-position: -648px -424px; + background-position: -182px -591px; width: 90px; height: 105px; } .weapon_special_summerHealer { background-image: url(spritesmith-main-4.png); - background-position: -648px -106px; + background-position: -273px -591px; width: 90px; height: 105px; } .weapon_special_summerMage { background-image: url(spritesmith-main-4.png); - background-position: -648px 0px; + background-position: -364px -591px; width: 90px; height: 105px; } .weapon_special_summerRogue { background-image: url(spritesmith-main-4.png); - background-position: -224px -303px; + background-position: -112px -303px; width: 111px; height: 90px; } .weapon_special_summerWarrior { background-image: url(spritesmith-main-4.png); - background-position: -309px -182px; + background-position: -224px -303px; width: 111px; height: 90px; } .broad_armor_special_candycane { background-image: url(spritesmith-main-4.png); - background-position: -455px -1152px; + background-position: -637px -1425px; width: 90px; height: 90px; } .broad_armor_special_ski { background-image: url(spritesmith-main-4.png); - background-position: -546px -1152px; + background-position: -546px -1425px; width: 90px; height: 90px; } .broad_armor_special_snowflake { background-image: url(spritesmith-main-4.png); - background-position: -637px -1152px; + background-position: -455px -1425px; width: 90px; height: 90px; } .broad_armor_special_winter2015Healer { background-image: url(spritesmith-main-4.png); - background-position: -728px -1152px; + background-position: -364px -1425px; width: 90px; height: 90px; } .broad_armor_special_winter2015Mage { background-image: url(spritesmith-main-4.png); - background-position: -819px -1152px; + background-position: -273px -1425px; width: 90px; height: 90px; } .broad_armor_special_winter2015Rogue { background-image: url(spritesmith-main-4.png); - background-position: -604px -697px; + background-position: -507px -697px; width: 96px; height: 90px; } .broad_armor_special_winter2015Warrior { background-image: url(spritesmith-main-4.png); - background-position: -1001px -1152px; + background-position: -1001px -1243px; width: 90px; height: 90px; } .broad_armor_special_yeti { background-image: url(spritesmith-main-4.png); - background-position: -1092px -1152px; + background-position: -910px -1243px; width: 90px; height: 90px; } .head_special_candycane { background-image: url(spritesmith-main-4.png); - background-position: -1183px -1152px; + background-position: -819px -1243px; width: 90px; height: 90px; } .head_special_nye { background-image: url(spritesmith-main-4.png); - background-position: -1291px 0px; + background-position: -728px -1243px; width: 90px; height: 90px; } .head_special_nye2014 { background-image: url(spritesmith-main-4.png); - background-position: -1291px -91px; + background-position: -637px -1243px; width: 90px; height: 90px; } .head_special_ski { background-image: url(spritesmith-main-4.png); - background-position: -1291px -182px; + background-position: -546px -1243px; width: 90px; height: 90px; } .head_special_snowflake { background-image: url(spritesmith-main-4.png); - background-position: -1291px -273px; + background-position: -455px -1243px; width: 90px; height: 90px; } .head_special_winter2015Healer { background-image: url(spritesmith-main-4.png); - background-position: -1291px -364px; + background-position: -364px -1243px; width: 90px; height: 90px; } .head_special_winter2015Mage { background-image: url(spritesmith-main-4.png); - background-position: -1291px -455px; + background-position: -273px -1243px; width: 90px; height: 90px; } .head_special_winter2015Rogue { background-image: url(spritesmith-main-4.png); - background-position: -701px -697px; + background-position: -604px -697px; width: 96px; height: 90px; } .head_special_winter2015Warrior { background-image: url(spritesmith-main-4.png); - background-position: -1291px -637px; + background-position: -91px -1243px; width: 90px; height: 90px; } .head_special_yeti { background-image: url(spritesmith-main-4.png); - background-position: -1291px -728px; + background-position: 0px -1243px; width: 90px; height: 90px; } @@ -1836,1285 +1938,973 @@ } .shield_special_snowflake { background-image: url(spritesmith-main-4.png); - background-position: -1291px -910px; + background-position: -1306px -1001px; width: 90px; height: 90px; } .shield_special_winter2015Healer { background-image: url(spritesmith-main-4.png); - background-position: -1291px -1001px; + background-position: -1306px -910px; width: 90px; height: 90px; } .shield_special_winter2015Rogue { background-image: url(spritesmith-main-4.png); - background-position: -410px -697px; + background-position: -121px -106px; width: 96px; height: 90px; } .shield_special_winter2015Warrior { background-image: url(spritesmith-main-4.png); - background-position: 0px -1243px; + background-position: -1306px -728px; width: 90px; height: 90px; } .shield_special_yeti { background-image: url(spritesmith-main-4.png); - background-position: -91px -1243px; + background-position: -1306px -637px; width: 90px; height: 90px; } .shop_armor_special_candycane { background-image: url(spritesmith-main-4.png); - background-position: -410px -1516px; + background-position: -889px -728px; width: 40px; height: 40px; } .shop_armor_special_ski { background-image: url(spritesmith-main-4.png); - background-position: -451px -1516px; + background-position: -757px -609px; width: 40px; height: 40px; } .shop_armor_special_snowflake { background-image: url(spritesmith-main-4.png); - background-position: -492px -1516px; + background-position: -798px -609px; width: 40px; height: 40px; } .shop_armor_special_winter2015Healer { background-image: url(spritesmith-main-4.png); - background-position: -533px -1516px; + background-position: -757px -650px; width: 40px; height: 40px; } .shop_armor_special_winter2015Mage { background-image: url(spritesmith-main-4.png); - background-position: -574px -1516px; + background-position: -798px -650px; width: 40px; height: 40px; } .shop_armor_special_winter2015Rogue { background-image: url(spritesmith-main-4.png); - background-position: -615px -1516px; + background-position: -666px -530px; width: 40px; height: 40px; } .shop_armor_special_winter2015Warrior { background-image: url(spritesmith-main-4.png); - background-position: -656px -1516px; + background-position: -707px -530px; width: 40px; height: 40px; } .shop_armor_special_yeti { background-image: url(spritesmith-main-4.png); - background-position: -697px -1516px; + background-position: -795px -697px; width: 40px; height: 40px; } .shop_head_special_candycane { background-image: url(spritesmith-main-4.png); - background-position: -738px -1516px; + background-position: -795px -738px; width: 40px; height: 40px; } .shop_head_special_nye { background-image: url(spritesmith-main-4.png); - background-position: -779px -1516px; + background-position: 0px -1516px; width: 40px; height: 40px; } .shop_head_special_nye2014 { background-image: url(spritesmith-main-4.png); - background-position: -820px -1516px; + background-position: -41px -1516px; width: 40px; height: 40px; } .shop_head_special_ski { background-image: url(spritesmith-main-4.png); - background-position: -861px -1516px; + background-position: -82px -1516px; width: 40px; height: 40px; } .shop_head_special_snowflake { background-image: url(spritesmith-main-4.png); - background-position: -902px -1516px; + background-position: -123px -1516px; width: 40px; height: 40px; } .shop_head_special_winter2015Healer { background-image: url(spritesmith-main-4.png); - background-position: -943px -1516px; + background-position: -164px -1516px; width: 40px; height: 40px; } .shop_head_special_winter2015Mage { background-image: url(spritesmith-main-4.png); - background-position: -984px -1516px; + background-position: -205px -1516px; width: 40px; height: 40px; } .shop_head_special_winter2015Rogue { background-image: url(spritesmith-main-4.png); - background-position: -1025px -1516px; + background-position: -246px -1516px; width: 40px; height: 40px; } .shop_head_special_winter2015Warrior { background-image: url(spritesmith-main-4.png); - background-position: -1066px -1516px; + background-position: -287px -1516px; width: 40px; height: 40px; } .shop_head_special_yeti { background-image: url(spritesmith-main-4.png); - background-position: -1107px -1516px; + background-position: -328px -1516px; width: 40px; height: 40px; } .shop_shield_special_ski { background-image: url(spritesmith-main-4.png); - background-position: -1148px -1516px; + background-position: -369px -1516px; width: 40px; height: 40px; } .shop_shield_special_snowflake { background-image: url(spritesmith-main-4.png); - background-position: -1189px -1516px; + background-position: -410px -1516px; width: 40px; height: 40px; } .shop_shield_special_winter2015Healer { background-image: url(spritesmith-main-4.png); - background-position: -1230px -1516px; + background-position: -451px -1516px; width: 40px; height: 40px; } .shop_shield_special_winter2015Rogue { background-image: url(spritesmith-main-4.png); - background-position: -1271px -1516px; + background-position: -492px -1516px; width: 40px; height: 40px; } .shop_shield_special_winter2015Warrior { background-image: url(spritesmith-main-4.png); - background-position: -1312px -1516px; + background-position: -533px -1516px; width: 40px; height: 40px; } .shop_shield_special_yeti { background-image: url(spritesmith-main-4.png); - background-position: -1353px -1516px; + background-position: -574px -1516px; width: 40px; height: 40px; } .shop_weapon_special_candycane { background-image: url(spritesmith-main-4.png); - background-position: -1394px -1516px; + background-position: -615px -1516px; width: 40px; height: 40px; } .shop_weapon_special_ski { background-image: url(spritesmith-main-4.png); - background-position: -1435px -1516px; + background-position: -656px -1516px; width: 40px; height: 40px; } .shop_weapon_special_snowflake { background-image: url(spritesmith-main-4.png); - background-position: -1476px -1516px; + background-position: -697px -1516px; width: 40px; height: 40px; } .shop_weapon_special_winter2015Healer { background-image: url(spritesmith-main-4.png); - background-position: -1517px -1516px; + background-position: -738px -1516px; width: 40px; height: 40px; } .shop_weapon_special_winter2015Mage { background-image: url(spritesmith-main-4.png); - background-position: -1564px 0px; + background-position: -779px -1516px; width: 40px; height: 40px; } .shop_weapon_special_winter2015Rogue { background-image: url(spritesmith-main-4.png); - background-position: -1564px -41px; + background-position: -820px -1516px; width: 40px; height: 40px; } .shop_weapon_special_winter2015Warrior { background-image: url(spritesmith-main-4.png); - background-position: -1564px -82px; + background-position: -861px -1516px; width: 40px; height: 40px; } .shop_weapon_special_yeti { background-image: url(spritesmith-main-4.png); - background-position: -1564px -123px; + background-position: -902px -1516px; width: 40px; height: 40px; } .slim_armor_special_candycane { background-image: url(spritesmith-main-4.png); - background-position: -182px -1243px; + background-position: -1306px -546px; width: 90px; height: 90px; } .slim_armor_special_ski { background-image: url(spritesmith-main-4.png); - background-position: -273px -1243px; + background-position: -1306px -455px; width: 90px; height: 90px; } .slim_armor_special_snowflake { background-image: url(spritesmith-main-4.png); - background-position: -364px -1243px; + background-position: -1306px -364px; width: 90px; height: 90px; } .slim_armor_special_winter2015Healer { background-image: url(spritesmith-main-4.png); - background-position: -455px -1243px; + background-position: -1306px -273px; width: 90px; height: 90px; } .slim_armor_special_winter2015Mage { background-image: url(spritesmith-main-4.png); - background-position: -546px -1243px; + background-position: -1306px -182px; width: 90px; height: 90px; } .slim_armor_special_winter2015Rogue { background-image: url(spritesmith-main-4.png); - background-position: -507px -697px; + background-position: -313px -697px; width: 96px; height: 90px; } .slim_armor_special_winter2015Warrior { background-image: url(spritesmith-main-4.png); - background-position: -728px -1243px; + background-position: -1306px 0px; width: 90px; height: 90px; } .slim_armor_special_yeti { background-image: url(spritesmith-main-4.png); - background-position: -819px -1243px; + background-position: -1183px -1152px; width: 90px; height: 90px; } .weapon_special_candycane { background-image: url(spritesmith-main-4.png); - background-position: -910px -1243px; + background-position: -1092px -1152px; width: 90px; height: 90px; } .weapon_special_ski { background-image: url(spritesmith-main-4.png); - background-position: -1001px -1243px; + background-position: -1001px -1152px; width: 90px; height: 90px; } .weapon_special_snowflake { background-image: url(spritesmith-main-4.png); - background-position: -1092px -1243px; + background-position: -910px -1152px; width: 90px; height: 90px; } .weapon_special_winter2015Healer { background-image: url(spritesmith-main-4.png); - background-position: -1183px -1243px; + background-position: -819px -1152px; width: 90px; height: 90px; } .weapon_special_winter2015Mage { background-image: url(spritesmith-main-4.png); - background-position: -1274px -1243px; + background-position: -728px -1152px; width: 90px; height: 90px; } .weapon_special_winter2015Rogue { background-image: url(spritesmith-main-4.png); - background-position: -313px -697px; + background-position: -410px -697px; width: 96px; height: 90px; } .weapon_special_winter2015Warrior { background-image: url(spritesmith-main-4.png); - background-position: -1382px -91px; + background-position: -546px -1152px; width: 90px; height: 90px; } .weapon_special_yeti { background-image: url(spritesmith-main-4.png); - background-position: -1382px -182px; + background-position: -455px -1152px; width: 90px; height: 90px; } .back_special_wondercon_black { background-image: url(spritesmith-main-4.png); - background-position: -1382px -273px; + background-position: -364px -1152px; width: 90px; height: 90px; } .back_special_wondercon_red { background-image: url(spritesmith-main-4.png); - background-position: -1382px -364px; + background-position: -273px -1152px; width: 90px; height: 90px; } .body_special_wondercon_black { background-image: url(spritesmith-main-4.png); - background-position: -1382px -455px; + background-position: -182px -1152px; width: 90px; height: 90px; } .body_special_wondercon_gold { background-image: url(spritesmith-main-4.png); - background-position: -1382px -546px; + background-position: -1124px -637px; width: 90px; height: 90px; } .body_special_wondercon_red { background-image: url(spritesmith-main-4.png); - background-position: -1382px -637px; + background-position: -1124px -546px; width: 90px; height: 90px; } .eyewear_special_wondercon_black { background-image: url(spritesmith-main-4.png); - background-position: -1382px -728px; + background-position: -1124px -455px; width: 90px; height: 90px; } .eyewear_special_wondercon_red { background-image: url(spritesmith-main-4.png); - background-position: -1382px -819px; + background-position: -1124px -364px; width: 90px; height: 90px; } .shop_back_special_wondercon_black { background-image: url(spritesmith-main-4.png); - background-position: -1564px -1107px; + background-position: -246px -1557px; width: 40px; height: 40px; } .shop_back_special_wondercon_red { background-image: url(spritesmith-main-4.png); - background-position: -1564px -1148px; + background-position: -287px -1557px; width: 40px; height: 40px; } .shop_body_special_wondercon_black { background-image: url(spritesmith-main-4.png); - background-position: -1564px -1189px; + background-position: -328px -1557px; width: 40px; height: 40px; } .shop_body_special_wondercon_gold { background-image: url(spritesmith-main-4.png); - background-position: -1564px -1230px; + background-position: -369px -1557px; width: 40px; height: 40px; } .shop_body_special_wondercon_red { background-image: url(spritesmith-main-4.png); - background-position: -1564px -1271px; + background-position: -410px -1557px; width: 40px; height: 40px; } .shop_eyewear_special_wondercon_black { background-image: url(spritesmith-main-4.png); - background-position: -1564px -1312px; + background-position: -451px -1557px; width: 40px; height: 40px; } .shop_eyewear_special_wondercon_red { background-image: url(spritesmith-main-4.png); - background-position: -1564px -1353px; + background-position: -492px -1557px; width: 40px; height: 40px; } .head_0 { background-image: url(spritesmith-main-4.png); - background-position: -1382px -910px; + background-position: -819px -970px; width: 90px; height: 90px; } .customize-option.head_0 { background-image: url(spritesmith-main-4.png); - background-position: -1407px -925px; + background-position: -844px -985px; width: 60px; height: 60px; } .head_healer_1 { background-image: url(spritesmith-main-4.png); - background-position: -1382px -1001px; + background-position: -728px -970px; width: 90px; height: 90px; } .head_healer_2 { background-image: url(spritesmith-main-4.png); - background-position: -1382px -1092px; + background-position: -637px -970px; width: 90px; height: 90px; } .head_healer_3 { background-image: url(spritesmith-main-4.png); - background-position: -1382px -1183px; + background-position: -546px -970px; width: 90px; height: 90px; } .head_healer_4 { background-image: url(spritesmith-main-4.png); - background-position: 0px -1334px; + background-position: -91px -970px; width: 90px; height: 90px; } .head_healer_5 { background-image: url(spritesmith-main-4.png); - background-position: -91px -1334px; + background-position: 0px -970px; width: 90px; height: 90px; } .head_rogue_1 { background-image: url(spritesmith-main-4.png); - background-position: -182px -1334px; + background-position: -1033px -637px; width: 90px; height: 90px; } .head_rogue_2 { background-image: url(spritesmith-main-4.png); - background-position: -273px -1334px; + background-position: -1033px -546px; width: 90px; height: 90px; } .head_rogue_3 { background-image: url(spritesmith-main-4.png); - background-position: -364px -1334px; + background-position: -1033px -182px; width: 90px; height: 90px; } .head_rogue_4 { background-image: url(spritesmith-main-4.png); - background-position: -455px -1334px; + background-position: -1033px -91px; width: 90px; height: 90px; } .head_rogue_5 { background-image: url(spritesmith-main-4.png); - background-position: -546px -1334px; + background-position: -728px -879px; width: 90px; height: 90px; } .head_special_2 { background-image: url(spritesmith-main-4.png); - background-position: -637px -1334px; + background-position: -637px -879px; width: 90px; height: 90px; } .head_special_fireCoralCirclet { background-image: url(spritesmith-main-4.png); - background-position: -728px -1334px; + background-position: -364px -879px; width: 90px; height: 90px; } .head_warrior_1 { background-image: url(spritesmith-main-4.png); - background-position: -819px -1334px; + background-position: -273px -879px; width: 90px; height: 90px; } .head_warrior_2 { background-image: url(spritesmith-main-4.png); - background-position: -910px -1334px; + background-position: -942px -728px; width: 90px; height: 90px; } .head_warrior_3 { background-image: url(spritesmith-main-4.png); - background-position: -1001px -1334px; + background-position: -942px -637px; width: 90px; height: 90px; } .head_warrior_4 { background-image: url(spritesmith-main-4.png); - background-position: -1092px -1334px; + background-position: -942px -273px; width: 90px; height: 90px; } .head_warrior_5 { background-image: url(spritesmith-main-4.png); - background-position: -1183px -1334px; + background-position: -942px -182px; width: 90px; height: 90px; } .head_wizard_1 { background-image: url(spritesmith-main-4.png); - background-position: -1274px -1334px; + background-position: -819px -788px; width: 90px; height: 90px; } .head_wizard_2 { background-image: url(spritesmith-main-4.png); - background-position: -1365px -1334px; + background-position: -728px -788px; width: 90px; height: 90px; } .head_wizard_3 { background-image: url(spritesmith-main-4.png); - background-position: -1473px 0px; + background-position: -364px -788px; width: 90px; height: 90px; } .head_wizard_4 { background-image: url(spritesmith-main-4.png); - background-position: -1473px -91px; + background-position: -273px -788px; width: 90px; height: 90px; } .head_wizard_5 { background-image: url(spritesmith-main-4.png); - background-position: -1473px -182px; + background-position: -848px -637px; width: 90px; height: 90px; } .shop_head_healer_1 { background-image: url(spritesmith-main-4.png); - background-position: -820px -1557px; + background-position: -1476px -1557px; width: 40px; height: 40px; } .shop_head_healer_2 { background-image: url(spritesmith-main-4.png); - background-position: -861px -1557px; + background-position: -1517px -1557px; width: 40px; height: 40px; } .shop_head_healer_3 { background-image: url(spritesmith-main-4.png); - background-position: -902px -1557px; + background-position: -1558px -1557px; width: 40px; height: 40px; } .shop_head_healer_4 { background-image: url(spritesmith-main-4.png); - background-position: -943px -1557px; + background-position: -1599px -1557px; width: 40px; height: 40px; } .shop_head_healer_5 { background-image: url(spritesmith-main-4.png); - background-position: -984px -1557px; + background-position: 0px -1598px; width: 40px; height: 40px; } .shop_head_rogue_1 { background-image: url(spritesmith-main-4.png); - background-position: -1025px -1557px; + background-position: -41px -1598px; width: 40px; height: 40px; } .shop_head_rogue_2 { background-image: url(spritesmith-main-4.png); - background-position: -1066px -1557px; + background-position: -82px -1598px; width: 40px; height: 40px; } .shop_head_rogue_3 { background-image: url(spritesmith-main-4.png); - background-position: -1107px -1557px; + background-position: -123px -1598px; width: 40px; height: 40px; } .shop_head_rogue_4 { background-image: url(spritesmith-main-4.png); - background-position: -1148px -1557px; + background-position: -164px -1598px; width: 40px; height: 40px; } .shop_head_rogue_5 { background-image: url(spritesmith-main-4.png); - background-position: -1189px -1557px; + background-position: -205px -1598px; width: 40px; height: 40px; } .shop_head_special_0 { background-image: url(spritesmith-main-4.png); - background-position: -1230px -1557px; + background-position: -246px -1598px; width: 40px; height: 40px; } .shop_head_special_1 { background-image: url(spritesmith-main-4.png); - background-position: -1271px -1557px; + background-position: -287px -1598px; width: 40px; height: 40px; } .shop_head_special_2 { background-image: url(spritesmith-main-4.png); - background-position: -1312px -1557px; + background-position: -328px -1598px; width: 40px; height: 40px; } .shop_head_special_fireCoralCirclet { background-image: url(spritesmith-main-4.png); - background-position: -1353px -1557px; + background-position: -369px -1598px; width: 40px; height: 40px; } .shop_head_warrior_1 { background-image: url(spritesmith-main-4.png); - background-position: -1394px -1557px; + background-position: -410px -1598px; width: 40px; height: 40px; } .shop_head_warrior_2 { background-image: url(spritesmith-main-4.png); - background-position: -1435px -1557px; + background-position: -451px -1598px; width: 40px; height: 40px; } .shop_head_warrior_3 { background-image: url(spritesmith-main-4.png); - background-position: -1476px -1557px; + background-position: -492px -1598px; width: 40px; height: 40px; } .shop_head_warrior_4 { background-image: url(spritesmith-main-4.png); - background-position: -1517px -1557px; + background-position: -533px -1598px; width: 40px; height: 40px; } .shop_head_warrior_5 { background-image: url(spritesmith-main-4.png); - background-position: -1558px -1557px; + background-position: -574px -1598px; width: 40px; height: 40px; } .shop_head_wizard_1 { background-image: url(spritesmith-main-4.png); - background-position: -1605px 0px; + background-position: -615px -1598px; width: 40px; height: 40px; } .shop_head_wizard_2 { background-image: url(spritesmith-main-4.png); - background-position: -1605px -41px; + background-position: -656px -1598px; width: 40px; height: 40px; } .shop_head_wizard_3 { background-image: url(spritesmith-main-4.png); - background-position: -1605px -82px; + background-position: -697px -1598px; width: 40px; height: 40px; } .shop_head_wizard_4 { background-image: url(spritesmith-main-4.png); - background-position: -1605px -123px; + background-position: -738px -1598px; width: 40px; height: 40px; } .shop_head_wizard_5 { background-image: url(spritesmith-main-4.png); - background-position: -1605px -164px; + background-position: -779px -1598px; width: 40px; height: 40px; } .headAccessory_special_bearEars { background-image: url(spritesmith-main-4.png); - background-position: -1473px -273px; + background-position: -848px -546px; width: 90px; height: 90px; } .customize-option.headAccessory_special_bearEars { background-image: url(spritesmith-main-4.png); - background-position: -1498px -288px; + background-position: -873px -561px; width: 60px; height: 60px; } .headAccessory_special_cactusEars { background-image: url(spritesmith-main-4.png); - background-position: -1473px -364px; + background-position: -1579px -182px; width: 90px; height: 90px; } .customize-option.headAccessory_special_cactusEars { background-image: url(spritesmith-main-4.png); - background-position: -1498px -379px; + background-position: -1604px -197px; width: 60px; height: 60px; } .headAccessory_special_foxEars { background-image: url(spritesmith-main-4.png); - background-position: -1473px -455px; + background-position: -1579px -91px; width: 90px; height: 90px; } .customize-option.headAccessory_special_foxEars { background-image: url(spritesmith-main-4.png); - background-position: -1498px -470px; + background-position: -1604px -106px; width: 60px; height: 60px; } .headAccessory_special_lionEars { background-image: url(spritesmith-main-4.png); - background-position: -1473px -546px; + background-position: -1092px -1425px; width: 90px; height: 90px; } .customize-option.headAccessory_special_lionEars { background-image: url(spritesmith-main-4.png); - background-position: -1498px -561px; + background-position: -1117px -1440px; width: 60px; height: 60px; } .headAccessory_special_pandaEars { background-image: url(spritesmith-main-4.png); - background-position: -1473px -637px; + background-position: -1001px -1425px; width: 90px; height: 90px; } .customize-option.headAccessory_special_pandaEars { background-image: url(spritesmith-main-4.png); - background-position: -1498px -652px; + background-position: -1026px -1440px; width: 60px; height: 60px; } .headAccessory_special_pigEars { background-image: url(spritesmith-main-4.png); - background-position: -1473px -728px; + background-position: -182px -1425px; width: 90px; height: 90px; } .customize-option.headAccessory_special_pigEars { background-image: url(spritesmith-main-4.png); - background-position: -1498px -743px; + background-position: -207px -1440px; width: 60px; height: 60px; } .headAccessory_special_tigerEars { background-image: url(spritesmith-main-4.png); - background-position: -1473px -819px; + background-position: -91px -1425px; width: 90px; height: 90px; } .customize-option.headAccessory_special_tigerEars { background-image: url(spritesmith-main-4.png); - background-position: -1498px -834px; + background-position: -116px -1440px; width: 60px; height: 60px; } .headAccessory_special_wolfEars { background-image: url(spritesmith-main-4.png); - background-position: -1473px -910px; + background-position: -1488px -1183px; width: 90px; height: 90px; } .customize-option.headAccessory_special_wolfEars { background-image: url(spritesmith-main-4.png); - background-position: -1498px -925px; + background-position: -1513px -1198px; width: 60px; height: 60px; } .shop_headAccessory_special_bearEars { background-image: url(spritesmith-main-4.png); - background-position: -1605px -533px; + background-position: -1148px -1598px; width: 40px; height: 40px; } .shop_headAccessory_special_cactusEars { background-image: url(spritesmith-main-4.png); - background-position: -1605px -574px; + background-position: -1189px -1598px; width: 40px; height: 40px; } .shop_headAccessory_special_foxEars { background-image: url(spritesmith-main-4.png); - background-position: -1605px -615px; + background-position: -1230px -1598px; width: 40px; height: 40px; } .shop_headAccessory_special_lionEars { background-image: url(spritesmith-main-4.png); - background-position: -1605px -656px; + background-position: -1271px -1598px; width: 40px; height: 40px; } .shop_headAccessory_special_pandaEars { background-image: url(spritesmith-main-4.png); - background-position: -1605px -697px; + background-position: -1312px -1598px; width: 40px; height: 40px; } .shop_headAccessory_special_pigEars { background-image: url(spritesmith-main-4.png); - background-position: -1605px -738px; + background-position: -1353px -1598px; width: 40px; height: 40px; } .shop_headAccessory_special_tigerEars { background-image: url(spritesmith-main-4.png); - background-position: -1605px -779px; + background-position: -1394px -1598px; width: 40px; height: 40px; } .shop_headAccessory_special_wolfEars { background-image: url(spritesmith-main-4.png); - background-position: -1605px -820px; + background-position: -1435px -1598px; width: 40px; height: 40px; } .shield_healer_1 { background-image: url(spritesmith-main-4.png); - background-position: -1473px -1001px; + background-position: -1488px -1001px; width: 90px; height: 90px; } .shield_healer_2 { background-image: url(spritesmith-main-4.png); - background-position: -1473px -1092px; + background-position: -1488px -637px; width: 90px; height: 90px; } .shield_healer_3 { background-image: url(spritesmith-main-4.png); - background-position: -1473px -1183px; + background-position: -1488px -546px; width: 90px; height: 90px; } .shield_healer_4 { background-image: url(spritesmith-main-4.png); - background-position: -1473px -1274px; + background-position: -1488px -182px; width: 90px; height: 90px; } .shield_healer_5 { background-image: url(spritesmith-main-4.png); - background-position: 0px -1425px; + background-position: -1365px -1334px; width: 90px; height: 90px; } .shield_rogue_0 { background-image: url(spritesmith-main-4.png); - background-position: -91px -1425px; + background-position: -1001px -1334px; width: 90px; height: 90px; } .shield_rogue_1 { background-image: url(spritesmith-main-4.png); - background-position: -105px -697px; + background-position: -209px -697px; width: 103px; height: 90px; } .shield_rogue_2 { background-image: url(spritesmith-main-4.png); - background-position: -209px -697px; + background-position: -105px -697px; width: 103px; height: 90px; } .shield_rogue_3 { background-image: url(spritesmith-main-4.png); - background-position: -309px 0px; + background-position: -327px -91px; width: 114px; height: 90px; } .shield_rogue_4 { background-image: url(spritesmith-main-4.png); - background-position: -830px 0px; + background-position: -224px -106px; width: 96px; height: 90px; } .shield_rogue_5 { background-image: url(spritesmith-main-4.png); - background-position: -115px -212px; + background-position: -327px -182px; width: 114px; height: 90px; } .shield_rogue_6 { background-image: url(spritesmith-main-4.png); - background-position: 0px -212px; + background-position: -327px 0px; width: 114px; height: 90px; } .shield_special_1 { background-image: url(spritesmith-main-4.png); - background-position: -728px -1425px; + background-position: -1033px -364px; width: 90px; height: 90px; } .shield_special_goldenknight { background-image: url(spritesmith-main-4.png); - background-position: -424px -273px; + background-position: -554px -182px; width: 111px; height: 90px; } .shield_special_moonpearlShield { background-image: url(spritesmith-main-4.png); - background-position: -910px -1425px; + background-position: -91px -879px; width: 90px; height: 90px; } .shield_warrior_1 { background-image: url(spritesmith-main-4.png); - background-position: -1001px -1425px; + background-position: -1488px -1274px; width: 90px; height: 90px; } .shield_warrior_2 { background-image: url(spritesmith-main-4.png); - background-position: -1092px -1425px; + background-position: -1488px -910px; width: 90px; height: 90px; } .shield_warrior_3 { background-image: url(spritesmith-main-4.png); - background-position: -910px -1152px; + background-position: -1488px -819px; width: 90px; height: 90px; } .shield_warrior_4 { background-image: url(spritesmith-main-4.png); - background-position: -364px -1152px; + background-position: -182px -1334px; width: 90px; height: 90px; } .shield_warrior_5 { background-image: url(spritesmith-main-4.png); - background-position: -1183px -1425px; + background-position: -1092px -1243px; width: 90px; height: 90px; } .shop_shield_healer_1 { background-image: url(spritesmith-main-4.png); - background-position: -123px -1598px; + background-position: -1670px -656px; width: 40px; height: 40px; } .shop_shield_healer_2 { background-image: url(spritesmith-main-4.png); - background-position: -164px -1598px; + background-position: -1670px -697px; width: 40px; height: 40px; } .shop_shield_healer_3 { background-image: url(spritesmith-main-4.png); - background-position: -205px -1598px; - width: 40px; - height: 40px; -} -.shop_shield_healer_4 { - background-image: url(spritesmith-main-4.png); - background-position: -246px -1598px; - width: 40px; - height: 40px; -} -.shop_shield_healer_5 { - background-image: url(spritesmith-main-4.png); - background-position: -287px -1598px; - width: 40px; - height: 40px; -} -.shop_shield_rogue_0 { - background-image: url(spritesmith-main-4.png); - background-position: -328px -1598px; - width: 40px; - height: 40px; -} -.shop_shield_rogue_1 { - background-image: url(spritesmith-main-4.png); - background-position: -369px -1598px; - width: 40px; - height: 40px; -} -.shop_shield_rogue_2 { - background-image: url(spritesmith-main-4.png); - background-position: -410px -1598px; - width: 40px; - height: 40px; -} -.shop_shield_rogue_3 { - background-image: url(spritesmith-main-4.png); - background-position: -451px -1598px; - width: 40px; - height: 40px; -} -.shop_shield_rogue_4 { - background-image: url(spritesmith-main-4.png); - background-position: -492px -1598px; - width: 40px; - height: 40px; -} -.shop_shield_rogue_5 { - background-image: url(spritesmith-main-4.png); - background-position: -533px -1598px; - width: 40px; - height: 40px; -} -.shop_shield_rogue_6 { - background-image: url(spritesmith-main-4.png); - background-position: -574px -1598px; - width: 40px; - height: 40px; -} -.shop_shield_special_0 { - background-image: url(spritesmith-main-4.png); - background-position: -615px -1598px; - width: 40px; - height: 40px; -} -.shop_shield_special_1 { - background-image: url(spritesmith-main-4.png); - background-position: -656px -1598px; - width: 40px; - height: 40px; -} -.shop_shield_special_goldenknight { - background-image: url(spritesmith-main-4.png); - background-position: -697px -1598px; - width: 40px; - height: 40px; -} -.shop_shield_special_moonpearlShield { - background-image: url(spritesmith-main-4.png); - background-position: -738px -1598px; - width: 40px; - height: 40px; -} -.shop_shield_warrior_1 { - background-image: url(spritesmith-main-4.png); - background-position: -779px -1598px; - width: 40px; - height: 40px; -} -.shop_shield_warrior_2 { - background-image: url(spritesmith-main-4.png); - background-position: -820px -1598px; - width: 40px; - height: 40px; -} -.shop_shield_warrior_3 { - background-image: url(spritesmith-main-4.png); - background-position: -861px -1598px; - width: 40px; - height: 40px; -} -.shop_shield_warrior_4 { - background-image: url(spritesmith-main-4.png); - background-position: -902px -1598px; - width: 40px; - height: 40px; -} -.shop_shield_warrior_5 { - background-image: url(spritesmith-main-4.png); - background-position: -943px -1598px; - width: 40px; - height: 40px; -} -.shop_weapon_healer_0 { - background-image: url(spritesmith-main-4.png); - background-position: -984px -1598px; - width: 40px; - height: 40px; -} -.shop_weapon_healer_1 { - background-image: url(spritesmith-main-4.png); - background-position: -1025px -1598px; - width: 40px; - height: 40px; -} -.shop_weapon_healer_2 { - background-image: url(spritesmith-main-4.png); - background-position: -1066px -1598px; - width: 40px; - height: 40px; -} -.shop_weapon_healer_3 { - background-image: url(spritesmith-main-4.png); - background-position: -1107px -1598px; - width: 40px; - height: 40px; -} -.shop_weapon_healer_4 { - background-image: url(spritesmith-main-4.png); - background-position: -1148px -1598px; - width: 40px; - height: 40px; -} -.shop_weapon_healer_5 { - background-image: url(spritesmith-main-4.png); - background-position: -1189px -1598px; - width: 40px; - height: 40px; -} -.shop_weapon_healer_6 { - background-image: url(spritesmith-main-4.png); - background-position: -1230px -1598px; - width: 40px; - height: 40px; -} -.shop_weapon_rogue_0 { - background-image: url(spritesmith-main-4.png); - background-position: -1271px -1598px; - width: 40px; - height: 40px; -} -.shop_weapon_rogue_1 { - background-image: url(spritesmith-main-4.png); - background-position: -1312px -1598px; - width: 40px; - height: 40px; -} -.shop_weapon_rogue_2 { - background-image: url(spritesmith-main-4.png); - background-position: -1353px -1598px; - width: 40px; - height: 40px; -} -.shop_weapon_rogue_3 { - background-image: url(spritesmith-main-4.png); - background-position: -1394px -1598px; - width: 40px; - height: 40px; -} -.shop_weapon_rogue_4 { - background-image: url(spritesmith-main-4.png); - background-position: -1435px -1598px; - width: 40px; - height: 40px; -} -.shop_weapon_rogue_5 { - background-image: url(spritesmith-main-4.png); - background-position: -1476px -1598px; - width: 40px; - height: 40px; -} -.shop_weapon_rogue_6 { - background-image: url(spritesmith-main-4.png); - background-position: -1517px -1598px; - width: 40px; - height: 40px; -} -.shop_weapon_special_0 { - background-image: url(spritesmith-main-4.png); - background-position: -1558px -1598px; - width: 40px; - height: 40px; -} -.shop_weapon_special_1 { - background-image: url(spritesmith-main-4.png); - background-position: -1599px -1598px; - width: 40px; - height: 40px; -} -.shop_weapon_special_2 { - background-image: url(spritesmith-main-4.png); - background-position: -1646px 0px; - width: 40px; - height: 40px; -} -.shop_weapon_special_3 { - background-image: url(spritesmith-main-4.png); - background-position: -1646px -41px; - width: 40px; - height: 40px; -} -.shop_weapon_special_critical { - background-image: url(spritesmith-main-4.png); - background-position: -1646px -82px; - width: 40px; - height: 40px; -} -.shop_weapon_special_tridentOfCrashingTides { - background-image: url(spritesmith-main-4.png); - background-position: -1646px -123px; - width: 40px; - height: 40px; -} -.shop_weapon_warrior_0 { - background-image: url(spritesmith-main-4.png); - background-position: -1646px -164px; - width: 40px; - height: 40px; -} -.shop_weapon_warrior_1 { - background-image: url(spritesmith-main-4.png); - background-position: -1646px -205px; - width: 40px; - height: 40px; -} -.shop_weapon_warrior_2 { - background-image: url(spritesmith-main-4.png); - background-position: -1646px -246px; - width: 40px; - height: 40px; -} -.shop_weapon_warrior_3 { - background-image: url(spritesmith-main-4.png); - background-position: -1646px -287px; - width: 40px; - height: 40px; -} -.shop_weapon_warrior_4 { - background-image: url(spritesmith-main-4.png); - background-position: -1646px -328px; - width: 40px; - height: 40px; -} -.shop_weapon_warrior_5 { - background-image: url(spritesmith-main-4.png); - background-position: -1646px -369px; - width: 40px; - height: 40px; -} -.shop_weapon_warrior_6 { - background-image: url(spritesmith-main-4.png); - background-position: -1646px -410px; - width: 40px; - height: 40px; -} -.shop_weapon_wizard_0 { - background-image: url(spritesmith-main-4.png); - background-position: -1646px -451px; - width: 40px; - height: 40px; -} -.shop_weapon_wizard_1 { - background-image: url(spritesmith-main-4.png); - background-position: -1646px -492px; - width: 40px; - height: 40px; -} -.shop_weapon_wizard_2 { - background-image: url(spritesmith-main-4.png); - background-position: -1646px -533px; - width: 40px; - height: 40px; -} -.shop_weapon_wizard_3 { - background-image: url(spritesmith-main-4.png); - background-position: -1646px -574px; - width: 40px; - height: 40px; -} -.shop_weapon_wizard_4 { - background-image: url(spritesmith-main-4.png); - background-position: -1646px -615px; - width: 40px; - height: 40px; -} -.shop_weapon_wizard_5 { - background-image: url(spritesmith-main-4.png); - background-position: -1646px -656px; - width: 40px; - height: 40px; -} -.shop_weapon_wizard_6 { - background-image: url(spritesmith-main-4.png); - background-position: -410px -1557px; + background-position: -1670px -738px; width: 40px; height: 40px; } diff --git a/common/dist/sprites/spritesmith-main-4.png b/common/dist/sprites/spritesmith-main-4.png index 89559e81c4..a8d273407f 100644 Binary files a/common/dist/sprites/spritesmith-main-4.png and b/common/dist/sprites/spritesmith-main-4.png differ diff --git a/common/dist/sprites/spritesmith-main-5.css b/common/dist/sprites/spritesmith-main-5.css index 216dfbc48b..8e3c776394 100644 --- a/common/dist/sprites/spritesmith-main-5.css +++ b/common/dist/sprites/spritesmith-main-5.css @@ -1,1008 +1,1320 @@ +.shop_shield_healer_4 { + background-image: url(spritesmith-main-5.png); + background-position: -1525px -367px; + width: 40px; + height: 40px; +} +.shop_shield_healer_5 { + background-image: url(spritesmith-main-5.png); + background-position: -1711px -1377px; + width: 40px; + height: 40px; +} +.shop_shield_rogue_0 { + background-image: url(spritesmith-main-5.png); + background-position: -1711px -1459px; + width: 40px; + height: 40px; +} +.shop_shield_rogue_1 { + background-image: url(spritesmith-main-5.png); + background-position: -1711px -1623px; + width: 40px; + height: 40px; +} +.shop_shield_rogue_2 { + background-image: url(spritesmith-main-5.png); + background-position: -1525px -326px; + width: 40px; + height: 40px; +} +.shop_shield_rogue_3 { + background-image: url(spritesmith-main-5.png); + background-position: -421px -1704px; + width: 40px; + height: 40px; +} +.shop_shield_rogue_4 { + background-image: url(spritesmith-main-5.png); + background-position: -503px -1704px; + width: 40px; + height: 40px; +} +.shop_shield_rogue_5 { + background-image: url(spritesmith-main-5.png); + background-position: -667px -1704px; + width: 40px; + height: 40px; +} +.shop_shield_rogue_6 { + background-image: url(spritesmith-main-5.png); + background-position: -708px -1704px; + width: 40px; + height: 40px; +} +.shop_shield_special_0 { + background-image: url(spritesmith-main-5.png); + background-position: -749px -1704px; + width: 40px; + height: 40px; +} +.shop_shield_special_1 { + background-image: url(spritesmith-main-5.png); + background-position: -790px -1704px; + width: 40px; + height: 40px; +} +.shop_shield_special_goldenknight { + background-image: url(spritesmith-main-5.png); + background-position: -831px -1704px; + width: 40px; + height: 40px; +} +.shop_shield_special_moonpearlShield { + background-image: url(spritesmith-main-5.png); + background-position: -1760px -82px; + width: 40px; + height: 40px; +} +.shop_shield_warrior_1 { + background-image: url(spritesmith-main-5.png); + background-position: -1760px -41px; + width: 40px; + height: 40px; +} +.shop_shield_warrior_2 { + background-image: url(spritesmith-main-5.png); + background-position: -1760px 0px; + width: 40px; + height: 40px; +} +.shop_shield_warrior_3 { + background-image: url(spritesmith-main-5.png); + background-position: -1692px -1704px; + width: 40px; + height: 40px; +} +.shop_shield_warrior_4 { + background-image: url(spritesmith-main-5.png); + background-position: -1651px -1704px; + width: 40px; + height: 40px; +} +.shop_shield_warrior_5 { + background-image: url(spritesmith-main-5.png); + background-position: -1610px -1704px; + width: 40px; + height: 40px; +} +.shop_weapon_healer_0 { + background-image: url(spritesmith-main-5.png); + background-position: -1569px -1704px; + width: 40px; + height: 40px; +} +.shop_weapon_healer_1 { + background-image: url(spritesmith-main-5.png); + background-position: -1528px -1704px; + width: 40px; + height: 40px; +} +.shop_weapon_healer_2 { + background-image: url(spritesmith-main-5.png); + background-position: -1487px -1704px; + width: 40px; + height: 40px; +} +.shop_weapon_healer_3 { + background-image: url(spritesmith-main-5.png); + background-position: -1446px -1704px; + width: 40px; + height: 40px; +} +.shop_weapon_healer_4 { + background-image: url(spritesmith-main-5.png); + background-position: -1405px -1704px; + width: 40px; + height: 40px; +} +.shop_weapon_healer_5 { + background-image: url(spritesmith-main-5.png); + background-position: -1364px -1704px; + width: 40px; + height: 40px; +} +.shop_weapon_healer_6 { + background-image: url(spritesmith-main-5.png); + background-position: -1323px -1704px; + width: 40px; + height: 40px; +} +.shop_weapon_rogue_0 { + background-image: url(spritesmith-main-5.png); + background-position: -1282px -1704px; + width: 40px; + height: 40px; +} +.shop_weapon_rogue_1 { + background-image: url(spritesmith-main-5.png); + background-position: -1241px -1704px; + width: 40px; + height: 40px; +} +.shop_weapon_rogue_2 { + background-image: url(spritesmith-main-5.png); + background-position: -1200px -1704px; + width: 40px; + height: 40px; +} +.shop_weapon_rogue_3 { + background-image: url(spritesmith-main-5.png); + background-position: -1159px -1704px; + width: 40px; + height: 40px; +} +.shop_weapon_rogue_4 { + background-image: url(spritesmith-main-5.png); + background-position: -1118px -1704px; + width: 40px; + height: 40px; +} +.shop_weapon_rogue_5 { + background-image: url(spritesmith-main-5.png); + background-position: -1077px -1704px; + width: 40px; + height: 40px; +} +.shop_weapon_rogue_6 { + background-image: url(spritesmith-main-5.png); + background-position: -1036px -1704px; + width: 40px; + height: 40px; +} +.shop_weapon_special_0 { + background-image: url(spritesmith-main-5.png); + background-position: -995px -1704px; + width: 40px; + height: 40px; +} +.shop_weapon_special_1 { + background-image: url(spritesmith-main-5.png); + background-position: -954px -1704px; + width: 40px; + height: 40px; +} +.shop_weapon_special_2 { + background-image: url(spritesmith-main-5.png); + background-position: -913px -1704px; + width: 40px; + height: 40px; +} +.shop_weapon_special_3 { + background-image: url(spritesmith-main-5.png); + background-position: -872px -1704px; + width: 40px; + height: 40px; +} +.shop_weapon_special_critical { + background-image: url(spritesmith-main-5.png); + background-position: -380px -1704px; + width: 40px; + height: 40px; +} +.shop_weapon_special_tridentOfCrashingTides { + background-image: url(spritesmith-main-5.png); + background-position: -339px -1704px; + width: 40px; + height: 40px; +} +.shop_weapon_warrior_0 { + background-image: url(spritesmith-main-5.png); + background-position: -257px -1704px; + width: 40px; + height: 40px; +} +.shop_weapon_warrior_1 { + background-image: url(spritesmith-main-5.png); + background-position: -216px -1704px; + width: 40px; + height: 40px; +} +.shop_weapon_warrior_2 { + background-image: url(spritesmith-main-5.png); + background-position: -175px -1704px; + width: 40px; + height: 40px; +} +.shop_weapon_warrior_3 { + background-image: url(spritesmith-main-5.png); + background-position: -134px -1704px; + width: 40px; + height: 40px; +} +.shop_weapon_warrior_4 { + background-image: url(spritesmith-main-5.png); + background-position: -93px -1704px; + width: 40px; + height: 40px; +} +.shop_weapon_warrior_5 { + background-image: url(spritesmith-main-5.png); + background-position: -52px -1704px; + width: 40px; + height: 40px; +} +.shop_weapon_warrior_6 { + background-image: url(spritesmith-main-5.png); + background-position: -1666px -1652px; + width: 40px; + height: 40px; +} +.shop_weapon_wizard_0 { + background-image: url(spritesmith-main-5.png); + background-position: -1262px -811px; + width: 40px; + height: 40px; +} +.shop_weapon_wizard_1 { + background-image: url(spritesmith-main-5.png); + background-position: -1221px -811px; + width: 40px; + height: 40px; +} +.shop_weapon_wizard_2 { + background-image: url(spritesmith-main-5.png); + background-position: -1528px -770px; + width: 40px; + height: 40px; +} +.shop_weapon_wizard_3 { + background-image: url(spritesmith-main-5.png); + background-position: -1528px -729px; + width: 40px; + height: 40px; +} +.shop_weapon_wizard_4 { + background-image: url(spritesmith-main-5.png); + background-position: -1528px -688px; + width: 40px; + height: 40px; +} +.shop_weapon_wizard_5 { + background-image: url(spritesmith-main-5.png); + background-position: -1525px -449px; + width: 40px; + height: 40px; +} +.shop_weapon_wizard_6 { + background-image: url(spritesmith-main-5.png); + background-position: -1525px -408px; + width: 40px; + height: 40px; +} .weapon_healer_0 { background-image: url(spritesmith-main-5.png); - background-position: -1536px -1001px; + background-position: -1302px -1469px; width: 90px; height: 90px; } .weapon_healer_1 { background-image: url(spritesmith-main-5.png); - background-position: -1627px 0px; + background-position: -1571px -728px; width: 90px; height: 90px; } .weapon_healer_2 { background-image: url(spritesmith-main-5.png); - background-position: -1274px -1523px; + background-position: -1571px -819px; width: 90px; height: 90px; } .weapon_healer_3 { background-image: url(spritesmith-main-5.png); - background-position: -1365px -1523px; + background-position: -1571px -910px; width: 90px; height: 90px; } .weapon_healer_4 { background-image: url(spritesmith-main-5.png); - background-position: -1456px -1523px; + background-position: -1571px -1001px; width: 90px; height: 90px; } .weapon_healer_5 { background-image: url(spritesmith-main-5.png); - background-position: -1443px -1251px; + background-position: -1571px -1092px; width: 90px; height: 90px; } .weapon_healer_6 { background-image: url(spritesmith-main-5.png); - background-position: -1536px 0px; + background-position: -1571px -1274px; width: 90px; height: 90px; } .weapon_rogue_0 { background-image: url(spritesmith-main-5.png); - background-position: -1536px -91px; + background-position: -1571px -1365px; width: 90px; height: 90px; } .weapon_rogue_1 { background-image: url(spritesmith-main-5.png); - background-position: -1536px -182px; + background-position: -1571px -1456px; width: 90px; height: 90px; } .weapon_rogue_2 { background-image: url(spritesmith-main-5.png); - background-position: -1536px -273px; + background-position: 0px -1561px; width: 90px; height: 90px; } .weapon_rogue_3 { background-image: url(spritesmith-main-5.png); - background-position: -1536px -364px; + background-position: -119px -1469px; width: 90px; height: 90px; } .weapon_rogue_4 { background-image: url(spritesmith-main-5.png); - background-position: -1536px -455px; + background-position: -483px -1469px; width: 90px; height: 90px; } .weapon_rogue_5 { background-image: url(spritesmith-main-5.png); - background-position: -1536px -546px; + background-position: -301px -1469px; width: 90px; height: 90px; } .weapon_rogue_6 { background-image: url(spritesmith-main-5.png); - background-position: -1536px -728px; + background-position: -392px -1469px; width: 90px; height: 90px; } .weapon_special_1 { background-image: url(spritesmith-main-5.png); - background-position: -185px -1402px; + background-position: -1137px -1287px; width: 102px; height: 90px; } .weapon_special_2 { background-image: url(spritesmith-main-5.png); - background-position: -1536px -1092px; + background-position: -574px -1469px; width: 90px; height: 90px; } .weapon_special_3 { background-image: url(spritesmith-main-5.png); - background-position: -1536px -1183px; + background-position: -665px -1469px; width: 90px; height: 90px; } .weapon_special_tridentOfCrashingTides { background-image: url(spritesmith-main-5.png); - background-position: -1536px -1274px; + background-position: -756px -1469px; width: 90px; height: 90px; } .weapon_warrior_0 { background-image: url(spritesmith-main-5.png); - background-position: -1536px -1365px; + background-position: -847px -1469px; width: 90px; height: 90px; } .weapon_warrior_1 { background-image: url(spritesmith-main-5.png); - background-position: 0px -1523px; + background-position: -938px -1469px; width: 90px; height: 90px; } .weapon_warrior_2 { background-image: url(spritesmith-main-5.png); - background-position: -91px -1523px; + background-position: -1029px -1469px; width: 90px; height: 90px; } .weapon_warrior_3 { background-image: url(spritesmith-main-5.png); - background-position: -182px -1523px; + background-position: -1120px -1469px; width: 90px; height: 90px; } .weapon_warrior_4 { background-image: url(spritesmith-main-5.png); - background-position: -273px -1523px; + background-position: -1211px -1469px; width: 90px; height: 90px; } .weapon_warrior_5 { background-image: url(spritesmith-main-5.png); - background-position: -364px -1523px; + background-position: -182px -1561px; width: 90px; height: 90px; } .weapon_warrior_6 { background-image: url(spritesmith-main-5.png); - background-position: -546px -1523px; + background-position: -1393px -1469px; width: 90px; height: 90px; } .weapon_wizard_0 { background-image: url(spritesmith-main-5.png); - background-position: -637px -1523px; + background-position: -1571px 0px; width: 90px; height: 90px; } .weapon_wizard_1 { background-image: url(spritesmith-main-5.png); - background-position: -728px -1523px; + background-position: -1571px -91px; width: 90px; height: 90px; } .weapon_wizard_2 { background-image: url(spritesmith-main-5.png); - background-position: -819px -1523px; + background-position: -1571px -182px; width: 90px; height: 90px; } .weapon_wizard_3 { background-image: url(spritesmith-main-5.png); - background-position: -910px -1523px; + background-position: -1571px -273px; width: 90px; height: 90px; } .weapon_wizard_4 { background-image: url(spritesmith-main-5.png); - background-position: -1001px -1523px; + background-position: -1571px -364px; width: 90px; height: 90px; } .weapon_wizard_5 { background-image: url(spritesmith-main-5.png); - background-position: -1092px -1523px; + background-position: -1571px -455px; width: 90px; height: 90px; } .weapon_wizard_6 { background-image: url(spritesmith-main-5.png); - background-position: -1183px -1523px; + background-position: -1571px -546px; width: 90px; height: 90px; } .GrimReaper { background-image: url(spritesmith-main-5.png); - background-position: -1627px -164px; + background-position: -1511px -504px; width: 57px; height: 66px; } .Pet_Currency_Gem { background-image: url(spritesmith-main-5.png); - background-position: -1671px -1567px; + background-position: -1711px -1337px; width: 45px; height: 39px; } .Pet_Currency_Gem1x { background-image: url(spritesmith-main-5.png); - background-position: -1688px -91px; + background-position: -1760px -422px; width: 15px; height: 13px; } .Pet_Currency_Gem2x { background-image: url(spritesmith-main-5.png); - background-position: -1685px -451px; + background-position: -1760px -326px; width: 30px; height: 26px; } .PixelPaw-Gold { background-image: url(spritesmith-main-5.png); - background-position: -1627px -891px; + background-position: -1516px -966px; width: 51px; height: 51px; } .PixelPaw { background-image: url(spritesmith-main-5.png); - background-position: -1627px -995px; + background-position: -1516px -879px; width: 51px; height: 51px; } .PixelPaw002 { background-image: url(spritesmith-main-5.png); - background-position: -1627px -943px; + background-position: -1516px -827px; width: 51px; height: 51px; } .avatar_floral_healer { background-image: url(spritesmith-main-5.png); - background-position: -1143px -1251px; + background-position: -837px -1287px; width: 99px; height: 99px; } .avatar_floral_rogue { background-image: url(spritesmith-main-5.png); - background-position: -1243px -1251px; + background-position: -937px -1287px; width: 99px; height: 99px; } .avatar_floral_warrior { background-image: url(spritesmith-main-5.png); - background-position: -1343px -1251px; + background-position: -1037px -1287px; width: 99px; height: 99px; } .avatar_floral_wizard { background-image: url(spritesmith-main-5.png); - background-position: -85px -1402px; + background-position: -737px -1287px; width: 99px; height: 99px; } .empty_bottles { background-image: url(spritesmith-main-5.png); - background-position: -1627px -231px; + background-position: -273px -1561px; width: 64px; height: 54px; } .inventory_present { background-image: url(spritesmith-main-5.png); - background-position: -1718px -156px; + background-position: -1350px -1561px; width: 48px; height: 51px; } .inventory_present_01 { background-image: url(spritesmith-main-5.png); - background-position: -1718px -104px; + background-position: -1301px -1561px; width: 48px; height: 51px; } .inventory_present_02 { background-image: url(spritesmith-main-5.png); - background-position: -1718px -52px; + background-position: -1252px -1561px; width: 48px; height: 51px; } .inventory_present_03 { background-image: url(spritesmith-main-5.png); - background-position: -1718px 0px; + background-position: -1203px -1561px; width: 48px; height: 51px; } .inventory_present_04 { background-image: url(spritesmith-main-5.png); - background-position: -1627px -1047px; + background-position: -1154px -1561px; width: 48px; height: 51px; } .inventory_present_05 { background-image: url(spritesmith-main-5.png); - background-position: -1617px -1666px; + background-position: -1105px -1561px; width: 48px; height: 51px; } .inventory_present_06 { background-image: url(spritesmith-main-5.png); - background-position: -1568px -1666px; + background-position: -1056px -1561px; width: 48px; height: 51px; } .inventory_present_07 { background-image: url(spritesmith-main-5.png); - background-position: -1519px -1666px; + background-position: -958px -1561px; width: 48px; height: 51px; } .inventory_present_08 { background-image: url(spritesmith-main-5.png); - background-position: -1470px -1666px; + background-position: -909px -1561px; width: 48px; height: 51px; } .inventory_present_09 { background-image: url(spritesmith-main-5.png); - background-position: -1421px -1666px; + background-position: -860px -1561px; width: 48px; height: 51px; } .inventory_present_10 { background-image: url(spritesmith-main-5.png); - background-position: -1372px -1666px; + background-position: -1516px -1157px; width: 48px; height: 51px; } .inventory_present_11 { background-image: url(spritesmith-main-5.png); - background-position: -1323px -1666px; + background-position: -1516px -1105px; width: 48px; height: 51px; } .inventory_present_12 { background-image: url(spritesmith-main-5.png); - background-position: -1274px -1666px; + background-position: -1497px -1561px; width: 48px; height: 51px; } .inventory_quest_scroll { background-image: url(spritesmith-main-5.png); - background-position: -1225px -1666px; + background-position: -1448px -1561px; width: 48px; height: 51px; } .inventory_quest_scroll_locked { background-image: url(spritesmith-main-5.png); - background-position: -1176px -1666px; + background-position: -1399px -1561px; width: 48px; height: 51px; } .inventory_special_fortify { background-image: url(spritesmith-main-5.png); - background-position: -1627px -781px; + background-position: -802px -1561px; width: 57px; height: 54px; } .inventory_special_greeting { background-image: url(spritesmith-main-5.png); - background-position: -1627px -726px; + background-position: -1511px -626px; width: 57px; height: 54px; } .inventory_special_nye { background-image: url(spritesmith-main-5.png); - background-position: -1627px -671px; + background-position: -744px -1561px; width: 57px; height: 54px; } .inventory_special_opaquePotion { background-image: url(spritesmith-main-5.png); - background-position: -1676px -1463px; + background-position: -1711px -1582px; width: 40px; height: 40px; } .inventory_special_seafoam { background-image: url(spritesmith-main-5.png); - background-position: -1627px -616px; + background-position: -628px -1561px; width: 57px; height: 54px; } .inventory_special_shinySeed { background-image: url(spritesmith-main-5.png); - background-position: -1627px -561px; + background-position: -570px -1561px; width: 57px; height: 54px; } .inventory_special_snowball { background-image: url(spritesmith-main-5.png); - background-position: -1627px -286px; + background-position: -512px -1561px; width: 57px; height: 54px; } .inventory_special_spookDust { background-image: url(spritesmith-main-5.png); - background-position: -1627px -836px; + background-position: -454px -1561px; width: 57px; height: 54px; } .inventory_special_thankyou { background-image: url(spritesmith-main-5.png); - background-position: -1627px -396px; + background-position: -396px -1561px; width: 57px; height: 54px; } .inventory_special_trinket { background-image: url(spritesmith-main-5.png); - background-position: -637px -1666px; + background-position: -1007px -1561px; width: 48px; height: 51px; } .inventory_special_valentine { background-image: url(spritesmith-main-5.png); - background-position: -1627px -341px; + background-position: -338px -1561px; width: 57px; height: 54px; } .knockout { background-image: url(spritesmith-main-5.png); - background-position: -288px -1442px; + background-position: -1100px -811px; width: 120px; height: 47px; } .pet_key { background-image: url(spritesmith-main-5.png); - background-position: -1627px -506px; + background-position: -1511px -571px; width: 57px; height: 54px; } .rebirth_orb { background-image: url(spritesmith-main-5.png); - background-position: -1627px -451px; + background-position: -686px -1561px; width: 57px; height: 54px; } .seafoam_star { background-image: url(spritesmith-main-5.png); - background-position: -1536px -637px; + background-position: -1571px -637px; width: 90px; height: 90px; } .shop_armoire { background-image: url(spritesmith-main-5.png); - background-position: -1676px -1359px; + background-position: -1711px -1541px; width: 40px; height: 40px; } .snowman { background-image: url(spritesmith-main-5.png); - background-position: -1536px -819px; + background-position: -91px -1561px; width: 90px; height: 90px; } .spookman { background-image: url(spritesmith-main-5.png); - background-position: -1536px -910px; + background-position: -1571px -1183px; width: 90px; height: 90px; } .zzz { background-image: url(spritesmith-main-5.png); - background-position: -1676px -1255px; + background-position: -1711px -1500px; width: 40px; height: 40px; } .zzz_light { background-image: url(spritesmith-main-5.png); - background-position: -1676px -1151px; + background-position: -1711px -1418px; width: 40px; height: 40px; } .npc_alex { background-image: url(spritesmith-main-5.png); - background-position: -314px -1251px; + background-position: -190px -1287px; width: 162px; height: 138px; } .npc_bailey { background-image: url(spritesmith-main-5.png); - background-position: -1627px -91px; + background-position: -1484px -1469px; width: 60px; height: 72px; } .npc_daniel { background-image: url(spritesmith-main-5.png); - background-position: -477px -1251px; + background-position: -516px -1287px; width: 135px; height: 123px; } .npc_justin { background-image: url(spritesmith-main-5.png); - background-position: 0px -1402px; + background-position: -652px -1287px; width: 84px; height: 120px; } .npc_justin_head { background-image: url(spritesmith-main-5.png); - background-position: -1679px -891px; + background-position: -1760px -123px; width: 36px; height: 39px; } .npc_matt { background-image: url(spritesmith-main-5.png); - background-position: -1322px -676px; + background-position: -1320px -966px; width: 195px; height: 138px; } .npc_timetravelers { background-image: url(spritesmith-main-5.png); - background-position: -1322px -954px; + background-position: -1320px -1105px; width: 195px; height: 138px; } .npc_timetravelers_active { background-image: url(spritesmith-main-5.png); - background-position: -1322px -815px; + background-position: -1320px -827px; width: 195px; height: 138px; } .npc_tyler { background-image: url(spritesmith-main-5.png); - background-position: -455px -1523px; + background-position: -210px -1469px; width: 90px; height: 90px; } .seasonalshop_closed { background-image: url(spritesmith-main-5.png); - background-position: -151px -1251px; + background-position: -353px -1287px; width: 162px; height: 138px; } .inventory_quest_scroll_atom1 { background-image: url(spritesmith-main-5.png); - background-position: -49px -1666px; + background-position: -1662px -416px; width: 48px; height: 51px; } .inventory_quest_scroll_atom1_locked { background-image: url(spritesmith-main-5.png); - background-position: -1127px -1614px; + background-position: -1662px -468px; width: 48px; height: 51px; } .inventory_quest_scroll_atom2 { background-image: url(spritesmith-main-5.png); - background-position: -1078px -1614px; + background-position: -1662px -520px; width: 48px; height: 51px; } .inventory_quest_scroll_atom2_locked { background-image: url(spritesmith-main-5.png); - background-position: -1029px -1614px; + background-position: -1662px -572px; width: 48px; height: 51px; } .inventory_quest_scroll_atom3 { background-image: url(spritesmith-main-5.png); - background-position: -980px -1614px; + background-position: -1662px -624px; width: 48px; height: 51px; } .inventory_quest_scroll_atom3_locked { background-image: url(spritesmith-main-5.png); - background-position: -931px -1614px; + background-position: -1662px -676px; width: 48px; height: 51px; } .inventory_quest_scroll_basilist { background-image: url(spritesmith-main-5.png); - background-position: -882px -1614px; + background-position: -1662px -728px; width: 48px; height: 51px; } .inventory_quest_scroll_bunny { background-image: url(spritesmith-main-5.png); - background-position: -833px -1614px; + background-position: -1711px -1196px; width: 48px; height: 51px; } .inventory_quest_scroll_cheetah { background-image: url(spritesmith-main-5.png); - background-position: -784px -1614px; + background-position: -1662px -832px; width: 48px; height: 51px; } .inventory_quest_scroll_dilatoryDistress1 { background-image: url(spritesmith-main-5.png); - background-position: -735px -1614px; + background-position: -1662px -884px; width: 48px; height: 51px; } .inventory_quest_scroll_dilatoryDistress2 { background-image: url(spritesmith-main-5.png); - background-position: -441px -1614px; + background-position: -1662px -936px; width: 48px; height: 51px; } .inventory_quest_scroll_dilatoryDistress2_locked { background-image: url(spritesmith-main-5.png); - background-position: -98px -1666px; + background-position: -1662px -988px; width: 48px; height: 51px; } .inventory_quest_scroll_dilatoryDistress3 { background-image: url(spritesmith-main-5.png); - background-position: -1666px -1666px; + background-position: -1662px -1040px; width: 48px; height: 51px; } .inventory_quest_scroll_dilatoryDistress3_locked { background-image: url(spritesmith-main-5.png); - background-position: -147px -1666px; + background-position: -1662px -1092px; width: 48px; height: 51px; } .inventory_quest_scroll_dilatory_derby { background-image: url(spritesmith-main-5.png); - background-position: -392px -1666px; + background-position: -1662px -1144px; width: 48px; height: 51px; } .inventory_quest_scroll_egg { background-image: url(spritesmith-main-5.png); - background-position: -441px -1666px; + background-position: -1662px -1196px; width: 48px; height: 51px; } .inventory_quest_scroll_evilsanta { background-image: url(spritesmith-main-5.png); - background-position: -490px -1666px; + background-position: -1662px -1248px; width: 48px; height: 51px; } .inventory_quest_scroll_evilsanta2 { background-image: url(spritesmith-main-5.png); - background-position: -588px -1666px; + background-position: -1662px -1300px; width: 48px; height: 51px; } .inventory_quest_scroll_frog { background-image: url(spritesmith-main-5.png); - background-position: -686px -1666px; + background-position: -1662px -1352px; width: 48px; height: 51px; } .inventory_quest_scroll_ghost_stag { background-image: url(spritesmith-main-5.png); - background-position: -735px -1666px; + background-position: -1662px -1404px; width: 48px; height: 51px; } .inventory_quest_scroll_goldenknight1 { background-image: url(spritesmith-main-5.png); - background-position: -784px -1666px; + background-position: -1662px -1456px; width: 48px; height: 51px; } .inventory_quest_scroll_goldenknight1_locked { background-image: url(spritesmith-main-5.png); - background-position: -833px -1666px; + background-position: -1662px -1508px; width: 48px; height: 51px; } .inventory_quest_scroll_goldenknight2 { background-image: url(spritesmith-main-5.png); - background-position: -882px -1666px; + background-position: -1662px -1560px; width: 48px; height: 51px; } .inventory_quest_scroll_goldenknight2_locked { background-image: url(spritesmith-main-5.png); - background-position: -1029px -1666px; + background-position: 0px -1652px; width: 48px; height: 51px; } .inventory_quest_scroll_goldenknight3 { background-image: url(spritesmith-main-5.png); - background-position: -1078px -1666px; + background-position: -49px -1652px; width: 48px; height: 51px; } .inventory_quest_scroll_goldenknight3_locked { background-image: url(spritesmith-main-5.png); - background-position: -1127px -1666px; + background-position: -98px -1652px; width: 48px; height: 51px; } .inventory_quest_scroll_gryphon { background-image: url(spritesmith-main-5.png); - background-position: -1718px -208px; + background-position: -1516px -1018px; width: 48px; height: 51px; } .inventory_quest_scroll_harpy { background-image: url(spritesmith-main-5.png); - background-position: -1718px -260px; + background-position: -196px -1652px; width: 48px; height: 51px; } .inventory_quest_scroll_hedgehog { background-image: url(spritesmith-main-5.png); - background-position: -1718px -364px; + background-position: -245px -1652px; width: 48px; height: 51px; } .inventory_quest_scroll_horse { background-image: url(spritesmith-main-5.png); - background-position: -1718px -416px; + background-position: -294px -1652px; width: 48px; height: 51px; } .inventory_quest_scroll_kraken { background-image: url(spritesmith-main-5.png); - background-position: -1627px -1099px; + background-position: -343px -1652px; width: 48px; height: 51px; } .inventory_quest_scroll_moonstone1 { background-image: url(spritesmith-main-5.png); - background-position: -1627px -1151px; + background-position: -392px -1652px; width: 48px; height: 51px; } .inventory_quest_scroll_moonstone1_locked { background-image: url(spritesmith-main-5.png); - background-position: -1627px -1203px; + background-position: -441px -1652px; width: 48px; height: 51px; } .inventory_quest_scroll_moonstone2 { background-image: url(spritesmith-main-5.png); - background-position: -1627px -1255px; + background-position: -490px -1652px; width: 48px; height: 51px; } .inventory_quest_scroll_moonstone2_locked { background-image: url(spritesmith-main-5.png); - background-position: -1627px -1307px; + background-position: -539px -1652px; width: 48px; height: 51px; } .inventory_quest_scroll_moonstone3 { background-image: url(spritesmith-main-5.png); - background-position: -1627px -1359px; + background-position: -588px -1652px; width: 48px; height: 51px; } .inventory_quest_scroll_moonstone3_locked { background-image: url(spritesmith-main-5.png); - background-position: -1627px -1411px; + background-position: -637px -1652px; width: 48px; height: 51px; } .inventory_quest_scroll_octopus { background-image: url(spritesmith-main-5.png); - background-position: -1627px -1463px; + background-position: -686px -1652px; width: 48px; height: 51px; } .inventory_quest_scroll_owl { background-image: url(spritesmith-main-5.png); - background-position: -1627px -1515px; + background-position: -735px -1652px; width: 48px; height: 51px; } .inventory_quest_scroll_penguin { background-image: url(spritesmith-main-5.png); - background-position: -1536px -1456px; + background-position: -784px -1652px; width: 48px; height: 51px; } .inventory_quest_scroll_rat { background-image: url(spritesmith-main-5.png); - background-position: -1547px -1523px; + background-position: -833px -1652px; width: 48px; height: 51px; } .inventory_quest_scroll_rock { background-image: url(spritesmith-main-5.png); - background-position: 0px -1614px; + background-position: -882px -1652px; width: 48px; height: 51px; } .inventory_quest_scroll_rooster { background-image: url(spritesmith-main-5.png); - background-position: -49px -1614px; + background-position: -931px -1652px; width: 48px; height: 51px; } .inventory_quest_scroll_sheep { background-image: url(spritesmith-main-5.png); - background-position: -98px -1614px; + background-position: -980px -1652px; width: 48px; height: 51px; } .inventory_quest_scroll_slime { background-image: url(spritesmith-main-5.png); - background-position: -147px -1614px; + background-position: -1029px -1652px; width: 48px; height: 51px; } .inventory_quest_scroll_snake { background-image: url(spritesmith-main-5.png); - background-position: -196px -1614px; + background-position: -1078px -1652px; width: 48px; height: 51px; } .inventory_quest_scroll_spider { background-image: url(spritesmith-main-5.png); - background-position: -245px -1614px; + background-position: -1127px -1652px; width: 48px; height: 51px; } .inventory_quest_scroll_trex { background-image: url(spritesmith-main-5.png); - background-position: -294px -1614px; + background-position: -1176px -1652px; width: 48px; height: 51px; } .inventory_quest_scroll_trex_undead { background-image: url(spritesmith-main-5.png); - background-position: -343px -1614px; + background-position: -1225px -1652px; width: 48px; height: 51px; } .inventory_quest_scroll_vice1 { background-image: url(spritesmith-main-5.png); - background-position: -392px -1614px; + background-position: -1274px -1652px; width: 48px; height: 51px; } .inventory_quest_scroll_vice1_locked { background-image: url(spritesmith-main-5.png); - background-position: -1767px -1248px; + background-position: -1323px -1652px; width: 48px; height: 51px; } .inventory_quest_scroll_vice2 { background-image: url(spritesmith-main-5.png); - background-position: -490px -1614px; + background-position: -1372px -1652px; width: 48px; height: 51px; } .inventory_quest_scroll_vice2_locked { background-image: url(spritesmith-main-5.png); - background-position: -539px -1614px; + background-position: -1421px -1652px; width: 48px; height: 51px; } .inventory_quest_scroll_vice3 { background-image: url(spritesmith-main-5.png); - background-position: -588px -1614px; + background-position: -1470px -1652px; width: 48px; height: 51px; } .inventory_quest_scroll_vice3_locked { background-image: url(spritesmith-main-5.png); - background-position: -637px -1614px; + background-position: -1519px -1652px; width: 48px; height: 51px; } .inventory_quest_scroll_whale { background-image: url(spritesmith-main-5.png); - background-position: -686px -1614px; + background-position: -1568px -1652px; width: 48px; height: 51px; } .quest_TEMPLATE_FOR_MISSING_IMAGE { background-image: url(spritesmith-main-5.png); - background-position: -1100px -805px; + background-position: -1240px -1287px; width: 221px; height: 39px; } .quest_atom1 { background-image: url(spritesmith-main-5.png); - background-position: -434px -1070px; + background-position: -902px -1106px; width: 250px; height: 150px; } .quest_atom2 { background-image: url(spritesmith-main-5.png); - background-position: -1322px -537px; + background-position: -1320px -688px; width: 207px; height: 138px; } .quest_atom3 { background-image: url(spritesmith-main-5.png); - background-position: 0px -1070px; + background-position: 0px -1106px; width: 216px; height: 180px; } .quest_basilist { background-image: url(spritesmith-main-5.png); - background-position: -1322px -1093px; + background-position: 0px -1287px; width: 189px; height: 141px; } .quest_bunny { background-image: url(spritesmith-main-5.png); - background-position: -1100px -618px; + background-position: -1100px -624px; width: 210px; height: 186px; } .quest_cheetah { background-image: url(spritesmith-main-5.png); - background-position: 0px -232px; + background-position: 0px -672px; width: 219px; height: 219px; } .quest_dilatory { background-image: url(spritesmith-main-5.png); - background-position: -660px 0px; + background-position: -880px -440px; width: 219px; height: 219px; } .quest_dilatoryDistress1 { background-image: url(spritesmith-main-5.png); - background-position: -288px -1402px; + background-position: -1320px -1244px; width: 221px; height: 39px; } .quest_dilatoryDistress1_blueFins { background-image: url(spritesmith-main-5.png); - background-position: -1176px -1614px; + background-position: 0px -1704px; width: 51px; height: 48px; } .quest_dilatoryDistress1_fireCoral { background-image: url(spritesmith-main-5.png); - background-position: 0px -1666px; + background-position: -1711px -416px; width: 48px; height: 51px; } .quest_dilatoryDistress2 { background-image: url(spritesmith-main-5.png); - background-position: 0px -1251px; + background-position: -1153px -1106px; width: 150px; height: 150px; } .quest_dilatoryDistress3 { background-image: url(spritesmith-main-5.png); - background-position: -660px -220px; + background-position: -220px 0px; width: 219px; height: 219px; } .quest_dilatory_derby { background-image: url(spritesmith-main-5.png); - background-position: 0px -452px; + background-position: -440px -452px; width: 219px; height: 219px; } .quest_egg { background-image: url(spritesmith-main-5.png); - background-position: -732px -1402px; + background-position: -1240px -1327px; width: 221px; height: 39px; } .quest_egg_plainEgg { background-image: url(spritesmith-main-5.png); - background-position: -245px -1666px; + background-position: -1711px -676px; width: 48px; height: 51px; } .quest_evilsanta { background-image: url(spritesmith-main-5.png); - background-position: -1187px -1070px; + background-position: 0px -1429px; width: 118px; height: 131px; } .quest_evilsanta2 { background-image: url(spritesmith-main-5.png); - background-position: -220px -452px; + background-position: -660px -220px; width: 219px; height: 219px; } .quest_frog { background-image: url(spritesmith-main-5.png); - background-position: -1100px 0px; + background-position: 0px -892px; width: 221px; height: 213px; } .quest_ghost_stag { background-image: url(spritesmith-main-5.png); - background-position: -220px -672px; + background-position: -440px -232px; width: 219px; height: 219px; } .quest_goldenknight1 { background-image: url(spritesmith-main-5.png); - background-position: -1100px -845px; + background-position: -341px -1429px; width: 221px; height: 39px; } .quest_goldenknight1_testimony { background-image: url(spritesmith-main-5.png); - background-position: -539px -1666px; + background-position: -1711px -988px; width: 48px; height: 51px; } .quest_goldenknight2 { background-image: url(spritesmith-main-5.png); - background-position: -936px -1070px; + background-position: -651px -1106px; width: 250px; height: 150px; } @@ -1014,19 +1326,19 @@ } .quest_gryphon { background-image: url(spritesmith-main-5.png); - background-position: -440px -892px; + background-position: -879px -892px; width: 216px; height: 177px; } .quest_harpy { background-image: url(spritesmith-main-5.png); - background-position: -880px -672px; + background-position: -220px -452px; width: 219px; height: 219px; } .quest_hedgehog { background-image: url(spritesmith-main-5.png); - background-position: -1100px -431px; + background-position: -1100px -437px; width: 219px; height: 186px; } @@ -1038,637 +1350,433 @@ } .quest_kraken { background-image: url(spritesmith-main-5.png); - background-position: -657px -892px; + background-position: -662px -892px; width: 216px; height: 177px; } .quest_moonstone1 { background-image: url(spritesmith-main-5.png); - background-position: -954px -1402px; + background-position: -119px -1429px; width: 221px; height: 39px; } .quest_moonstone1_moonstone { background-image: url(spritesmith-main-5.png); - background-position: -1685px -396px; + background-position: -1760px -295px; width: 30px; height: 30px; } .quest_moonstone2 { background-image: url(spritesmith-main-5.png); - background-position: -440px -232px; + background-position: 0px -232px; width: 219px; height: 219px; } .quest_moonstone3 { background-image: url(spritesmith-main-5.png); - background-position: -440px -452px; + background-position: -660px -452px; width: 219px; height: 219px; } .quest_octopus { background-image: url(spritesmith-main-5.png); - background-position: 0px -892px; + background-position: -222px -892px; width: 222px; height: 177px; } .quest_owl { background-image: url(spritesmith-main-5.png); - background-position: -660px -452px; + background-position: -220px -232px; width: 219px; height: 219px; } .quest_penguin { background-image: url(spritesmith-main-5.png); - background-position: -1322px -353px; + background-position: -1320px -504px; width: 190px; height: 183px; } .quest_rat { background-image: url(spritesmith-main-5.png); - background-position: -880px 0px; + background-position: 0px -452px; width: 219px; height: 219px; } .quest_rock { background-image: url(spritesmith-main-5.png); - background-position: -1100px -214px; + background-position: -1100px -220px; width: 216px; height: 216px; } .quest_rooster { background-image: url(spritesmith-main-5.png); - background-position: -1322px 0px; + background-position: -1320px -151px; width: 213px; height: 174px; } .quest_sheep { background-image: url(spritesmith-main-5.png); - background-position: -440px -672px; + background-position: -880px 0px; width: 219px; height: 219px; } .quest_slime { background-image: url(spritesmith-main-5.png); - background-position: -660px -672px; + background-position: -880px -220px; width: 219px; height: 219px; } .quest_snake { background-image: url(spritesmith-main-5.png); - background-position: -874px -892px; + background-position: -445px -892px; width: 216px; height: 177px; } .quest_spider { background-image: url(spritesmith-main-5.png); - background-position: -685px -1070px; + background-position: -1320px 0px; width: 250px; height: 150px; } .quest_stressbeast { background-image: url(spritesmith-main-5.png); - background-position: -220px 0px; + background-position: -220px -672px; width: 219px; height: 219px; } .quest_stressbeast_bailey { background-image: url(spritesmith-main-5.png); - background-position: 0px -672px; + background-position: -440px -672px; width: 219px; height: 219px; } .quest_stressbeast_guide { background-image: url(spritesmith-main-5.png); - background-position: -880px -440px; + background-position: -660px -672px; width: 219px; height: 219px; } .quest_stressbeast_stables { background-image: url(spritesmith-main-5.png); - background-position: -880px -220px; + background-position: -880px -672px; width: 219px; height: 219px; } .quest_trex { background-image: url(spritesmith-main-5.png); - background-position: -1322px -175px; + background-position: -1320px -326px; width: 204px; height: 177px; } .quest_trex_undead { background-image: url(spritesmith-main-5.png); - background-position: -1091px -892px; + background-position: -217px -1106px; width: 216px; height: 177px; } .quest_vice1 { background-image: url(spritesmith-main-5.png); - background-position: -217px -1070px; + background-position: -434px -1106px; width: 216px; height: 177px; } .quest_vice2 { background-image: url(spritesmith-main-5.png); - background-position: -510px -1402px; - width: 221px; - height: 39px; + background-position: -1100px 0px; + width: 219px; + height: 219px; } .quest_vice2_lightCrystal { background-image: url(spritesmith-main-5.png); - background-position: -1676px -1047px; + background-position: -298px -1704px; width: 40px; height: 40px; } .quest_vice3 { background-image: url(spritesmith-main-5.png); - background-position: -223px -892px; + background-position: -1096px -892px; width: 216px; height: 177px; } .quest_whale { background-image: url(spritesmith-main-5.png); - background-position: -220px -232px; + background-position: -660px 0px; width: 219px; height: 219px; } .shop_copper { background-image: url(spritesmith-main-5.png); - background-position: -1685px -478px; + background-position: -1760px -376px; width: 32px; height: 22px; } .shop_eyes { background-image: url(spritesmith-main-5.png); - background-position: -1676px -1411px; + background-position: -462px -1704px; width: 40px; height: 40px; } .shop_gold { background-image: url(spritesmith-main-5.png); - background-position: -1685px -427px; + background-position: -1760px -399px; width: 32px; height: 22px; } .shop_opaquePotion { background-image: url(spritesmith-main-5.png); - background-position: -1676px -1307px; + background-position: -544px -1704px; width: 40px; height: 40px; } .shop_potion { background-image: url(spritesmith-main-5.png); - background-position: -1676px -1099px; + background-position: -585px -1704px; width: 40px; height: 40px; } .shop_reroll { background-image: url(spritesmith-main-5.png); - background-position: -1676px -1203px; + background-position: -626px -1704px; width: 40px; height: 40px; } .shop_seafoam { background-image: url(spritesmith-main-5.png); - background-position: -1685px -164px; + background-position: -1760px -262px; width: 32px; height: 32px; } .shop_shinySeed { background-image: url(spritesmith-main-5.png); - background-position: -1685px -286px; + background-position: -1760px -229px; width: 32px; height: 32px; } .shop_silver { background-image: url(spritesmith-main-5.png); - background-position: -1685px -506px; + background-position: -1760px -353px; width: 32px; height: 22px; } .shop_snowball { background-image: url(spritesmith-main-5.png); - background-position: -1685px -197px; + background-position: -1760px -196px; width: 32px; height: 32px; } .shop_spookDust { background-image: url(spritesmith-main-5.png); - background-position: -1685px -341px; + background-position: -1760px -163px; width: 32px; height: 32px; } .Pet_Egg_BearCub { background-image: url(spritesmith-main-5.png); - background-position: -1718px -1040px; + background-position: -1546px -1561px; width: 48px; height: 51px; } .Pet_Egg_Bunny { background-image: url(spritesmith-main-5.png); - background-position: -1718px -1092px; + background-position: -1595px -1561px; width: 48px; height: 51px; } .Pet_Egg_Cactus { background-image: url(spritesmith-main-5.png); - background-position: -1718px -1144px; + background-position: -1662px 0px; width: 48px; height: 51px; } .Pet_Egg_Cheetah { background-image: url(spritesmith-main-5.png); - background-position: -1718px -1196px; + background-position: -1662px -52px; width: 48px; height: 51px; } .Pet_Egg_Cuttlefish { background-image: url(spritesmith-main-5.png); - background-position: -1718px -1248px; + background-position: -1662px -104px; width: 48px; height: 51px; } .Pet_Egg_Deer { background-image: url(spritesmith-main-5.png); - background-position: -1718px -1300px; + background-position: -1662px -156px; width: 48px; height: 51px; } .Pet_Egg_Dragon { background-image: url(spritesmith-main-5.png); - background-position: -1718px -1352px; + background-position: -1662px -208px; width: 48px; height: 51px; } .Pet_Egg_Egg { background-image: url(spritesmith-main-5.png); - background-position: -1718px -1404px; + background-position: -1662px -260px; width: 48px; height: 51px; } .Pet_Egg_FlyingPig { background-image: url(spritesmith-main-5.png); - background-position: -1718px -1456px; + background-position: -1662px -312px; width: 48px; height: 51px; } .Pet_Egg_Fox { background-image: url(spritesmith-main-5.png); - background-position: -1718px -1508px; + background-position: -1662px -364px; width: 48px; height: 51px; } .Pet_Egg_Frog { background-image: url(spritesmith-main-5.png); - background-position: -1718px -1560px; + background-position: -1662px -780px; width: 48px; height: 51px; } .Pet_Egg_Gryphon { background-image: url(spritesmith-main-5.png); - background-position: -1718px -1612px; + background-position: -1617px -1652px; width: 48px; height: 51px; } .Pet_Egg_Hedgehog { background-image: url(spritesmith-main-5.png); - background-position: -1718px -1664px; + background-position: -1711px 0px; width: 48px; height: 51px; } .Pet_Egg_Horse { background-image: url(spritesmith-main-5.png); - background-position: -1767px 0px; + background-position: -1711px -52px; width: 48px; height: 51px; } .Pet_Egg_LionCub { background-image: url(spritesmith-main-5.png); - background-position: -1767px -52px; + background-position: -1711px -104px; width: 48px; height: 51px; } .Pet_Egg_Octopus { background-image: url(spritesmith-main-5.png); - background-position: -1767px -104px; + background-position: -1711px -156px; width: 48px; height: 51px; } .Pet_Egg_Owl { background-image: url(spritesmith-main-5.png); - background-position: -1767px -156px; + background-position: -1711px -208px; width: 48px; height: 51px; } .Pet_Egg_PandaCub { background-image: url(spritesmith-main-5.png); - background-position: -1767px -208px; + background-position: -1711px -260px; width: 48px; height: 51px; } .Pet_Egg_Parrot { background-image: url(spritesmith-main-5.png); - background-position: -1767px -260px; + background-position: -1711px -312px; width: 48px; height: 51px; } .Pet_Egg_Penguin { background-image: url(spritesmith-main-5.png); - background-position: -1767px -312px; + background-position: -1711px -364px; width: 48px; height: 51px; } .Pet_Egg_PolarBear { background-image: url(spritesmith-main-5.png); - background-position: -1767px -364px; + background-position: -1711px -468px; width: 48px; height: 51px; } .Pet_Egg_Rat { background-image: url(spritesmith-main-5.png); - background-position: -1767px -416px; + background-position: -1711px -520px; width: 48px; height: 51px; } .Pet_Egg_Rock { background-image: url(spritesmith-main-5.png); - background-position: -1767px -468px; + background-position: -1711px -572px; width: 48px; height: 51px; } .Pet_Egg_Rooster { background-image: url(spritesmith-main-5.png); - background-position: -1767px -520px; + background-position: -1711px -624px; width: 48px; height: 51px; } .Pet_Egg_Seahorse { background-image: url(spritesmith-main-5.png); - background-position: -1767px -572px; + background-position: -1711px -728px; width: 48px; height: 51px; } .Pet_Egg_Sheep { background-image: url(spritesmith-main-5.png); - background-position: -1767px -624px; + background-position: -1711px -780px; width: 48px; height: 51px; } .Pet_Egg_Slime { background-image: url(spritesmith-main-5.png); - background-position: -1767px -676px; + background-position: -1711px -832px; width: 48px; height: 51px; } .Pet_Egg_Snake { background-image: url(spritesmith-main-5.png); - background-position: -1767px -728px; + background-position: -1711px -884px; width: 48px; height: 51px; } .Pet_Egg_Spider { background-image: url(spritesmith-main-5.png); - background-position: -1767px -780px; + background-position: -1711px -936px; width: 48px; height: 51px; } .Pet_Egg_TRex { background-image: url(spritesmith-main-5.png); - background-position: -1767px -832px; + background-position: -1711px -1040px; width: 48px; height: 51px; } .Pet_Egg_TigerCub { background-image: url(spritesmith-main-5.png); - background-position: -1767px -884px; + background-position: -1711px -1092px; width: 48px; height: 51px; } .Pet_Egg_Whale { background-image: url(spritesmith-main-5.png); - background-position: -1767px -936px; + background-position: -1711px -1144px; width: 48px; height: 51px; } .Pet_Egg_Wolf { background-image: url(spritesmith-main-5.png); - background-position: -1767px -988px; + background-position: -147px -1652px; width: 48px; height: 51px; } .Pet_Food_Cake_Base { background-image: url(spritesmith-main-5.png); - background-position: -1767px -1619px; + background-position: -1711px -1248px; width: 43px; height: 43px; } .Pet_Food_Cake_CottonCandyBlue { background-image: url(spritesmith-main-5.png); - background-position: -1767px -1663px; + background-position: -1711px -1292px; width: 42px; height: 44px; } -.Pet_Food_Cake_CottonCandyPink { - background-image: url(spritesmith-main-5.png); - background-position: -1767px -1438px; - width: 43px; - height: 45px; -} -.Pet_Food_Cake_Desert { - background-image: url(spritesmith-main-5.png); - background-position: -1767px -1529px; - width: 43px; - height: 44px; -} -.Pet_Food_Cake_Golden { - background-image: url(spritesmith-main-5.png); - background-position: -1627px -1567px; - width: 43px; - height: 42px; -} -.Pet_Food_Cake_Red { - background-image: url(spritesmith-main-5.png); - background-position: -1767px -1574px; - width: 43px; - height: 44px; -} -.Pet_Food_Cake_Shade { - background-image: url(spritesmith-main-5.png); - background-position: -1767px -1484px; - width: 43px; - height: 44px; -} -.Pet_Food_Cake_Skeleton { - background-image: url(spritesmith-main-5.png); - background-position: -1767px -1345px; - width: 42px; - height: 47px; -} -.Pet_Food_Cake_White { - background-image: url(spritesmith-main-5.png); - background-position: -1767px -1393px; - width: 44px; - height: 44px; -} -.Pet_Food_Cake_Zombie { - background-image: url(spritesmith-main-5.png); - background-position: -1767px -1300px; - width: 45px; - height: 44px; -} -.Pet_Food_Candy_Base { - background-image: url(spritesmith-main-5.png); - background-position: -1767px -1196px; - width: 48px; - height: 51px; -} -.Pet_Food_Candy_CottonCandyBlue { - background-image: url(spritesmith-main-5.png); - background-position: -1767px -1144px; - width: 48px; - height: 51px; -} -.Pet_Food_Candy_CottonCandyPink { - background-image: url(spritesmith-main-5.png); - background-position: -1767px -1092px; - width: 48px; - height: 51px; -} -.Pet_Food_Candy_Desert { - background-image: url(spritesmith-main-5.png); - background-position: -1767px -1040px; - width: 48px; - height: 51px; -} -.Pet_Food_Candy_Golden { - background-image: url(spritesmith-main-5.png); - background-position: -1718px -988px; - width: 48px; - height: 51px; -} -.Pet_Food_Candy_Red { - background-image: url(spritesmith-main-5.png); - background-position: -1718px -936px; - width: 48px; - height: 51px; -} -.Pet_Food_Candy_Shade { - background-image: url(spritesmith-main-5.png); - background-position: -1718px -884px; - width: 48px; - height: 51px; -} -.Pet_Food_Candy_Skeleton { - background-image: url(spritesmith-main-5.png); - background-position: -1718px -832px; - width: 48px; - height: 51px; -} -.Pet_Food_Candy_White { - background-image: url(spritesmith-main-5.png); - background-position: -1718px -780px; - width: 48px; - height: 51px; -} -.Pet_Food_Candy_Zombie { - background-image: url(spritesmith-main-5.png); - background-position: -1718px -728px; - width: 48px; - height: 51px; -} -.Pet_Food_Chocolate { - background-image: url(spritesmith-main-5.png); - background-position: -1718px -676px; - width: 48px; - height: 51px; -} -.Pet_Food_CottonCandyBlue { - background-image: url(spritesmith-main-5.png); - background-position: -1718px -624px; - width: 48px; - height: 51px; -} -.Pet_Food_CottonCandyPink { - background-image: url(spritesmith-main-5.png); - background-position: -1718px -572px; - width: 48px; - height: 51px; -} -.Pet_Food_Fish { - background-image: url(spritesmith-main-5.png); - background-position: -1718px -520px; - width: 48px; - height: 51px; -} -.Pet_Food_Honey { - background-image: url(spritesmith-main-5.png); - background-position: -1718px -468px; - width: 48px; - height: 51px; -} -.Pet_Food_Meat { - background-image: url(spritesmith-main-5.png); - background-position: -1718px -312px; - width: 48px; - height: 51px; -} -.Pet_Food_Milk { - background-image: url(spritesmith-main-5.png); - background-position: -980px -1666px; - width: 48px; - height: 51px; -} -.Pet_Food_Potatoe { - background-image: url(spritesmith-main-5.png); - background-position: -931px -1666px; - width: 48px; - height: 51px; -} -.Pet_Food_RottenMeat { - background-image: url(spritesmith-main-5.png); - background-position: -343px -1666px; - width: 48px; - height: 51px; -} -.Pet_Food_Saddle { - background-image: url(spritesmith-main-5.png); - background-position: -294px -1666px; - width: 48px; - height: 51px; -} -.Pet_Food_Strawberry { - background-image: url(spritesmith-main-5.png); - background-position: -196px -1666px; - width: 48px; - height: 51px; -} -.Mount_Body_BearCub-Base { - background-image: url(spritesmith-main-5.png); - background-position: -1037px -1251px; - width: 105px; - height: 105px; -} -.Mount_Body_BearCub-CottonCandyBlue { - background-image: url(spritesmith-main-5.png); - background-position: -825px -1251px; - width: 105px; - height: 105px; -} -.Mount_Body_BearCub-CottonCandyPink { - background-image: url(spritesmith-main-5.png); - background-position: -719px -1251px; - width: 105px; - height: 105px; -} -.Mount_Body_BearCub-Desert { - background-image: url(spritesmith-main-5.png); - background-position: -931px -1251px; - width: 105px; - height: 105px; -} -.Mount_Body_BearCub-Golden { - background-image: url(spritesmith-main-5.png); - background-position: -613px -1251px; - width: 105px; - height: 105px; -} diff --git a/common/dist/sprites/spritesmith-main-5.png b/common/dist/sprites/spritesmith-main-5.png index e38f456356..721ff60622 100644 Binary files a/common/dist/sprites/spritesmith-main-5.png and b/common/dist/sprites/spritesmith-main-5.png differ diff --git a/common/dist/sprites/spritesmith-main-6.css b/common/dist/sprites/spritesmith-main-6.css index 513140bb63..4674923e8c 100644 --- a/common/dist/sprites/spritesmith-main-6.css +++ b/common/dist/sprites/spritesmith-main-6.css @@ -1,231 +1,447 @@ -.Mount_Body_BearCub-Polar { +.Pet_Food_Cake_CottonCandyPink { background-image: url(spritesmith-main-6.png); - background-position: -424px -575px; - width: 105px; - height: 105px; + background-position: -680px -1635px; + width: 43px; + height: 45px; } -.Mount_Body_BearCub-Red { +.Pet_Food_Cake_Desert { background-image: url(spritesmith-main-6.png); - background-position: -318px -1105px; - width: 105px; - height: 105px; + background-position: -1484px -1378px; + width: 43px; + height: 44px; } -.Mount_Body_BearCub-Shade { +.Pet_Food_Cake_Golden { background-image: url(spritesmith-main-6.png); - background-position: -530px -575px; - width: 105px; - height: 105px; + background-position: -1422px -1272px; + width: 43px; + height: 42px; } -.Mount_Body_BearCub-Skeleton { +.Pet_Food_Cake_Red { background-image: url(spritesmith-main-6.png); - background-position: -636px -575px; - width: 105px; - height: 105px; + background-position: -1378px -1272px; + width: 43px; + height: 44px; } -.Mount_Body_BearCub-Spooky { +.Pet_Food_Cake_Shade { background-image: url(spritesmith-main-6.png); - background-position: -742px 0px; - width: 105px; - height: 105px; + background-position: -1528px -1378px; + width: 43px; + height: 44px; } -.Mount_Body_BearCub-White { +.Pet_Food_Cake_Skeleton { background-image: url(spritesmith-main-6.png); - background-position: -742px -106px; - width: 105px; - height: 105px; + background-position: -637px -1635px; + width: 42px; + height: 47px; } -.Mount_Body_BearCub-Zombie { +.Pet_Food_Cake_White { background-image: url(spritesmith-main-6.png); - background-position: -742px -212px; - width: 105px; - height: 105px; + background-position: -1636px -1484px; + width: 44px; + height: 44px; } -.Mount_Body_Bunny-Base { +.Pet_Food_Cake_Zombie { background-image: url(spritesmith-main-6.png); - background-position: -742px -318px; - width: 105px; - height: 105px; + background-position: -1590px -1484px; + width: 45px; + height: 44px; } -.Mount_Body_Bunny-CottonCandyBlue { +.Pet_Food_Candy_Base { background-image: url(spritesmith-main-6.png); - background-position: -742px -424px; - width: 105px; - height: 105px; + background-position: -294px -1635px; + width: 48px; + height: 51px; } -.Mount_Body_Bunny-CottonCandyPink { +.Pet_Food_Candy_CottonCandyBlue { background-image: url(spritesmith-main-6.png); - background-position: -742px -530px; - width: 105px; - height: 105px; + background-position: -588px -1635px; + width: 48px; + height: 51px; } -.Mount_Body_Bunny-Desert { +.Pet_Food_Candy_CottonCandyPink { background-image: url(spritesmith-main-6.png); - background-position: 0px -681px; - width: 105px; - height: 105px; + background-position: -539px -1635px; + width: 48px; + height: 51px; } -.Mount_Body_Bunny-Golden { +.Pet_Food_Candy_Desert { background-image: url(spritesmith-main-6.png); - background-position: -318px -999px; - width: 105px; - height: 105px; + background-position: -490px -1635px; + width: 48px; + height: 51px; } -.Mount_Body_Bunny-Red { +.Pet_Food_Candy_Golden { background-image: url(spritesmith-main-6.png); - background-position: -424px -999px; - width: 105px; - height: 105px; + background-position: -441px -1635px; + width: 48px; + height: 51px; } -.Mount_Body_Bunny-Shade { +.Pet_Food_Candy_Red { background-image: url(spritesmith-main-6.png); - background-position: -530px -999px; - width: 105px; - height: 105px; + background-position: -392px -1635px; + width: 48px; + height: 51px; } -.Mount_Body_Bunny-Skeleton { +.Pet_Food_Candy_Shade { background-image: url(spritesmith-main-6.png); - background-position: -636px -999px; - width: 105px; - height: 105px; + background-position: -343px -1635px; + width: 48px; + height: 51px; } -.Mount_Body_Bunny-White { +.Pet_Food_Candy_Skeleton { background-image: url(spritesmith-main-6.png); - background-position: -742px -999px; - width: 105px; - height: 105px; + background-position: -1484px -1529px; + width: 48px; + height: 51px; } -.Mount_Body_Bunny-Zombie { +.Pet_Food_Candy_White { background-image: url(spritesmith-main-6.png); - background-position: -848px -999px; - width: 105px; - height: 105px; + background-position: -245px -1635px; + width: 48px; + height: 51px; } -.Mount_Body_Cactus-Base { +.Pet_Food_Candy_Zombie { background-image: url(spritesmith-main-6.png); - background-position: -954px -999px; - width: 105px; - height: 105px; + background-position: -196px -1635px; + width: 48px; + height: 51px; } -.Mount_Body_Cactus-CottonCandyBlue { +.Pet_Food_Chocolate { background-image: url(spritesmith-main-6.png); - background-position: -1060px -999px; - width: 105px; - height: 105px; + background-position: -147px -1635px; + width: 48px; + height: 51px; } -.Mount_Body_Cactus-CottonCandyPink { +.Pet_Food_CottonCandyBlue { background-image: url(spritesmith-main-6.png); - background-position: -1166px 0px; - width: 105px; - height: 105px; + background-position: -98px -1635px; + width: 48px; + height: 51px; } -.Mount_Body_Cactus-Desert { +.Pet_Food_CottonCandyPink { background-image: url(spritesmith-main-6.png); - background-position: -1166px -106px; - width: 105px; - height: 105px; + background-position: -49px -1635px; + width: 48px; + height: 51px; } -.Mount_Body_Cactus-Golden { +.Pet_Food_Fish { background-image: url(spritesmith-main-6.png); - background-position: -954px -1211px; - width: 105px; - height: 105px; + background-position: 0px -1635px; + width: 48px; + height: 51px; } -.Mount_Body_Cactus-Red { +.Pet_Food_Honey { background-image: url(spritesmith-main-6.png); - background-position: -1378px 0px; - width: 105px; - height: 105px; + background-position: -1631px -1581px; + width: 48px; + height: 51px; } -.Mount_Body_Cactus-Shade { +.Pet_Food_Meat { background-image: url(spritesmith-main-6.png); - background-position: -1378px -106px; - width: 105px; - height: 105px; + background-position: -1582px -1581px; + width: 48px; + height: 51px; } -.Mount_Body_Cactus-Skeleton { +.Pet_Food_Milk { background-image: url(spritesmith-main-6.png); - background-position: -530px -221px; - width: 105px; - height: 105px; + background-position: -1533px -1581px; + width: 48px; + height: 51px; } -.Mount_Body_Cactus-Spooky { +.Pet_Food_Potatoe { background-image: url(spritesmith-main-6.png); - background-position: -530px -327px; - width: 105px; - height: 105px; + background-position: -1484px -1581px; + width: 48px; + height: 51px; } -.Mount_Body_Cactus-White { +.Pet_Food_RottenMeat { background-image: url(spritesmith-main-6.png); - background-position: -221px -469px; - width: 105px; - height: 105px; + background-position: -1631px -1529px; + width: 48px; + height: 51px; } -.Mount_Body_Cactus-Zombie { +.Pet_Food_Saddle { background-image: url(spritesmith-main-6.png); - background-position: -327px -469px; - width: 105px; - height: 105px; + background-position: -1582px -1529px; + width: 48px; + height: 51px; } -.Mount_Body_Cheetah-Base { +.Pet_Food_Strawberry { background-image: url(spritesmith-main-6.png); - background-position: -433px -469px; - width: 105px; - height: 105px; + background-position: -1533px -1529px; + width: 48px; + height: 51px; } -.Mount_Body_Cheetah-CottonCandyBlue { +.Mount_Body_BearCub-Base { background-image: url(spritesmith-main-6.png); background-position: -636px 0px; width: 105px; height: 105px; } -.Mount_Body_Cheetah-CottonCandyPink { +.Mount_Body_BearCub-CottonCandyBlue { background-image: url(spritesmith-main-6.png); background-position: -636px -106px; width: 105px; height: 105px; } -.Mount_Body_Cheetah-Desert { +.Mount_Body_BearCub-CottonCandyPink { background-image: url(spritesmith-main-6.png); background-position: -636px -212px; width: 105px; height: 105px; } -.Mount_Body_Cheetah-Golden { +.Mount_Body_BearCub-Desert { background-image: url(spritesmith-main-6.png); background-position: -636px -318px; width: 105px; height: 105px; } -.Mount_Body_Cheetah-Red { +.Mount_Body_BearCub-Golden { background-image: url(spritesmith-main-6.png); background-position: -636px -424px; width: 105px; height: 105px; } -.Mount_Body_Cheetah-Shade { +.Mount_Body_BearCub-Peppermint { background-image: url(spritesmith-main-6.png); background-position: 0px -575px; width: 105px; height: 105px; } -.Mount_Body_Cheetah-Skeleton { +.Mount_Body_BearCub-Polar { background-image: url(spritesmith-main-6.png); background-position: -106px -575px; width: 105px; height: 105px; } -.Mount_Body_Cheetah-White { +.Mount_Body_BearCub-Red { background-image: url(spritesmith-main-6.png); background-position: -212px -575px; width: 105px; height: 105px; } -.Mount_Body_Cheetah-Zombie { +.Mount_Body_BearCub-Shade { background-image: url(spritesmith-main-6.png); background-position: -318px -575px; width: 105px; height: 105px; } +.Mount_Body_BearCub-Skeleton { + background-image: url(spritesmith-main-6.png); + background-position: -424px -575px; + width: 105px; + height: 105px; +} +.Mount_Body_BearCub-Spooky { + background-image: url(spritesmith-main-6.png); + background-position: -530px -575px; + width: 105px; + height: 105px; +} +.Mount_Body_BearCub-White { + background-image: url(spritesmith-main-6.png); + background-position: -636px -575px; + width: 105px; + height: 105px; +} +.Mount_Body_BearCub-Zombie { + background-image: url(spritesmith-main-6.png); + background-position: -742px 0px; + width: 105px; + height: 105px; +} +.Mount_Body_Bunny-Base { + background-image: url(spritesmith-main-6.png); + background-position: -742px -106px; + width: 105px; + height: 105px; +} +.Mount_Body_Bunny-CottonCandyBlue { + background-image: url(spritesmith-main-6.png); + background-position: -742px -212px; + width: 105px; + height: 105px; +} +.Mount_Body_Bunny-CottonCandyPink { + background-image: url(spritesmith-main-6.png); + background-position: -742px -318px; + width: 105px; + height: 105px; +} +.Mount_Body_Bunny-Desert { + background-image: url(spritesmith-main-6.png); + background-position: -742px -424px; + width: 105px; + height: 105px; +} +.Mount_Body_Bunny-Golden { + background-image: url(spritesmith-main-6.png); + background-position: -742px -530px; + width: 105px; + height: 105px; +} +.Mount_Body_Bunny-Red { + background-image: url(spritesmith-main-6.png); + background-position: 0px -681px; + width: 105px; + height: 105px; +} +.Mount_Body_Bunny-Shade { + background-image: url(spritesmith-main-6.png); + background-position: -106px -681px; + width: 105px; + height: 105px; +} +.Mount_Body_Bunny-Skeleton { + background-image: url(spritesmith-main-6.png); + background-position: -212px -681px; + width: 105px; + height: 105px; +} +.Mount_Body_Bunny-White { + background-image: url(spritesmith-main-6.png); + background-position: -318px -681px; + width: 105px; + height: 105px; +} +.Mount_Body_Bunny-Zombie { + background-image: url(spritesmith-main-6.png); + background-position: -424px -681px; + width: 105px; + height: 105px; +} +.Mount_Body_Cactus-Base { + background-image: url(spritesmith-main-6.png); + background-position: -530px -681px; + width: 105px; + height: 105px; +} +.Mount_Body_Cactus-CottonCandyBlue { + background-image: url(spritesmith-main-6.png); + background-position: -636px -681px; + width: 105px; + height: 105px; +} +.Mount_Body_Cactus-CottonCandyPink { + background-image: url(spritesmith-main-6.png); + background-position: -742px -681px; + width: 105px; + height: 105px; +} +.Mount_Body_Cactus-Desert { + background-image: url(spritesmith-main-6.png); + background-position: -848px 0px; + width: 105px; + height: 105px; +} +.Mount_Body_Cactus-Golden { + background-image: url(spritesmith-main-6.png); + background-position: -848px -106px; + width: 105px; + height: 105px; +} +.Mount_Body_Cactus-Peppermint { + background-image: url(spritesmith-main-6.png); + background-position: -848px -212px; + width: 105px; + height: 105px; +} +.Mount_Body_Cactus-Red { + background-image: url(spritesmith-main-6.png); + background-position: -848px -318px; + width: 105px; + height: 105px; +} +.Mount_Body_Cactus-Shade { + background-image: url(spritesmith-main-6.png); + background-position: -848px -424px; + width: 105px; + height: 105px; +} +.Mount_Body_Cactus-Skeleton { + background-image: url(spritesmith-main-6.png); + background-position: -848px -530px; + width: 105px; + height: 105px; +} +.Mount_Body_Cactus-Spooky { + background-image: url(spritesmith-main-6.png); + background-position: -848px -636px; + width: 105px; + height: 105px; +} +.Mount_Body_Cactus-White { + background-image: url(spritesmith-main-6.png); + background-position: 0px -787px; + width: 105px; + height: 105px; +} +.Mount_Body_Cactus-Zombie { + background-image: url(spritesmith-main-6.png); + background-position: -106px -787px; + width: 105px; + height: 105px; +} +.Mount_Body_Cheetah-Base { + background-image: url(spritesmith-main-6.png); + background-position: -212px -787px; + width: 105px; + height: 105px; +} +.Mount_Body_Cheetah-CottonCandyBlue { + background-image: url(spritesmith-main-6.png); + background-position: -318px -787px; + width: 105px; + height: 105px; +} +.Mount_Body_Cheetah-CottonCandyPink { + background-image: url(spritesmith-main-6.png); + background-position: -424px -787px; + width: 105px; + height: 105px; +} +.Mount_Body_Cheetah-Desert { + background-image: url(spritesmith-main-6.png); + background-position: -530px -787px; + width: 105px; + height: 105px; +} +.Mount_Body_Cheetah-Golden { + background-image: url(spritesmith-main-6.png); + background-position: -636px -787px; + width: 105px; + height: 105px; +} +.Mount_Body_Cheetah-Red { + background-image: url(spritesmith-main-6.png); + background-position: -742px -787px; + width: 105px; + height: 105px; +} +.Mount_Body_Cheetah-Shade { + background-image: url(spritesmith-main-6.png); + background-position: -848px -787px; + width: 105px; + height: 105px; +} +.Mount_Body_Cheetah-Skeleton { + background-image: url(spritesmith-main-6.png); + background-position: -954px 0px; + width: 105px; + height: 105px; +} +.Mount_Body_Cheetah-White { + background-image: url(spritesmith-main-6.png); + background-position: -954px -106px; + width: 105px; + height: 105px; +} +.Mount_Body_Cheetah-Zombie { + background-image: url(spritesmith-main-6.png); + background-position: -954px -212px; + width: 105px; + height: 105px; +} .Mount_Body_Cuttlefish-Base { background-image: url(spritesmith-main-6.png); background-position: -530px 0px; @@ -288,322 +504,340 @@ } .Mount_Body_Deer-Base { background-image: url(spritesmith-main-6.png); - background-position: -106px -681px; + background-position: -530px -893px; width: 105px; height: 105px; } .Mount_Body_Deer-CottonCandyBlue { background-image: url(spritesmith-main-6.png); - background-position: -212px -681px; + background-position: -636px -893px; width: 105px; height: 105px; } .Mount_Body_Deer-CottonCandyPink { background-image: url(spritesmith-main-6.png); - background-position: -318px -681px; + background-position: -742px -893px; width: 105px; height: 105px; } .Mount_Body_Deer-Desert { background-image: url(spritesmith-main-6.png); - background-position: -424px -681px; + background-position: -848px -893px; width: 105px; height: 105px; } .Mount_Body_Deer-Golden { background-image: url(spritesmith-main-6.png); - background-position: -530px -681px; + background-position: -954px -893px; width: 105px; height: 105px; } .Mount_Body_Deer-Red { background-image: url(spritesmith-main-6.png); - background-position: -636px -681px; + background-position: -1060px 0px; width: 105px; height: 105px; } .Mount_Body_Deer-Shade { background-image: url(spritesmith-main-6.png); - background-position: -742px -681px; + background-position: -1060px -106px; width: 105px; height: 105px; } .Mount_Body_Deer-Skeleton { background-image: url(spritesmith-main-6.png); - background-position: -848px 0px; + background-position: -1060px -212px; width: 105px; height: 105px; } .Mount_Body_Deer-White { background-image: url(spritesmith-main-6.png); - background-position: -848px -106px; + background-position: -1060px -318px; width: 105px; height: 105px; } .Mount_Body_Deer-Zombie { background-image: url(spritesmith-main-6.png); - background-position: -848px -212px; + background-position: -1060px -424px; width: 105px; height: 105px; } .Mount_Body_Dragon-Base { background-image: url(spritesmith-main-6.png); - background-position: -848px -318px; + background-position: -1060px -530px; width: 105px; height: 105px; } .Mount_Body_Dragon-CottonCandyBlue { background-image: url(spritesmith-main-6.png); - background-position: -848px -424px; + background-position: -1060px -636px; width: 105px; height: 105px; } .Mount_Body_Dragon-CottonCandyPink { background-image: url(spritesmith-main-6.png); - background-position: -848px -530px; + background-position: -1060px -742px; width: 105px; height: 105px; } .Mount_Body_Dragon-Desert { background-image: url(spritesmith-main-6.png); - background-position: -848px -636px; + background-position: -1060px -848px; width: 105px; height: 105px; } .Mount_Body_Dragon-Golden { - background-image: url(spritesmith-main-6.png); - background-position: 0px -787px; - width: 105px; - height: 105px; -} -.Mount_Body_Dragon-Red { - background-image: url(spritesmith-main-6.png); - background-position: -106px -787px; - width: 105px; - height: 105px; -} -.Mount_Body_Dragon-Shade { - background-image: url(spritesmith-main-6.png); - background-position: -212px -787px; - width: 105px; - height: 105px; -} -.Mount_Body_Dragon-Skeleton { - background-image: url(spritesmith-main-6.png); - background-position: -318px -787px; - width: 105px; - height: 105px; -} -.Mount_Body_Dragon-Spooky { - background-image: url(spritesmith-main-6.png); - background-position: -424px -787px; - width: 105px; - height: 105px; -} -.Mount_Body_Dragon-White { - background-image: url(spritesmith-main-6.png); - background-position: -530px -787px; - width: 105px; - height: 105px; -} -.Mount_Body_Dragon-Zombie { - background-image: url(spritesmith-main-6.png); - background-position: -636px -787px; - width: 105px; - height: 105px; -} -.Mount_Body_Egg-Base { - background-image: url(spritesmith-main-6.png); - background-position: -742px -787px; - width: 105px; - height: 105px; -} -.Mount_Body_Egg-CottonCandyBlue { - background-image: url(spritesmith-main-6.png); - background-position: -848px -787px; - width: 105px; - height: 105px; -} -.Mount_Body_Egg-CottonCandyPink { - background-image: url(spritesmith-main-6.png); - background-position: -954px 0px; - width: 105px; - height: 105px; -} -.Mount_Body_Egg-Desert { - background-image: url(spritesmith-main-6.png); - background-position: -954px -106px; - width: 105px; - height: 105px; -} -.Mount_Body_Egg-Golden { - background-image: url(spritesmith-main-6.png); - background-position: -954px -212px; - width: 105px; - height: 105px; -} -.Mount_Body_Egg-Red { - background-image: url(spritesmith-main-6.png); - background-position: -954px -318px; - width: 105px; - height: 105px; -} -.Mount_Body_Egg-Shade { - background-image: url(spritesmith-main-6.png); - background-position: -954px -424px; - width: 105px; - height: 105px; -} -.Mount_Body_Egg-Skeleton { - background-image: url(spritesmith-main-6.png); - background-position: -954px -530px; - width: 105px; - height: 105px; -} -.Mount_Body_Egg-White { - background-image: url(spritesmith-main-6.png); - background-position: -954px -636px; - width: 105px; - height: 105px; -} -.Mount_Body_Egg-Zombie { - background-image: url(spritesmith-main-6.png); - background-position: -954px -742px; - width: 105px; - height: 105px; -} -.Mount_Body_FlyingPig-Base { - background-image: url(spritesmith-main-6.png); - background-position: 0px -893px; - width: 105px; - height: 105px; -} -.Mount_Body_FlyingPig-CottonCandyBlue { - background-image: url(spritesmith-main-6.png); - background-position: -106px -893px; - width: 105px; - height: 105px; -} -.Mount_Body_FlyingPig-CottonCandyPink { - background-image: url(spritesmith-main-6.png); - background-position: -212px -893px; - width: 105px; - height: 105px; -} -.Mount_Body_FlyingPig-Desert { - background-image: url(spritesmith-main-6.png); - background-position: -318px -893px; - width: 105px; - height: 105px; -} -.Mount_Body_FlyingPig-Golden { - background-image: url(spritesmith-main-6.png); - background-position: -424px -893px; - width: 105px; - height: 105px; -} -.Mount_Body_FlyingPig-Red { - background-image: url(spritesmith-main-6.png); - background-position: -530px -893px; - width: 105px; - height: 105px; -} -.Mount_Body_FlyingPig-Shade { - background-image: url(spritesmith-main-6.png); - background-position: -636px -893px; - width: 105px; - height: 105px; -} -.Mount_Body_FlyingPig-Skeleton { - background-image: url(spritesmith-main-6.png); - background-position: -742px -893px; - width: 105px; - height: 105px; -} -.Mount_Body_FlyingPig-Spooky { - background-image: url(spritesmith-main-6.png); - background-position: -848px -893px; - width: 105px; - height: 105px; -} -.Mount_Body_FlyingPig-White { - background-image: url(spritesmith-main-6.png); - background-position: -954px -893px; - width: 105px; - height: 105px; -} -.Mount_Body_FlyingPig-Zombie { - background-image: url(spritesmith-main-6.png); - background-position: -1060px 0px; - width: 105px; - height: 105px; -} -.Mount_Body_Fox-Base { - background-image: url(spritesmith-main-6.png); - background-position: -1060px -106px; - width: 105px; - height: 105px; -} -.Mount_Body_Fox-CottonCandyBlue { - background-image: url(spritesmith-main-6.png); - background-position: -1060px -212px; - width: 105px; - height: 105px; -} -.Mount_Body_Fox-CottonCandyPink { - background-image: url(spritesmith-main-6.png); - background-position: -1060px -318px; - width: 105px; - height: 105px; -} -.Mount_Body_Fox-Desert { - background-image: url(spritesmith-main-6.png); - background-position: -1060px -424px; - width: 105px; - height: 105px; -} -.Mount_Body_Fox-Golden { - background-image: url(spritesmith-main-6.png); - background-position: -1060px -530px; - width: 105px; - height: 105px; -} -.Mount_Body_Fox-Red { - background-image: url(spritesmith-main-6.png); - background-position: -1060px -636px; - width: 105px; - height: 105px; -} -.Mount_Body_Fox-Shade { - background-image: url(spritesmith-main-6.png); - background-position: -1060px -742px; - width: 105px; - height: 105px; -} -.Mount_Body_Fox-Skeleton { - background-image: url(spritesmith-main-6.png); - background-position: -1060px -848px; - width: 105px; - height: 105px; -} -.Mount_Body_Fox-Spooky { background-image: url(spritesmith-main-6.png); background-position: 0px -999px; width: 105px; height: 105px; } -.Mount_Body_Fox-White { +.Mount_Body_Dragon-Peppermint { background-image: url(spritesmith-main-6.png); background-position: -106px -999px; width: 105px; height: 105px; } -.Mount_Body_Fox-Zombie { +.Mount_Body_Dragon-Red { background-image: url(spritesmith-main-6.png); background-position: -212px -999px; width: 105px; height: 105px; } +.Mount_Body_Dragon-Shade { + background-image: url(spritesmith-main-6.png); + background-position: -318px -999px; + width: 105px; + height: 105px; +} +.Mount_Body_Dragon-Skeleton { + background-image: url(spritesmith-main-6.png); + background-position: -424px -999px; + width: 105px; + height: 105px; +} +.Mount_Body_Dragon-Spooky { + background-image: url(spritesmith-main-6.png); + background-position: -530px -999px; + width: 105px; + height: 105px; +} +.Mount_Body_Dragon-White { + background-image: url(spritesmith-main-6.png); + background-position: -636px -999px; + width: 105px; + height: 105px; +} +.Mount_Body_Dragon-Zombie { + background-image: url(spritesmith-main-6.png); + background-position: -742px -999px; + width: 105px; + height: 105px; +} +.Mount_Body_Egg-Base { + background-image: url(spritesmith-main-6.png); + background-position: -848px -999px; + width: 105px; + height: 105px; +} +.Mount_Body_Egg-CottonCandyBlue { + background-image: url(spritesmith-main-6.png); + background-position: -954px -999px; + width: 105px; + height: 105px; +} +.Mount_Body_Egg-CottonCandyPink { + background-image: url(spritesmith-main-6.png); + background-position: -1060px -999px; + width: 105px; + height: 105px; +} +.Mount_Body_Egg-Desert { + background-image: url(spritesmith-main-6.png); + background-position: -1166px 0px; + width: 105px; + height: 105px; +} +.Mount_Body_Egg-Golden { + background-image: url(spritesmith-main-6.png); + background-position: -1166px -106px; + width: 105px; + height: 105px; +} +.Mount_Body_Egg-Red { + background-image: url(spritesmith-main-6.png); + background-position: -1166px -212px; + width: 105px; + height: 105px; +} +.Mount_Body_Egg-Shade { + background-image: url(spritesmith-main-6.png); + background-position: -1166px -318px; + width: 105px; + height: 105px; +} +.Mount_Body_Egg-Skeleton { + background-image: url(spritesmith-main-6.png); + background-position: -1166px -424px; + width: 105px; + height: 105px; +} +.Mount_Body_Egg-White { + background-image: url(spritesmith-main-6.png); + background-position: -1166px -530px; + width: 105px; + height: 105px; +} +.Mount_Body_Egg-Zombie { + background-image: url(spritesmith-main-6.png); + background-position: -1166px -636px; + width: 105px; + height: 105px; +} +.Mount_Body_FlyingPig-Base { + background-image: url(spritesmith-main-6.png); + background-position: -1166px -742px; + width: 105px; + height: 105px; +} +.Mount_Body_FlyingPig-CottonCandyBlue { + background-image: url(spritesmith-main-6.png); + background-position: -1166px -848px; + width: 105px; + height: 105px; +} +.Mount_Body_FlyingPig-CottonCandyPink { + background-image: url(spritesmith-main-6.png); + background-position: -1166px -954px; + width: 105px; + height: 105px; +} +.Mount_Body_FlyingPig-Desert { + background-image: url(spritesmith-main-6.png); + background-position: 0px -1105px; + width: 105px; + height: 105px; +} +.Mount_Body_FlyingPig-Golden { + background-image: url(spritesmith-main-6.png); + background-position: -106px -1105px; + width: 105px; + height: 105px; +} +.Mount_Body_FlyingPig-Peppermint { + background-image: url(spritesmith-main-6.png); + background-position: -212px -1105px; + width: 105px; + height: 105px; +} +.Mount_Body_FlyingPig-Red { + background-image: url(spritesmith-main-6.png); + background-position: -318px -1105px; + width: 105px; + height: 105px; +} +.Mount_Body_FlyingPig-Shade { + background-image: url(spritesmith-main-6.png); + background-position: -424px -1105px; + width: 105px; + height: 105px; +} +.Mount_Body_FlyingPig-Skeleton { + background-image: url(spritesmith-main-6.png); + background-position: -530px -1105px; + width: 105px; + height: 105px; +} +.Mount_Body_FlyingPig-Spooky { + background-image: url(spritesmith-main-6.png); + background-position: -636px -1105px; + width: 105px; + height: 105px; +} +.Mount_Body_FlyingPig-White { + background-image: url(spritesmith-main-6.png); + background-position: -742px -1105px; + width: 105px; + height: 105px; +} +.Mount_Body_FlyingPig-Zombie { + background-image: url(spritesmith-main-6.png); + background-position: -848px -1105px; + width: 105px; + height: 105px; +} +.Mount_Body_Fox-Base { + background-image: url(spritesmith-main-6.png); + background-position: -954px -1105px; + width: 105px; + height: 105px; +} +.Mount_Body_Fox-CottonCandyBlue { + background-image: url(spritesmith-main-6.png); + background-position: -1060px -1105px; + width: 105px; + height: 105px; +} +.Mount_Body_Fox-CottonCandyPink { + background-image: url(spritesmith-main-6.png); + background-position: -1166px -1105px; + width: 105px; + height: 105px; +} +.Mount_Body_Fox-Desert { + background-image: url(spritesmith-main-6.png); + background-position: -1272px 0px; + width: 105px; + height: 105px; +} +.Mount_Body_Fox-Golden { + background-image: url(spritesmith-main-6.png); + background-position: -1272px -106px; + width: 105px; + height: 105px; +} +.Mount_Body_Fox-Peppermint { + background-image: url(spritesmith-main-6.png); + background-position: -530px -115px; + width: 105px; + height: 105px; +} +.Mount_Body_Fox-Red { + background-image: url(spritesmith-main-6.png); + background-position: -1272px -318px; + width: 105px; + height: 105px; +} +.Mount_Body_Fox-Shade { + background-image: url(spritesmith-main-6.png); + background-position: -1272px -424px; + width: 105px; + height: 105px; +} +.Mount_Body_Fox-Skeleton { + background-image: url(spritesmith-main-6.png); + background-position: -1272px -530px; + width: 105px; + height: 105px; +} +.Mount_Body_Fox-Spooky { + background-image: url(spritesmith-main-6.png); + background-position: -1272px -636px; + width: 105px; + height: 105px; +} +.Mount_Body_Fox-White { + background-image: url(spritesmith-main-6.png); + background-position: -1272px -742px; + width: 105px; + height: 105px; +} +.Mount_Body_Fox-Zombie { + background-image: url(spritesmith-main-6.png); + background-position: -1272px -848px; + width: 105px; + height: 105px; +} .Mount_Body_Frog-Base { background-image: url(spritesmith-main-6.png); background-position: -212px -239px; @@ -666,241 +900,247 @@ } .Mount_Body_Gryphon-Base { background-image: url(spritesmith-main-6.png); - background-position: -1166px -212px; + background-position: -848px -1211px; width: 105px; height: 105px; } .Mount_Body_Gryphon-CottonCandyBlue { background-image: url(spritesmith-main-6.png); - background-position: -1166px -318px; + background-position: -954px -1211px; width: 105px; height: 105px; } .Mount_Body_Gryphon-CottonCandyPink { background-image: url(spritesmith-main-6.png); - background-position: -1166px -424px; + background-position: -1060px -1211px; width: 105px; height: 105px; } .Mount_Body_Gryphon-Desert { background-image: url(spritesmith-main-6.png); - background-position: -1166px -530px; + background-position: -1166px -1211px; width: 105px; height: 105px; } .Mount_Body_Gryphon-Golden { background-image: url(spritesmith-main-6.png); - background-position: -1166px -636px; + background-position: -1272px -1211px; width: 105px; height: 105px; } .Mount_Body_Gryphon-Red { background-image: url(spritesmith-main-6.png); - background-position: -1166px -742px; + background-position: -1378px 0px; width: 105px; height: 105px; } .Mount_Body_Gryphon-RoyalPurple { background-image: url(spritesmith-main-6.png); - background-position: -1166px -848px; + background-position: -1378px -106px; width: 105px; height: 105px; } .Mount_Body_Gryphon-Shade { background-image: url(spritesmith-main-6.png); - background-position: -1166px -954px; + background-position: -1378px -212px; width: 105px; height: 105px; } .Mount_Body_Gryphon-Skeleton { background-image: url(spritesmith-main-6.png); - background-position: 0px -1105px; + background-position: -1378px -318px; width: 105px; height: 105px; } .Mount_Body_Gryphon-White { background-image: url(spritesmith-main-6.png); - background-position: -106px -1105px; + background-position: -1378px -424px; width: 105px; height: 105px; } .Mount_Body_Gryphon-Zombie { background-image: url(spritesmith-main-6.png); - background-position: -212px -1105px; + background-position: -1378px -530px; width: 105px; height: 105px; } .Mount_Body_Hedgehog-Base { background-image: url(spritesmith-main-6.png); - background-position: -530px -115px; + background-position: -1378px -636px; width: 105px; height: 105px; } .Mount_Body_Hedgehog-CottonCandyBlue { background-image: url(spritesmith-main-6.png); - background-position: -424px -1105px; + background-position: -1378px -742px; width: 105px; height: 105px; } .Mount_Body_Hedgehog-CottonCandyPink { background-image: url(spritesmith-main-6.png); - background-position: -530px -1105px; + background-position: -1378px -848px; width: 105px; height: 105px; } .Mount_Body_Hedgehog-Desert { background-image: url(spritesmith-main-6.png); - background-position: -636px -1105px; + background-position: -1378px -954px; width: 105px; height: 105px; } .Mount_Body_Hedgehog-Golden { background-image: url(spritesmith-main-6.png); - background-position: -742px -1105px; + background-position: -1378px -1060px; width: 105px; height: 105px; } .Mount_Body_Hedgehog-Red { background-image: url(spritesmith-main-6.png); - background-position: -848px -1105px; + background-position: -1378px -1166px; width: 105px; height: 105px; } .Mount_Body_Hedgehog-Shade { background-image: url(spritesmith-main-6.png); - background-position: -954px -1105px; + background-position: 0px -1317px; width: 105px; height: 105px; } .Mount_Body_Hedgehog-Skeleton { background-image: url(spritesmith-main-6.png); - background-position: -1060px -1105px; + background-position: -106px -1317px; width: 105px; height: 105px; } .Mount_Body_Hedgehog-White { background-image: url(spritesmith-main-6.png); - background-position: -1166px -1105px; + background-position: -212px -1317px; width: 105px; height: 105px; } .Mount_Body_Hedgehog-Zombie { background-image: url(spritesmith-main-6.png); - background-position: -1272px 0px; + background-position: -318px -1317px; width: 105px; height: 105px; } .Mount_Body_Horse-Base { background-image: url(spritesmith-main-6.png); - background-position: -1272px -106px; + background-position: -424px -1317px; width: 105px; height: 105px; } .Mount_Body_Horse-CottonCandyBlue { background-image: url(spritesmith-main-6.png); - background-position: -1272px -212px; + background-position: -530px -1317px; width: 105px; height: 105px; } .Mount_Body_Horse-CottonCandyPink { background-image: url(spritesmith-main-6.png); - background-position: -1272px -318px; + background-position: -636px -1317px; width: 105px; height: 105px; } .Mount_Body_Horse-Desert { background-image: url(spritesmith-main-6.png); - background-position: -1272px -424px; + background-position: -742px -1317px; width: 105px; height: 105px; } .Mount_Body_Horse-Golden { background-image: url(spritesmith-main-6.png); - background-position: -1272px -530px; + background-position: -848px -1317px; width: 105px; height: 105px; } .Mount_Body_Horse-Red { background-image: url(spritesmith-main-6.png); - background-position: -1272px -636px; + background-position: -954px -1317px; width: 105px; height: 105px; } .Mount_Body_Horse-Shade { background-image: url(spritesmith-main-6.png); - background-position: -1272px -742px; + background-position: -1060px -1317px; width: 105px; height: 105px; } .Mount_Body_Horse-Skeleton { background-image: url(spritesmith-main-6.png); - background-position: -1272px -848px; + background-position: -1166px -1317px; width: 105px; height: 105px; } .Mount_Body_Horse-White { background-image: url(spritesmith-main-6.png); - background-position: -1272px -954px; + background-position: -1272px -1317px; width: 105px; height: 105px; } .Mount_Body_Horse-Zombie { background-image: url(spritesmith-main-6.png); - background-position: -1272px -1060px; + background-position: -1378px -1317px; width: 105px; height: 105px; } .Mount_Body_JackOLantern-Base { background-image: url(spritesmith-main-6.png); - background-position: -1696px -530px; + background-position: -539px -469px; width: 90px; height: 105px; } .Mount_Body_LionCub-Base { background-image: url(spritesmith-main-6.png); - background-position: -106px -1211px; + background-position: -1484px -106px; width: 105px; height: 105px; } .Mount_Body_LionCub-CottonCandyBlue { background-image: url(spritesmith-main-6.png); - background-position: -212px -1211px; + background-position: -1484px -212px; width: 105px; height: 105px; } .Mount_Body_LionCub-CottonCandyPink { background-image: url(spritesmith-main-6.png); - background-position: -318px -1211px; + background-position: -1484px -318px; width: 105px; height: 105px; } .Mount_Body_LionCub-Desert { background-image: url(spritesmith-main-6.png); - background-position: -424px -1211px; + background-position: -1484px -424px; width: 105px; height: 105px; } .Mount_Body_LionCub-Ethereal { background-image: url(spritesmith-main-6.png); - background-position: -530px -1211px; + background-position: -1484px -530px; width: 105px; height: 105px; } .Mount_Body_LionCub-Golden { background-image: url(spritesmith-main-6.png); - background-position: -636px -1211px; + background-position: -1484px -636px; + width: 105px; + height: 105px; +} +.Mount_Body_LionCub-Peppermint { + background-image: url(spritesmith-main-6.png); + background-position: -1484px -742px; width: 105px; height: 105px; } .Mount_Body_LionCub-Red { background-image: url(spritesmith-main-6.png); - background-position: -742px -1211px; + background-position: -1484px -848px; width: 105px; height: 105px; } .Mount_Body_LionCub-Shade { background-image: url(spritesmith-main-6.png); - background-position: -848px -1211px; + background-position: -1484px -954px; width: 105px; height: 105px; } @@ -912,19 +1152,19 @@ } .Mount_Body_LionCub-Spooky { background-image: url(spritesmith-main-6.png); - background-position: -1060px -1211px; + background-position: -1484px -1166px; width: 105px; height: 105px; } .Mount_Body_LionCub-White { background-image: url(spritesmith-main-6.png); - background-position: -1166px -1211px; + background-position: -1484px -1272px; width: 105px; height: 105px; } .Mount_Body_LionCub-Zombie { background-image: url(spritesmith-main-6.png); - background-position: -1272px -1211px; + background-position: 0px -1423px; width: 105px; height: 105px; } @@ -942,529 +1182,421 @@ } .Mount_Body_Octopus-Base { background-image: url(spritesmith-main-6.png); - background-position: -1378px -212px; + background-position: -318px -1423px; width: 105px; height: 105px; } .Mount_Body_Octopus-CottonCandyBlue { background-image: url(spritesmith-main-6.png); - background-position: -1378px -318px; + background-position: -424px -1423px; width: 105px; height: 105px; } .Mount_Body_Octopus-CottonCandyPink { background-image: url(spritesmith-main-6.png); - background-position: -1378px -424px; + background-position: -530px -1423px; width: 105px; height: 105px; } .Mount_Body_Octopus-Desert { background-image: url(spritesmith-main-6.png); - background-position: -1378px -530px; + background-position: -636px -1423px; width: 105px; height: 105px; } .Mount_Body_Octopus-Golden { background-image: url(spritesmith-main-6.png); - background-position: -1378px -636px; + background-position: -742px -1423px; width: 105px; height: 105px; } .Mount_Body_Octopus-Red { background-image: url(spritesmith-main-6.png); - background-position: -1378px -742px; + background-position: -848px -1423px; width: 105px; height: 105px; } .Mount_Body_Octopus-Shade { background-image: url(spritesmith-main-6.png); - background-position: -1378px -848px; + background-position: -954px -1423px; width: 105px; height: 105px; } .Mount_Body_Octopus-Skeleton { background-image: url(spritesmith-main-6.png); - background-position: -1378px -954px; + background-position: -1060px -1423px; width: 105px; height: 105px; } .Mount_Body_Octopus-White { background-image: url(spritesmith-main-6.png); - background-position: -1378px -1060px; + background-position: -1166px -1423px; width: 105px; height: 105px; } .Mount_Body_Octopus-Zombie { background-image: url(spritesmith-main-6.png); - background-position: -1378px -1166px; + background-position: -1272px -1423px; width: 105px; height: 105px; } .Mount_Body_Orca-Base { background-image: url(spritesmith-main-6.png); - background-position: 0px -1317px; + background-position: -1378px -1423px; width: 105px; height: 105px; } .Mount_Body_Owl-Base { background-image: url(spritesmith-main-6.png); - background-position: -106px -1317px; + background-position: -1484px -1423px; width: 105px; height: 105px; } .Mount_Body_Owl-CottonCandyBlue { background-image: url(spritesmith-main-6.png); - background-position: -212px -1317px; + background-position: -1590px 0px; width: 105px; height: 105px; } .Mount_Body_Owl-CottonCandyPink { background-image: url(spritesmith-main-6.png); - background-position: -318px -1317px; + background-position: -1590px -106px; width: 105px; height: 105px; } .Mount_Body_Owl-Desert { background-image: url(spritesmith-main-6.png); - background-position: -424px -1317px; + background-position: -1590px -212px; width: 105px; height: 105px; } .Mount_Body_Owl-Golden { background-image: url(spritesmith-main-6.png); - background-position: -530px -1317px; + background-position: -1590px -318px; width: 105px; height: 105px; } .Mount_Body_Owl-Red { background-image: url(spritesmith-main-6.png); - background-position: -636px -1317px; + background-position: -1590px -424px; width: 105px; height: 105px; } .Mount_Body_Owl-Shade { background-image: url(spritesmith-main-6.png); - background-position: -742px -1317px; + background-position: -1590px -530px; width: 105px; height: 105px; } .Mount_Body_Owl-Skeleton { background-image: url(spritesmith-main-6.png); - background-position: -848px -1317px; + background-position: -1590px -636px; width: 105px; height: 105px; } .Mount_Body_Owl-White { background-image: url(spritesmith-main-6.png); - background-position: -954px -1317px; + background-position: -1590px -742px; width: 105px; height: 105px; } .Mount_Body_Owl-Zombie { background-image: url(spritesmith-main-6.png); - background-position: -1060px -1317px; + background-position: -1590px -848px; width: 105px; height: 105px; } .Mount_Body_PandaCub-Base { background-image: url(spritesmith-main-6.png); - background-position: -1166px -1317px; + background-position: -1590px -954px; width: 105px; height: 105px; } .Mount_Body_PandaCub-CottonCandyBlue { background-image: url(spritesmith-main-6.png); - background-position: -1272px -1317px; + background-position: -1590px -1060px; width: 105px; height: 105px; } .Mount_Body_PandaCub-CottonCandyPink { background-image: url(spritesmith-main-6.png); - background-position: -1378px -1317px; + background-position: -1590px -1166px; width: 105px; height: 105px; } .Mount_Body_PandaCub-Desert { background-image: url(spritesmith-main-6.png); - background-position: -1484px 0px; + background-position: -1590px -1272px; width: 105px; height: 105px; } .Mount_Body_PandaCub-Golden { - background-image: url(spritesmith-main-6.png); - background-position: -1484px -106px; - width: 105px; - height: 105px; -} -.Mount_Body_PandaCub-Red { - background-image: url(spritesmith-main-6.png); - background-position: -1484px -212px; - width: 105px; - height: 105px; -} -.Mount_Body_PandaCub-Shade { - background-image: url(spritesmith-main-6.png); - background-position: -1484px -318px; - width: 105px; - height: 105px; -} -.Mount_Body_PandaCub-Skeleton { - background-image: url(spritesmith-main-6.png); - background-position: -1484px -424px; - width: 105px; - height: 105px; -} -.Mount_Body_PandaCub-Spooky { - background-image: url(spritesmith-main-6.png); - background-position: -1484px -530px; - width: 105px; - height: 105px; -} -.Mount_Body_PandaCub-White { - background-image: url(spritesmith-main-6.png); - background-position: -1484px -636px; - width: 105px; - height: 105px; -} -.Mount_Body_PandaCub-Zombie { - background-image: url(spritesmith-main-6.png); - background-position: -1484px -742px; - width: 105px; - height: 105px; -} -.Mount_Body_Parrot-Base { - background-image: url(spritesmith-main-6.png); - background-position: -1484px -848px; - width: 105px; - height: 105px; -} -.Mount_Body_Parrot-CottonCandyBlue { - background-image: url(spritesmith-main-6.png); - background-position: -1484px -954px; - width: 105px; - height: 105px; -} -.Mount_Body_Parrot-CottonCandyPink { - background-image: url(spritesmith-main-6.png); - background-position: -1484px -1060px; - width: 105px; - height: 105px; -} -.Mount_Body_Parrot-Desert { - background-image: url(spritesmith-main-6.png); - background-position: -1484px -1166px; - width: 105px; - height: 105px; -} -.Mount_Body_Parrot-Golden { - background-image: url(spritesmith-main-6.png); - background-position: -1484px -1272px; - width: 105px; - height: 105px; -} -.Mount_Body_Parrot-Red { - background-image: url(spritesmith-main-6.png); - background-position: 0px -1423px; - width: 105px; - height: 105px; -} -.Mount_Body_Parrot-Shade { - background-image: url(spritesmith-main-6.png); - background-position: -106px -1423px; - width: 105px; - height: 105px; -} -.Mount_Body_Parrot-Skeleton { - background-image: url(spritesmith-main-6.png); - background-position: -212px -1423px; - width: 105px; - height: 105px; -} -.Mount_Body_Parrot-White { - background-image: url(spritesmith-main-6.png); - background-position: -318px -1423px; - width: 105px; - height: 105px; -} -.Mount_Body_Parrot-Zombie { - background-image: url(spritesmith-main-6.png); - background-position: -424px -1423px; - width: 105px; - height: 105px; -} -.Mount_Body_Penguin-Base { - background-image: url(spritesmith-main-6.png); - background-position: -530px -1423px; - width: 105px; - height: 105px; -} -.Mount_Body_Penguin-CottonCandyBlue { - background-image: url(spritesmith-main-6.png); - background-position: -636px -1423px; - width: 105px; - height: 105px; -} -.Mount_Body_Penguin-CottonCandyPink { - background-image: url(spritesmith-main-6.png); - background-position: -742px -1423px; - width: 105px; - height: 105px; -} -.Mount_Body_Penguin-Desert { - background-image: url(spritesmith-main-6.png); - background-position: -848px -1423px; - width: 105px; - height: 105px; -} -.Mount_Body_Penguin-Golden { - background-image: url(spritesmith-main-6.png); - background-position: -954px -1423px; - width: 105px; - height: 105px; -} -.Mount_Body_Penguin-Red { - background-image: url(spritesmith-main-6.png); - background-position: -1060px -1423px; - width: 105px; - height: 105px; -} -.Mount_Body_Penguin-Shade { - background-image: url(spritesmith-main-6.png); - background-position: -1166px -1423px; - width: 105px; - height: 105px; -} -.Mount_Body_Penguin-Skeleton { - background-image: url(spritesmith-main-6.png); - background-position: -1272px -1423px; - width: 105px; - height: 105px; -} -.Mount_Body_Penguin-White { - background-image: url(spritesmith-main-6.png); - background-position: -1378px -1423px; - width: 105px; - height: 105px; -} -.Mount_Body_Penguin-Zombie { - background-image: url(spritesmith-main-6.png); - background-position: -1484px -1423px; - width: 105px; - height: 105px; -} -.Mount_Body_Phoenix-Base { - background-image: url(spritesmith-main-6.png); - background-position: -1590px 0px; - width: 105px; - height: 105px; -} -.Mount_Body_Rat-Base { - background-image: url(spritesmith-main-6.png); - background-position: -1590px -106px; - width: 105px; - height: 105px; -} -.Mount_Body_Rat-CottonCandyBlue { - background-image: url(spritesmith-main-6.png); - background-position: -1590px -212px; - width: 105px; - height: 105px; -} -.Mount_Body_Rat-CottonCandyPink { - background-image: url(spritesmith-main-6.png); - background-position: -1590px -318px; - width: 105px; - height: 105px; -} -.Mount_Body_Rat-Desert { - background-image: url(spritesmith-main-6.png); - background-position: -1590px -424px; - width: 105px; - height: 105px; -} -.Mount_Body_Rat-Golden { - background-image: url(spritesmith-main-6.png); - background-position: -1590px -530px; - width: 105px; - height: 105px; -} -.Mount_Body_Rat-Red { - background-image: url(spritesmith-main-6.png); - background-position: -1590px -636px; - width: 105px; - height: 105px; -} -.Mount_Body_Rat-Shade { - background-image: url(spritesmith-main-6.png); - background-position: -1590px -742px; - width: 105px; - height: 105px; -} -.Mount_Body_Rat-Skeleton { - background-image: url(spritesmith-main-6.png); - background-position: -1590px -848px; - width: 105px; - height: 105px; -} -.Mount_Body_Rat-White { - background-image: url(spritesmith-main-6.png); - background-position: -1590px -954px; - width: 105px; - height: 105px; -} -.Mount_Body_Rat-Zombie { - background-image: url(spritesmith-main-6.png); - background-position: -1590px -1060px; - width: 105px; - height: 105px; -} -.Mount_Body_Rock-Base { - background-image: url(spritesmith-main-6.png); - background-position: -1590px -1166px; - width: 105px; - height: 105px; -} -.Mount_Body_Rock-CottonCandyBlue { - background-image: url(spritesmith-main-6.png); - background-position: -1590px -1272px; - width: 105px; - height: 105px; -} -.Mount_Body_Rock-CottonCandyPink { background-image: url(spritesmith-main-6.png); background-position: -1590px -1378px; width: 105px; height: 105px; } -.Mount_Body_Rock-Desert { +.Mount_Body_PandaCub-Peppermint { background-image: url(spritesmith-main-6.png); background-position: 0px -1529px; width: 105px; height: 105px; } -.Mount_Body_Rock-Golden { +.Mount_Body_PandaCub-Red { background-image: url(spritesmith-main-6.png); background-position: -106px -1529px; width: 105px; height: 105px; } -.Mount_Body_Rock-Red { +.Mount_Body_PandaCub-Shade { background-image: url(spritesmith-main-6.png); background-position: -212px -1529px; width: 105px; height: 105px; } -.Mount_Body_Rock-Shade { +.Mount_Body_PandaCub-Skeleton { background-image: url(spritesmith-main-6.png); background-position: -318px -1529px; width: 105px; height: 105px; } -.Mount_Body_Rock-Skeleton { +.Mount_Body_PandaCub-Spooky { background-image: url(spritesmith-main-6.png); background-position: -424px -1529px; width: 105px; height: 105px; } -.Mount_Body_Rock-White { +.Mount_Body_PandaCub-White { background-image: url(spritesmith-main-6.png); background-position: -530px -1529px; width: 105px; height: 105px; } -.Mount_Body_Rock-Zombie { +.Mount_Body_PandaCub-Zombie { background-image: url(spritesmith-main-6.png); background-position: -636px -1529px; width: 105px; height: 105px; } -.Mount_Body_Rooster-Base { +.Mount_Body_Parrot-Base { background-image: url(spritesmith-main-6.png); background-position: -742px -1529px; width: 105px; height: 105px; } -.Mount_Body_Rooster-CottonCandyBlue { +.Mount_Body_Parrot-CottonCandyBlue { background-image: url(spritesmith-main-6.png); background-position: -848px -1529px; width: 105px; height: 105px; } -.Mount_Body_Rooster-CottonCandyPink { +.Mount_Body_Parrot-CottonCandyPink { background-image: url(spritesmith-main-6.png); background-position: -954px -1529px; width: 105px; height: 105px; } -.Mount_Body_Rooster-Desert { +.Mount_Body_Parrot-Desert { background-image: url(spritesmith-main-6.png); background-position: -1060px -1529px; width: 105px; height: 105px; } -.Mount_Body_Rooster-Golden { +.Mount_Body_Parrot-Golden { background-image: url(spritesmith-main-6.png); background-position: -1166px -1529px; width: 105px; height: 105px; } -.Mount_Body_Rooster-Red { +.Mount_Body_Parrot-Red { background-image: url(spritesmith-main-6.png); background-position: -1272px -1529px; width: 105px; height: 105px; } -.Mount_Body_Rooster-Shade { +.Mount_Body_Parrot-Shade { background-image: url(spritesmith-main-6.png); background-position: -1378px -1529px; width: 105px; height: 105px; } -.Mount_Body_Rooster-Skeleton { +.Mount_Body_Parrot-Skeleton { background-image: url(spritesmith-main-6.png); - background-position: -1484px -1529px; + background-position: -1484px 0px; width: 105px; height: 105px; } -.Mount_Body_Rooster-White { +.Mount_Body_Parrot-White { background-image: url(spritesmith-main-6.png); - background-position: -1590px -1529px; + background-position: -1272px -212px; width: 105px; height: 105px; } -.Mount_Body_Rooster-Zombie { +.Mount_Body_Parrot-Zombie { background-image: url(spritesmith-main-6.png); - background-position: -1696px 0px; + background-position: -433px -469px; width: 105px; height: 105px; } -.Mount_Body_Seahorse-Base { +.Mount_Body_Penguin-Base { background-image: url(spritesmith-main-6.png); - background-position: -1696px -106px; + background-position: -327px -469px; width: 105px; height: 105px; } -.Mount_Body_Seahorse-CottonCandyBlue { +.Mount_Body_Penguin-CottonCandyBlue { background-image: url(spritesmith-main-6.png); - background-position: -1696px -212px; + background-position: -221px -469px; width: 105px; height: 105px; } -.Mount_Body_Seahorse-CottonCandyPink { +.Mount_Body_Penguin-CottonCandyPink { background-image: url(spritesmith-main-6.png); - background-position: -1696px -318px; + background-position: -530px -327px; width: 105px; height: 105px; } -.Mount_Body_Seahorse-Desert { +.Mount_Body_Penguin-Desert { + background-image: url(spritesmith-main-6.png); + background-position: -530px -221px; + width: 105px; + height: 105px; +} +.Mount_Body_Penguin-Golden { + background-image: url(spritesmith-main-6.png); + background-position: -212px -1423px; + width: 105px; + height: 105px; +} +.Mount_Body_Penguin-Red { + background-image: url(spritesmith-main-6.png); + background-position: -106px -1423px; + width: 105px; + height: 105px; +} +.Mount_Body_Penguin-Shade { + background-image: url(spritesmith-main-6.png); + background-position: -1484px -1060px; + width: 105px; + height: 105px; +} +.Mount_Body_Penguin-Skeleton { + background-image: url(spritesmith-main-6.png); + background-position: -742px -1211px; + width: 105px; + height: 105px; +} +.Mount_Body_Penguin-White { + background-image: url(spritesmith-main-6.png); + background-position: -636px -1211px; + width: 105px; + height: 105px; +} +.Mount_Body_Penguin-Zombie { + background-image: url(spritesmith-main-6.png); + background-position: -530px -1211px; + width: 105px; + height: 105px; +} +.Mount_Body_Phoenix-Base { + background-image: url(spritesmith-main-6.png); + background-position: -424px -1211px; + width: 105px; + height: 105px; +} +.Mount_Body_Rat-Base { + background-image: url(spritesmith-main-6.png); + background-position: -318px -1211px; + width: 105px; + height: 105px; +} +.Mount_Body_Rat-CottonCandyBlue { + background-image: url(spritesmith-main-6.png); + background-position: -212px -1211px; + width: 105px; + height: 105px; +} +.Mount_Body_Rat-CottonCandyPink { + background-image: url(spritesmith-main-6.png); + background-position: -106px -1211px; + width: 105px; + height: 105px; +} +.Mount_Body_Rat-Desert { background-image: url(spritesmith-main-6.png); background-position: 0px -1211px; width: 105px; height: 105px; } -.Mount_Body_Seahorse-Golden { +.Mount_Body_Rat-Golden { background-image: url(spritesmith-main-6.png); - background-position: -1696px -424px; + background-position: -1272px -1060px; + width: 105px; + height: 105px; +} +.Mount_Body_Rat-Red { + background-image: url(spritesmith-main-6.png); + background-position: -1272px -954px; + width: 105px; + height: 105px; +} +.Mount_Body_Rat-Shade { + background-image: url(spritesmith-main-6.png); + background-position: -424px -893px; + width: 105px; + height: 105px; +} +.Mount_Body_Rat-Skeleton { + background-image: url(spritesmith-main-6.png); + background-position: -318px -893px; + width: 105px; + height: 105px; +} +.Mount_Body_Rat-White { + background-image: url(spritesmith-main-6.png); + background-position: -212px -893px; + width: 105px; + height: 105px; +} +.Mount_Body_Rat-Zombie { + background-image: url(spritesmith-main-6.png); + background-position: -106px -893px; + width: 105px; + height: 105px; +} +.Mount_Body_Rock-Base { + background-image: url(spritesmith-main-6.png); + background-position: 0px -893px; + width: 105px; + height: 105px; +} +.Mount_Body_Rock-CottonCandyBlue { + background-image: url(spritesmith-main-6.png); + background-position: -954px -742px; + width: 105px; + height: 105px; +} +.Mount_Body_Rock-CottonCandyPink { + background-image: url(spritesmith-main-6.png); + background-position: -954px -636px; + width: 105px; + height: 105px; +} +.Mount_Body_Rock-Desert { + background-image: url(spritesmith-main-6.png); + background-position: -954px -530px; + width: 105px; + height: 105px; +} +.Mount_Body_Rock-Golden { + background-image: url(spritesmith-main-6.png); + background-position: -954px -424px; + width: 105px; + height: 105px; +} +.Mount_Body_Rock-Red { + background-image: url(spritesmith-main-6.png); + background-position: -954px -318px; width: 105px; height: 105px; } diff --git a/common/dist/sprites/spritesmith-main-6.png b/common/dist/sprites/spritesmith-main-6.png index 416a0771ea..e0d6bf563a 100644 Binary files a/common/dist/sprites/spritesmith-main-6.png and b/common/dist/sprites/spritesmith-main-6.png differ diff --git a/common/dist/sprites/spritesmith-main-7.css b/common/dist/sprites/spritesmith-main-7.css index 6f0f2bb1b5..962608e9e1 100644 --- a/common/dist/sprites/spritesmith-main-7.css +++ b/common/dist/sprites/spritesmith-main-7.css @@ -1,270 +1,384 @@ +.Mount_Body_Rock-Shade { + background-image: url(spritesmith-main-7.png); + background-position: -998px -530px; + width: 105px; + height: 105px; +} +.Mount_Body_Rock-Skeleton { + background-image: url(spritesmith-main-7.png); + background-position: -954px -1113px; + width: 105px; + height: 105px; +} +.Mount_Body_Rock-White { + background-image: url(spritesmith-main-7.png); + background-position: -998px -636px; + width: 105px; + height: 105px; +} +.Mount_Body_Rock-Zombie { + background-image: url(spritesmith-main-7.png); + background-position: -998px -742px; + width: 105px; + height: 105px; +} +.Mount_Body_Rooster-Base { + background-image: url(spritesmith-main-7.png); + background-position: 0px -901px; + width: 105px; + height: 105px; +} +.Mount_Body_Rooster-CottonCandyBlue { + background-image: url(spritesmith-main-7.png); + background-position: -106px -901px; + width: 105px; + height: 105px; +} +.Mount_Body_Rooster-CottonCandyPink { + background-image: url(spritesmith-main-7.png); + background-position: -212px -901px; + width: 105px; + height: 105px; +} +.Mount_Body_Rooster-Desert { + background-image: url(spritesmith-main-7.png); + background-position: -318px -901px; + width: 105px; + height: 105px; +} +.Mount_Body_Rooster-Golden { + background-image: url(spritesmith-main-7.png); + background-position: -424px -901px; + width: 105px; + height: 105px; +} +.Mount_Body_Rooster-Red { + background-image: url(spritesmith-main-7.png); + background-position: -530px -901px; + width: 105px; + height: 105px; +} +.Mount_Body_Rooster-Shade { + background-image: url(spritesmith-main-7.png); + background-position: -636px -901px; + width: 105px; + height: 105px; +} +.Mount_Body_Rooster-Skeleton { + background-image: url(spritesmith-main-7.png); + background-position: -1210px 0px; + width: 105px; + height: 105px; +} +.Mount_Body_Rooster-White { + background-image: url(spritesmith-main-7.png); + background-position: -1210px -106px; + width: 105px; + height: 105px; +} +.Mount_Body_Rooster-Zombie { + background-image: url(spritesmith-main-7.png); + background-position: -1210px -212px; + width: 105px; + height: 105px; +} +.Mount_Body_Seahorse-Base { + background-image: url(spritesmith-main-7.png); + background-position: -1210px -318px; + width: 105px; + height: 105px; +} +.Mount_Body_Seahorse-CottonCandyBlue { + background-image: url(spritesmith-main-7.png); + background-position: -1210px -424px; + width: 105px; + height: 105px; +} +.Mount_Body_Seahorse-CottonCandyPink { + background-image: url(spritesmith-main-7.png); + background-position: -1210px -530px; + width: 105px; + height: 105px; +} +.Mount_Body_Seahorse-Desert { + background-image: url(spritesmith-main-7.png); + background-position: -1210px -636px; + width: 105px; + height: 105px; +} +.Mount_Body_Seahorse-Golden { + background-image: url(spritesmith-main-7.png); + background-position: -1210px -742px; + width: 105px; + height: 105px; +} .Mount_Body_Seahorse-Red { background-image: url(spritesmith-main-7.png); - background-position: -892px -106px; + background-position: -1210px -848px; width: 105px; height: 105px; } .Mount_Body_Seahorse-Shade { background-image: url(spritesmith-main-7.png); - background-position: -848px -1113px; + background-position: -1210px -954px; width: 105px; height: 105px; } .Mount_Body_Seahorse-Skeleton { background-image: url(spritesmith-main-7.png); - background-position: -892px -212px; + background-position: 0px -1113px; width: 105px; height: 105px; } .Mount_Body_Seahorse-White { background-image: url(spritesmith-main-7.png); - background-position: -892px -318px; + background-position: -106px -1113px; width: 105px; height: 105px; } .Mount_Body_Seahorse-Zombie { background-image: url(spritesmith-main-7.png); - background-position: -892px -424px; + background-position: -1422px -1166px; width: 105px; height: 105px; } .Mount_Body_Sheep-Base { background-image: url(spritesmith-main-7.png); - background-position: -892px -530px; + background-position: 0px -1325px; width: 105px; height: 105px; } .Mount_Body_Sheep-CottonCandyBlue { background-image: url(spritesmith-main-7.png); - background-position: -892px -636px; + background-position: -106px -1325px; width: 105px; height: 105px; } .Mount_Body_Sheep-CottonCandyPink { background-image: url(spritesmith-main-7.png); - background-position: 0px -795px; + background-position: -212px -1325px; width: 105px; height: 105px; } .Mount_Body_Sheep-Desert { background-image: url(spritesmith-main-7.png); - background-position: -106px -795px; + background-position: -318px -1325px; width: 105px; height: 105px; } .Mount_Body_Sheep-Golden { background-image: url(spritesmith-main-7.png); - background-position: -212px -795px; + background-position: -424px -1325px; width: 105px; height: 105px; } .Mount_Body_Sheep-Red { background-image: url(spritesmith-main-7.png); - background-position: -318px -795px; + background-position: -530px -1325px; width: 105px; height: 105px; } .Mount_Body_Sheep-Shade { background-image: url(spritesmith-main-7.png); - background-position: -954px -901px; + background-position: -636px -1325px; width: 105px; height: 105px; } .Mount_Body_Sheep-Skeleton { background-image: url(spritesmith-main-7.png); - background-position: -1104px 0px; + background-position: -742px -1325px; width: 105px; height: 105px; } .Mount_Body_Sheep-White { background-image: url(spritesmith-main-7.png); - background-position: -1104px -106px; + background-position: -848px -1325px; width: 105px; height: 105px; } .Mount_Body_Sheep-Zombie { background-image: url(spritesmith-main-7.png); - background-position: -1104px -212px; + background-position: -954px -1537px; width: 105px; height: 105px; } .Mount_Body_Slime-Base { background-image: url(spritesmith-main-7.png); - background-position: -1104px -318px; + background-position: -1060px -1537px; width: 105px; height: 105px; } .Mount_Body_Slime-CottonCandyBlue { background-image: url(spritesmith-main-7.png); - background-position: -1104px -424px; + background-position: -1166px -1537px; width: 105px; height: 105px; } .Mount_Body_Slime-CottonCandyPink { background-image: url(spritesmith-main-7.png); - background-position: -1104px -530px; + background-position: -1272px -1537px; width: 105px; height: 105px; } .Mount_Body_Slime-Desert { background-image: url(spritesmith-main-7.png); - background-position: -1104px -636px; + background-position: -1378px -1537px; width: 105px; height: 105px; } .Mount_Body_Slime-Golden { background-image: url(spritesmith-main-7.png); - background-position: -1104px -742px; + background-position: -1484px -1537px; width: 105px; height: 105px; } .Mount_Body_Slime-Red { background-image: url(spritesmith-main-7.png); - background-position: -1104px -848px; + background-position: -1590px -1537px; width: 105px; height: 105px; } .Mount_Body_Slime-Shade { background-image: url(spritesmith-main-7.png); - background-position: 0px -1007px; + background-position: -1740px 0px; width: 105px; height: 105px; } .Mount_Body_Slime-Skeleton { background-image: url(spritesmith-main-7.png); - background-position: 0px -1219px; + background-position: -1740px -106px; width: 105px; height: 105px; } .Mount_Body_Slime-White { background-image: url(spritesmith-main-7.png); - background-position: -106px -1219px; + background-position: -1740px -212px; width: 105px; height: 105px; } .Mount_Body_Slime-Zombie { background-image: url(spritesmith-main-7.png); - background-position: -212px -1219px; + background-position: -892px 0px; width: 105px; height: 105px; } .Mount_Body_Snake-Base { background-image: url(spritesmith-main-7.png); - background-position: -318px -1219px; + background-position: -892px -106px; width: 105px; height: 105px; } .Mount_Body_Snake-CottonCandyBlue { background-image: url(spritesmith-main-7.png); - background-position: -424px -1219px; + background-position: -892px -212px; width: 105px; height: 105px; } .Mount_Body_Snake-CottonCandyPink { background-image: url(spritesmith-main-7.png); - background-position: -530px -1219px; + background-position: -892px -318px; width: 105px; height: 105px; } .Mount_Body_Snake-Desert { background-image: url(spritesmith-main-7.png); - background-position: -636px -1219px; + background-position: -892px -424px; width: 105px; height: 105px; } .Mount_Body_Snake-Golden { background-image: url(spritesmith-main-7.png); - background-position: -742px -1219px; + background-position: -892px -530px; width: 105px; height: 105px; } .Mount_Body_Snake-Red { background-image: url(spritesmith-main-7.png); - background-position: -848px -1219px; + background-position: -892px -636px; width: 105px; height: 105px; } .Mount_Body_Snake-Shade { background-image: url(spritesmith-main-7.png); - background-position: -954px -1219px; + background-position: 0px -795px; width: 105px; height: 105px; } .Mount_Body_Snake-Skeleton { background-image: url(spritesmith-main-7.png); - background-position: -1166px -1431px; + background-position: -106px -795px; width: 105px; height: 105px; } .Mount_Body_Snake-White { background-image: url(spritesmith-main-7.png); - background-position: -1272px -1431px; + background-position: -212px -795px; width: 105px; height: 105px; } .Mount_Body_Snake-Zombie { background-image: url(spritesmith-main-7.png); - background-position: -1378px -1431px; + background-position: -318px -795px; width: 105px; height: 105px; } .Mount_Body_Spider-Base { background-image: url(spritesmith-main-7.png); - background-position: -1484px -1431px; + background-position: -424px -795px; width: 105px; height: 105px; } .Mount_Body_Spider-CottonCandyBlue { background-image: url(spritesmith-main-7.png); - background-position: -1634px 0px; + background-position: -530px -795px; width: 105px; height: 105px; } .Mount_Body_Spider-CottonCandyPink { background-image: url(spritesmith-main-7.png); - background-position: -1634px -106px; + background-position: -636px -795px; width: 105px; height: 105px; } .Mount_Body_Spider-Desert { background-image: url(spritesmith-main-7.png); - background-position: -1634px -212px; + background-position: -742px -795px; width: 105px; height: 105px; } .Mount_Body_Spider-Golden { background-image: url(spritesmith-main-7.png); - background-position: -1634px -318px; + background-position: -848px -795px; width: 105px; height: 105px; } .Mount_Body_Spider-Red { background-image: url(spritesmith-main-7.png); - background-position: -1634px -424px; + background-position: -998px 0px; width: 105px; height: 105px; } .Mount_Body_Spider-Shade { background-image: url(spritesmith-main-7.png); - background-position: -1634px -530px; + background-position: -998px -106px; width: 105px; height: 105px; } .Mount_Body_Spider-Skeleton { background-image: url(spritesmith-main-7.png); - background-position: -636px -680px; + background-position: -998px -212px; width: 105px; height: 105px; } .Mount_Body_Spider-White { background-image: url(spritesmith-main-7.png); - background-position: -742px -680px; + background-position: -998px -318px; width: 105px; height: 105px; } .Mount_Body_Spider-Zombie { background-image: url(spritesmith-main-7.png); - background-position: -892px 0px; + background-position: -998px -424px; width: 105px; height: 105px; } @@ -276,7 +390,7 @@ } .Mount_Body_TRex-CottonCandyBlue { background-image: url(spritesmith-main-7.png); - background-position: -408px -136px; + background-position: -408px -272px; width: 135px; height: 135px; } @@ -330,145 +444,151 @@ } .Mount_Body_TigerCub-Base { background-image: url(spritesmith-main-7.png); - background-position: -424px -795px; + background-position: -742px -901px; width: 105px; height: 105px; } .Mount_Body_TigerCub-CottonCandyBlue { background-image: url(spritesmith-main-7.png); - background-position: -530px -795px; + background-position: -848px -901px; width: 105px; height: 105px; } .Mount_Body_TigerCub-CottonCandyPink { background-image: url(spritesmith-main-7.png); - background-position: -636px -795px; + background-position: -954px -901px; width: 105px; height: 105px; } .Mount_Body_TigerCub-Desert { background-image: url(spritesmith-main-7.png); - background-position: -742px -795px; + background-position: -1104px 0px; width: 105px; height: 105px; } .Mount_Body_TigerCub-Golden { background-image: url(spritesmith-main-7.png); - background-position: -848px -795px; + background-position: -1104px -106px; + width: 105px; + height: 105px; +} +.Mount_Body_TigerCub-Peppermint { + background-image: url(spritesmith-main-7.png); + background-position: -1104px -212px; width: 105px; height: 105px; } .Mount_Body_TigerCub-Red { background-image: url(spritesmith-main-7.png); - background-position: -998px 0px; + background-position: -1104px -318px; width: 105px; height: 105px; } .Mount_Body_TigerCub-Shade { background-image: url(spritesmith-main-7.png); - background-position: -998px -106px; + background-position: -1104px -424px; width: 105px; height: 105px; } .Mount_Body_TigerCub-Skeleton { background-image: url(spritesmith-main-7.png); - background-position: -998px -212px; + background-position: -1104px -530px; width: 105px; height: 105px; } .Mount_Body_TigerCub-Spooky { background-image: url(spritesmith-main-7.png); - background-position: -998px -318px; + background-position: -1104px -636px; width: 105px; height: 105px; } .Mount_Body_TigerCub-White { background-image: url(spritesmith-main-7.png); - background-position: -998px -424px; + background-position: -1104px -742px; width: 105px; height: 105px; } .Mount_Body_TigerCub-Zombie { background-image: url(spritesmith-main-7.png); - background-position: -998px -530px; + background-position: -1104px -848px; width: 105px; height: 105px; } .Mount_Body_Turkey-Base { background-image: url(spritesmith-main-7.png); - background-position: -998px -636px; + background-position: 0px -1007px; width: 105px; height: 105px; } .Mount_Body_Whale-Base { background-image: url(spritesmith-main-7.png); - background-position: -998px -742px; + background-position: -106px -1007px; width: 105px; height: 105px; } .Mount_Body_Whale-CottonCandyBlue { background-image: url(spritesmith-main-7.png); - background-position: 0px -901px; + background-position: -212px -1007px; width: 105px; height: 105px; } .Mount_Body_Whale-CottonCandyPink { background-image: url(spritesmith-main-7.png); - background-position: -106px -901px; + background-position: -318px -1007px; width: 105px; height: 105px; } .Mount_Body_Whale-Desert { background-image: url(spritesmith-main-7.png); - background-position: -212px -901px; + background-position: -424px -1007px; width: 105px; height: 105px; } .Mount_Body_Whale-Golden { background-image: url(spritesmith-main-7.png); - background-position: -318px -901px; + background-position: -530px -1007px; width: 105px; height: 105px; } .Mount_Body_Whale-Red { background-image: url(spritesmith-main-7.png); - background-position: -424px -901px; + background-position: -636px -1007px; width: 105px; height: 105px; } .Mount_Body_Whale-Shade { background-image: url(spritesmith-main-7.png); - background-position: -530px -901px; + background-position: -742px -1007px; width: 105px; height: 105px; } .Mount_Body_Whale-Skeleton { background-image: url(spritesmith-main-7.png); - background-position: -636px -901px; + background-position: -848px -1007px; width: 105px; height: 105px; } .Mount_Body_Whale-White { background-image: url(spritesmith-main-7.png); - background-position: -742px -901px; + background-position: -954px -1007px; width: 105px; height: 105px; } .Mount_Body_Whale-Zombie { background-image: url(spritesmith-main-7.png); - background-position: -848px -901px; + background-position: -1060px -1007px; width: 105px; height: 105px; } .Mount_Body_Wolf-Base { background-image: url(spritesmith-main-7.png); - background-position: 0px 0px; + background-position: -408px -136px; width: 135px; height: 135px; } .Mount_Body_Wolf-CottonCandyBlue { background-image: url(spritesmith-main-7.png); - background-position: -408px -272px; + background-position: 0px 0px; width: 135px; height: 135px; } @@ -490,907 +610,781 @@ width: 135px; height: 135px; } -.Mount_Body_Wolf-Red { +.Mount_Body_Wolf-Peppermint { background-image: url(spritesmith-main-7.png); background-position: -408px -408px; width: 135px; height: 135px; } -.Mount_Body_Wolf-Shade { +.Mount_Body_Wolf-Red { background-image: url(spritesmith-main-7.png); background-position: -544px 0px; width: 135px; height: 135px; } -.Mount_Body_Wolf-Skeleton { +.Mount_Body_Wolf-Shade { background-image: url(spritesmith-main-7.png); background-position: -544px -136px; width: 135px; height: 135px; } -.Mount_Body_Wolf-Spooky { +.Mount_Body_Wolf-Skeleton { background-image: url(spritesmith-main-7.png); background-position: -544px -272px; width: 135px; height: 135px; } -.Mount_Body_Wolf-White { +.Mount_Body_Wolf-Spooky { background-image: url(spritesmith-main-7.png); background-position: -544px -408px; width: 135px; height: 135px; } -.Mount_Body_Wolf-Zombie { +.Mount_Body_Wolf-White { background-image: url(spritesmith-main-7.png); background-position: -136px 0px; width: 135px; height: 135px; } +.Mount_Body_Wolf-Zombie { + background-image: url(spritesmith-main-7.png); + background-position: -136px -544px; + width: 135px; + height: 135px; +} .Mount_Head_BearCub-Base { - background-image: url(spritesmith-main-7.png); - background-position: -106px -1007px; - width: 105px; - height: 105px; -} -.Mount_Head_BearCub-CottonCandyBlue { - background-image: url(spritesmith-main-7.png); - background-position: -212px -1007px; - width: 105px; - height: 105px; -} -.Mount_Head_BearCub-CottonCandyPink { - background-image: url(spritesmith-main-7.png); - background-position: -318px -1007px; - width: 105px; - height: 105px; -} -.Mount_Head_BearCub-Desert { - background-image: url(spritesmith-main-7.png); - background-position: -424px -1007px; - width: 105px; - height: 105px; -} -.Mount_Head_BearCub-Golden { - background-image: url(spritesmith-main-7.png); - background-position: -530px -1007px; - width: 105px; - height: 105px; -} -.Mount_Head_BearCub-Polar { - background-image: url(spritesmith-main-7.png); - background-position: -636px -1007px; - width: 105px; - height: 105px; -} -.Mount_Head_BearCub-Red { - background-image: url(spritesmith-main-7.png); - background-position: -742px -1007px; - width: 105px; - height: 105px; -} -.Mount_Head_BearCub-Shade { - background-image: url(spritesmith-main-7.png); - background-position: -848px -1007px; - width: 105px; - height: 105px; -} -.Mount_Head_BearCub-Skeleton { - background-image: url(spritesmith-main-7.png); - background-position: -954px -1007px; - width: 105px; - height: 105px; -} -.Mount_Head_BearCub-Spooky { - background-image: url(spritesmith-main-7.png); - background-position: -1060px -1007px; - width: 105px; - height: 105px; -} -.Mount_Head_BearCub-White { - background-image: url(spritesmith-main-7.png); - background-position: -1210px 0px; - width: 105px; - height: 105px; -} -.Mount_Head_BearCub-Zombie { - background-image: url(spritesmith-main-7.png); - background-position: -1210px -106px; - width: 105px; - height: 105px; -} -.Mount_Head_Bunny-Base { - background-image: url(spritesmith-main-7.png); - background-position: -1210px -212px; - width: 105px; - height: 105px; -} -.Mount_Head_Bunny-CottonCandyBlue { - background-image: url(spritesmith-main-7.png); - background-position: -1210px -318px; - width: 105px; - height: 105px; -} -.Mount_Head_Bunny-CottonCandyPink { - background-image: url(spritesmith-main-7.png); - background-position: -1210px -424px; - width: 105px; - height: 105px; -} -.Mount_Head_Bunny-Desert { - background-image: url(spritesmith-main-7.png); - background-position: -1210px -530px; - width: 105px; - height: 105px; -} -.Mount_Head_Bunny-Golden { - background-image: url(spritesmith-main-7.png); - background-position: -1210px -636px; - width: 105px; - height: 105px; -} -.Mount_Head_Bunny-Red { - background-image: url(spritesmith-main-7.png); - background-position: -1210px -742px; - width: 105px; - height: 105px; -} -.Mount_Head_Bunny-Shade { - background-image: url(spritesmith-main-7.png); - background-position: -1210px -848px; - width: 105px; - height: 105px; -} -.Mount_Head_Bunny-Skeleton { - background-image: url(spritesmith-main-7.png); - background-position: -1210px -954px; - width: 105px; - height: 105px; -} -.Mount_Head_Bunny-White { - background-image: url(spritesmith-main-7.png); - background-position: 0px -1113px; - width: 105px; - height: 105px; -} -.Mount_Head_Bunny-Zombie { - background-image: url(spritesmith-main-7.png); - background-position: -106px -1113px; - width: 105px; - height: 105px; -} -.Mount_Head_Cactus-Base { background-image: url(spritesmith-main-7.png); background-position: -212px -1113px; width: 105px; height: 105px; } -.Mount_Head_Cactus-CottonCandyBlue { +.Mount_Head_BearCub-CottonCandyBlue { background-image: url(spritesmith-main-7.png); background-position: -318px -1113px; width: 105px; height: 105px; } -.Mount_Head_Cactus-CottonCandyPink { +.Mount_Head_BearCub-CottonCandyPink { background-image: url(spritesmith-main-7.png); background-position: -424px -1113px; width: 105px; height: 105px; } -.Mount_Head_Cactus-Desert { +.Mount_Head_BearCub-Desert { background-image: url(spritesmith-main-7.png); background-position: -530px -1113px; width: 105px; height: 105px; } -.Mount_Head_Cactus-Golden { +.Mount_Head_BearCub-Golden { background-image: url(spritesmith-main-7.png); background-position: -636px -1113px; width: 105px; height: 105px; } -.Mount_Head_Cactus-Red { +.Mount_Head_BearCub-Peppermint { background-image: url(spritesmith-main-7.png); background-position: -742px -1113px; width: 105px; height: 105px; } -.Mount_Head_Cactus-Shade { +.Mount_Head_BearCub-Polar { background-image: url(spritesmith-main-7.png); - background-position: -530px -680px; + background-position: -848px -1113px; width: 105px; height: 105px; } -.Mount_Head_Cactus-Skeleton { +.Mount_Head_BearCub-Red { background-image: url(spritesmith-main-7.png); - background-position: -954px -1113px; + background-position: -742px -680px; width: 105px; height: 105px; } -.Mount_Head_Cactus-Spooky { +.Mount_Head_BearCub-Shade { background-image: url(spritesmith-main-7.png); background-position: -1060px -1113px; width: 105px; height: 105px; } -.Mount_Head_Cactus-White { +.Mount_Head_BearCub-Skeleton { background-image: url(spritesmith-main-7.png); background-position: -1166px -1113px; width: 105px; height: 105px; } -.Mount_Head_Cactus-Zombie { +.Mount_Head_BearCub-Spooky { background-image: url(spritesmith-main-7.png); background-position: -1316px 0px; width: 105px; height: 105px; } -.Mount_Head_Cheetah-Base { +.Mount_Head_BearCub-White { background-image: url(spritesmith-main-7.png); background-position: -1316px -106px; width: 105px; height: 105px; } -.Mount_Head_Cheetah-CottonCandyBlue { +.Mount_Head_BearCub-Zombie { background-image: url(spritesmith-main-7.png); background-position: -1316px -212px; width: 105px; height: 105px; } -.Mount_Head_Cheetah-CottonCandyPink { +.Mount_Head_Bunny-Base { background-image: url(spritesmith-main-7.png); background-position: -1316px -318px; width: 105px; height: 105px; } -.Mount_Head_Cheetah-Desert { +.Mount_Head_Bunny-CottonCandyBlue { background-image: url(spritesmith-main-7.png); background-position: -1316px -424px; width: 105px; height: 105px; } -.Mount_Head_Cheetah-Golden { +.Mount_Head_Bunny-CottonCandyPink { background-image: url(spritesmith-main-7.png); background-position: -1316px -530px; width: 105px; height: 105px; } -.Mount_Head_Cheetah-Red { +.Mount_Head_Bunny-Desert { background-image: url(spritesmith-main-7.png); background-position: -1316px -636px; width: 105px; height: 105px; } -.Mount_Head_Cheetah-Shade { +.Mount_Head_Bunny-Golden { background-image: url(spritesmith-main-7.png); background-position: -1316px -742px; width: 105px; height: 105px; } -.Mount_Head_Cheetah-Skeleton { +.Mount_Head_Bunny-Red { background-image: url(spritesmith-main-7.png); background-position: -1316px -848px; width: 105px; height: 105px; } -.Mount_Head_Cheetah-White { +.Mount_Head_Bunny-Shade { background-image: url(spritesmith-main-7.png); background-position: -1316px -954px; width: 105px; height: 105px; } -.Mount_Head_Cheetah-Zombie { +.Mount_Head_Bunny-Skeleton { background-image: url(spritesmith-main-7.png); background-position: -1316px -1060px; width: 105px; height: 105px; } -.Mount_Head_Cuttlefish-Base { +.Mount_Head_Bunny-White { background-image: url(spritesmith-main-7.png); - background-position: -242px -544px; + background-position: 0px -1219px; width: 105px; - height: 114px; + height: 105px; } -.Mount_Head_Cuttlefish-CottonCandyBlue { +.Mount_Head_Bunny-Zombie { background-image: url(spritesmith-main-7.png); - background-position: -348px -544px; + background-position: -106px -1219px; width: 105px; - height: 114px; + height: 105px; } -.Mount_Head_Cuttlefish-CottonCandyPink { +.Mount_Head_Cactus-Base { background-image: url(spritesmith-main-7.png); - background-position: -454px -544px; + background-position: -212px -1219px; width: 105px; - height: 114px; + height: 105px; } -.Mount_Head_Cuttlefish-Desert { +.Mount_Head_Cactus-CottonCandyBlue { background-image: url(spritesmith-main-7.png); - background-position: -560px -544px; + background-position: -318px -1219px; width: 105px; - height: 114px; + height: 105px; } -.Mount_Head_Cuttlefish-Golden { +.Mount_Head_Cactus-CottonCandyPink { background-image: url(spritesmith-main-7.png); - background-position: -680px 0px; + background-position: -424px -1219px; width: 105px; - height: 114px; + height: 105px; } -.Mount_Head_Cuttlefish-Red { +.Mount_Head_Cactus-Desert { background-image: url(spritesmith-main-7.png); - background-position: -680px -115px; + background-position: -530px -1219px; width: 105px; - height: 114px; + height: 105px; } -.Mount_Head_Cuttlefish-Shade { +.Mount_Head_Cactus-Golden { background-image: url(spritesmith-main-7.png); - background-position: -680px -230px; + background-position: -636px -1219px; width: 105px; - height: 114px; + height: 105px; } -.Mount_Head_Cuttlefish-Skeleton { +.Mount_Head_Cactus-Peppermint { background-image: url(spritesmith-main-7.png); - background-position: -680px -345px; + background-position: -742px -1219px; width: 105px; - height: 114px; + height: 105px; } -.Mount_Head_Cuttlefish-White { +.Mount_Head_Cactus-Red { background-image: url(spritesmith-main-7.png); - background-position: -680px -460px; + background-position: -848px -1219px; width: 105px; - height: 114px; + height: 105px; } -.Mount_Head_Cuttlefish-Zombie { +.Mount_Head_Cactus-Shade { background-image: url(spritesmith-main-7.png); - background-position: -786px 0px; + background-position: -954px -1219px; width: 105px; - height: 114px; + height: 105px; } -.Mount_Head_Deer-Base { +.Mount_Head_Cactus-Skeleton { background-image: url(spritesmith-main-7.png); background-position: -1060px -1219px; width: 105px; height: 105px; } -.Mount_Head_Deer-CottonCandyBlue { +.Mount_Head_Cactus-Spooky { background-image: url(spritesmith-main-7.png); background-position: -1166px -1219px; width: 105px; height: 105px; } -.Mount_Head_Deer-CottonCandyPink { +.Mount_Head_Cactus-White { background-image: url(spritesmith-main-7.png); background-position: -1272px -1219px; width: 105px; height: 105px; } -.Mount_Head_Deer-Desert { +.Mount_Head_Cactus-Zombie { background-image: url(spritesmith-main-7.png); background-position: -1422px 0px; width: 105px; height: 105px; } -.Mount_Head_Deer-Golden { +.Mount_Head_Cheetah-Base { background-image: url(spritesmith-main-7.png); background-position: -1422px -106px; width: 105px; height: 105px; } -.Mount_Head_Deer-Red { +.Mount_Head_Cheetah-CottonCandyBlue { background-image: url(spritesmith-main-7.png); background-position: -1422px -212px; width: 105px; height: 105px; } -.Mount_Head_Deer-Shade { +.Mount_Head_Cheetah-CottonCandyPink { background-image: url(spritesmith-main-7.png); background-position: -1422px -318px; width: 105px; height: 105px; } -.Mount_Head_Deer-Skeleton { +.Mount_Head_Cheetah-Desert { background-image: url(spritesmith-main-7.png); background-position: -1422px -424px; width: 105px; height: 105px; } -.Mount_Head_Deer-White { +.Mount_Head_Cheetah-Golden { background-image: url(spritesmith-main-7.png); background-position: -1422px -530px; width: 105px; height: 105px; } -.Mount_Head_Deer-Zombie { +.Mount_Head_Cheetah-Red { background-image: url(spritesmith-main-7.png); background-position: -1422px -636px; width: 105px; height: 105px; } -.Mount_Head_Dragon-Base { +.Mount_Head_Cheetah-Shade { background-image: url(spritesmith-main-7.png); background-position: -1422px -742px; width: 105px; height: 105px; } -.Mount_Head_Dragon-CottonCandyBlue { +.Mount_Head_Cheetah-Skeleton { background-image: url(spritesmith-main-7.png); background-position: -1422px -848px; width: 105px; height: 105px; } -.Mount_Head_Dragon-CottonCandyPink { +.Mount_Head_Cheetah-White { background-image: url(spritesmith-main-7.png); background-position: -1422px -954px; width: 105px; height: 105px; } -.Mount_Head_Dragon-Desert { +.Mount_Head_Cheetah-Zombie { background-image: url(spritesmith-main-7.png); background-position: -1422px -1060px; width: 105px; height: 105px; } -.Mount_Head_Dragon-Golden { +.Mount_Head_Cuttlefish-Base { background-image: url(spritesmith-main-7.png); - background-position: -1422px -1166px; + background-position: -378px -544px; width: 105px; - height: 105px; + height: 114px; } -.Mount_Head_Dragon-Red { +.Mount_Head_Cuttlefish-CottonCandyBlue { background-image: url(spritesmith-main-7.png); - background-position: 0px -1325px; + background-position: -484px -544px; width: 105px; - height: 105px; + height: 114px; } -.Mount_Head_Dragon-Shade { +.Mount_Head_Cuttlefish-CottonCandyPink { background-image: url(spritesmith-main-7.png); - background-position: -106px -1325px; + background-position: -680px 0px; width: 105px; - height: 105px; + height: 114px; } -.Mount_Head_Dragon-Skeleton { +.Mount_Head_Cuttlefish-Desert { background-image: url(spritesmith-main-7.png); - background-position: -212px -1325px; + background-position: -680px -115px; width: 105px; - height: 105px; + height: 114px; } -.Mount_Head_Dragon-Spooky { +.Mount_Head_Cuttlefish-Golden { background-image: url(spritesmith-main-7.png); - background-position: -318px -1325px; + background-position: -680px -230px; width: 105px; - height: 105px; + height: 114px; } -.Mount_Head_Dragon-White { +.Mount_Head_Cuttlefish-Red { background-image: url(spritesmith-main-7.png); - background-position: -424px -1325px; + background-position: -680px -345px; width: 105px; - height: 105px; + height: 114px; } -.Mount_Head_Dragon-Zombie { +.Mount_Head_Cuttlefish-Shade { background-image: url(spritesmith-main-7.png); - background-position: -530px -1325px; + background-position: -680px -460px; width: 105px; - height: 105px; + height: 114px; } -.Mount_Head_Egg-Base { +.Mount_Head_Cuttlefish-Skeleton { background-image: url(spritesmith-main-7.png); - background-position: -636px -1325px; + background-position: -786px 0px; width: 105px; - height: 105px; + height: 114px; } -.Mount_Head_Egg-CottonCandyBlue { - background-image: url(spritesmith-main-7.png); - background-position: -742px -1325px; - width: 105px; - height: 105px; -} -.Mount_Head_Egg-CottonCandyPink { - background-image: url(spritesmith-main-7.png); - background-position: -848px -1325px; - width: 105px; - height: 105px; -} -.Mount_Head_Egg-Desert { - background-image: url(spritesmith-main-7.png); - background-position: -954px -1325px; - width: 105px; - height: 105px; -} -.Mount_Head_Egg-Golden { - background-image: url(spritesmith-main-7.png); - background-position: -1060px -1325px; - width: 105px; - height: 105px; -} -.Mount_Head_Egg-Red { - background-image: url(spritesmith-main-7.png); - background-position: -1166px -1325px; - width: 105px; - height: 105px; -} -.Mount_Head_Egg-Shade { - background-image: url(spritesmith-main-7.png); - background-position: -1272px -1325px; - width: 105px; - height: 105px; -} -.Mount_Head_Egg-Skeleton { - background-image: url(spritesmith-main-7.png); - background-position: -1378px -1325px; - width: 105px; - height: 105px; -} -.Mount_Head_Egg-White { - background-image: url(spritesmith-main-7.png); - background-position: -1528px 0px; - width: 105px; - height: 105px; -} -.Mount_Head_Egg-Zombie { - background-image: url(spritesmith-main-7.png); - background-position: -1528px -106px; - width: 105px; - height: 105px; -} -.Mount_Head_FlyingPig-Base { - background-image: url(spritesmith-main-7.png); - background-position: -1528px -212px; - width: 105px; - height: 105px; -} -.Mount_Head_FlyingPig-CottonCandyBlue { - background-image: url(spritesmith-main-7.png); - background-position: -1528px -318px; - width: 105px; - height: 105px; -} -.Mount_Head_FlyingPig-CottonCandyPink { - background-image: url(spritesmith-main-7.png); - background-position: -1528px -424px; - width: 105px; - height: 105px; -} -.Mount_Head_FlyingPig-Desert { - background-image: url(spritesmith-main-7.png); - background-position: -1528px -530px; - width: 105px; - height: 105px; -} -.Mount_Head_FlyingPig-Golden { - background-image: url(spritesmith-main-7.png); - background-position: -1528px -636px; - width: 105px; - height: 105px; -} -.Mount_Head_FlyingPig-Red { - background-image: url(spritesmith-main-7.png); - background-position: -1528px -742px; - width: 105px; - height: 105px; -} -.Mount_Head_FlyingPig-Shade { - background-image: url(spritesmith-main-7.png); - background-position: -1528px -848px; - width: 105px; - height: 105px; -} -.Mount_Head_FlyingPig-Skeleton { - background-image: url(spritesmith-main-7.png); - background-position: -1528px -954px; - width: 105px; - height: 105px; -} -.Mount_Head_FlyingPig-Spooky { - background-image: url(spritesmith-main-7.png); - background-position: -1528px -1060px; - width: 105px; - height: 105px; -} -.Mount_Head_FlyingPig-White { - background-image: url(spritesmith-main-7.png); - background-position: -1528px -1166px; - width: 105px; - height: 105px; -} -.Mount_Head_FlyingPig-Zombie { - background-image: url(spritesmith-main-7.png); - background-position: -1528px -1272px; - width: 105px; - height: 105px; -} -.Mount_Head_Fox-Base { - background-image: url(spritesmith-main-7.png); - background-position: 0px -1431px; - width: 105px; - height: 105px; -} -.Mount_Head_Fox-CottonCandyBlue { - background-image: url(spritesmith-main-7.png); - background-position: -106px -1431px; - width: 105px; - height: 105px; -} -.Mount_Head_Fox-CottonCandyPink { - background-image: url(spritesmith-main-7.png); - background-position: -212px -1431px; - width: 105px; - height: 105px; -} -.Mount_Head_Fox-Desert { - background-image: url(spritesmith-main-7.png); - background-position: -318px -1431px; - width: 105px; - height: 105px; -} -.Mount_Head_Fox-Golden { - background-image: url(spritesmith-main-7.png); - background-position: -424px -1431px; - width: 105px; - height: 105px; -} -.Mount_Head_Fox-Red { - background-image: url(spritesmith-main-7.png); - background-position: -530px -1431px; - width: 105px; - height: 105px; -} -.Mount_Head_Fox-Shade { - background-image: url(spritesmith-main-7.png); - background-position: -636px -1431px; - width: 105px; - height: 105px; -} -.Mount_Head_Fox-Skeleton { - background-image: url(spritesmith-main-7.png); - background-position: -742px -1431px; - width: 105px; - height: 105px; -} -.Mount_Head_Fox-Spooky { - background-image: url(spritesmith-main-7.png); - background-position: -848px -1431px; - width: 105px; - height: 105px; -} -.Mount_Head_Fox-White { - background-image: url(spritesmith-main-7.png); - background-position: -954px -1431px; - width: 105px; - height: 105px; -} -.Mount_Head_Fox-Zombie { - background-image: url(spritesmith-main-7.png); - background-position: -1060px -1431px; - width: 105px; - height: 105px; -} -.Mount_Head_Frog-Base { +.Mount_Head_Cuttlefish-White { background-image: url(spritesmith-main-7.png); background-position: -786px -115px; width: 105px; height: 114px; } -.Mount_Head_Frog-CottonCandyBlue { +.Mount_Head_Cuttlefish-Zombie { background-image: url(spritesmith-main-7.png); background-position: -786px -230px; width: 105px; height: 114px; } -.Mount_Head_Frog-CottonCandyPink { +.Mount_Head_Deer-Base { background-image: url(spritesmith-main-7.png); - background-position: -786px -345px; + background-position: -954px -1325px; width: 105px; - height: 114px; + height: 105px; } -.Mount_Head_Frog-Desert { +.Mount_Head_Deer-CottonCandyBlue { background-image: url(spritesmith-main-7.png); - background-position: -786px -460px; + background-position: -1060px -1325px; width: 105px; - height: 114px; + height: 105px; } -.Mount_Head_Frog-Golden { +.Mount_Head_Deer-CottonCandyPink { background-image: url(spritesmith-main-7.png); - background-position: 0px -680px; + background-position: -1166px -1325px; width: 105px; - height: 114px; + height: 105px; } -.Mount_Head_Frog-Red { +.Mount_Head_Deer-Desert { background-image: url(spritesmith-main-7.png); - background-position: -106px -680px; + background-position: -1272px -1325px; width: 105px; - height: 114px; + height: 105px; } -.Mount_Head_Frog-Shade { +.Mount_Head_Deer-Golden { background-image: url(spritesmith-main-7.png); - background-position: -212px -680px; + background-position: -1378px -1325px; width: 105px; - height: 114px; + height: 105px; } -.Mount_Head_Frog-Skeleton { +.Mount_Head_Deer-Red { background-image: url(spritesmith-main-7.png); - background-position: -318px -680px; + background-position: -1528px 0px; width: 105px; - height: 114px; + height: 105px; } -.Mount_Head_Frog-White { +.Mount_Head_Deer-Shade { background-image: url(spritesmith-main-7.png); - background-position: -424px -680px; + background-position: -1528px -106px; width: 105px; - height: 114px; + height: 105px; } -.Mount_Head_Frog-Zombie { +.Mount_Head_Deer-Skeleton { background-image: url(spritesmith-main-7.png); - background-position: -136px -544px; + background-position: -1528px -212px; width: 105px; - height: 114px; + height: 105px; } -.Mount_Head_Gryphon-Base { +.Mount_Head_Deer-White { + background-image: url(spritesmith-main-7.png); + background-position: -1528px -318px; + width: 105px; + height: 105px; +} +.Mount_Head_Deer-Zombie { + background-image: url(spritesmith-main-7.png); + background-position: -1528px -424px; + width: 105px; + height: 105px; +} +.Mount_Head_Dragon-Base { + background-image: url(spritesmith-main-7.png); + background-position: -1528px -530px; + width: 105px; + height: 105px; +} +.Mount_Head_Dragon-CottonCandyBlue { + background-image: url(spritesmith-main-7.png); + background-position: -1528px -636px; + width: 105px; + height: 105px; +} +.Mount_Head_Dragon-CottonCandyPink { + background-image: url(spritesmith-main-7.png); + background-position: -1528px -742px; + width: 105px; + height: 105px; +} +.Mount_Head_Dragon-Desert { + background-image: url(spritesmith-main-7.png); + background-position: -1528px -848px; + width: 105px; + height: 105px; +} +.Mount_Head_Dragon-Golden { + background-image: url(spritesmith-main-7.png); + background-position: -1528px -954px; + width: 105px; + height: 105px; +} +.Mount_Head_Dragon-Peppermint { + background-image: url(spritesmith-main-7.png); + background-position: -1528px -1060px; + width: 105px; + height: 105px; +} +.Mount_Head_Dragon-Red { + background-image: url(spritesmith-main-7.png); + background-position: -1528px -1166px; + width: 105px; + height: 105px; +} +.Mount_Head_Dragon-Shade { + background-image: url(spritesmith-main-7.png); + background-position: -1528px -1272px; + width: 105px; + height: 105px; +} +.Mount_Head_Dragon-Skeleton { + background-image: url(spritesmith-main-7.png); + background-position: 0px -1431px; + width: 105px; + height: 105px; +} +.Mount_Head_Dragon-Spooky { + background-image: url(spritesmith-main-7.png); + background-position: -106px -1431px; + width: 105px; + height: 105px; +} +.Mount_Head_Dragon-White { + background-image: url(spritesmith-main-7.png); + background-position: -212px -1431px; + width: 105px; + height: 105px; +} +.Mount_Head_Dragon-Zombie { + background-image: url(spritesmith-main-7.png); + background-position: -318px -1431px; + width: 105px; + height: 105px; +} +.Mount_Head_Egg-Base { + background-image: url(spritesmith-main-7.png); + background-position: -424px -1431px; + width: 105px; + height: 105px; +} +.Mount_Head_Egg-CottonCandyBlue { + background-image: url(spritesmith-main-7.png); + background-position: -530px -1431px; + width: 105px; + height: 105px; +} +.Mount_Head_Egg-CottonCandyPink { + background-image: url(spritesmith-main-7.png); + background-position: -636px -1431px; + width: 105px; + height: 105px; +} +.Mount_Head_Egg-Desert { + background-image: url(spritesmith-main-7.png); + background-position: -742px -1431px; + width: 105px; + height: 105px; +} +.Mount_Head_Egg-Golden { + background-image: url(spritesmith-main-7.png); + background-position: -848px -1431px; + width: 105px; + height: 105px; +} +.Mount_Head_Egg-Red { + background-image: url(spritesmith-main-7.png); + background-position: -954px -1431px; + width: 105px; + height: 105px; +} +.Mount_Head_Egg-Shade { + background-image: url(spritesmith-main-7.png); + background-position: -1060px -1431px; + width: 105px; + height: 105px; +} +.Mount_Head_Egg-Skeleton { + background-image: url(spritesmith-main-7.png); + background-position: -1166px -1431px; + width: 105px; + height: 105px; +} +.Mount_Head_Egg-White { + background-image: url(spritesmith-main-7.png); + background-position: -1272px -1431px; + width: 105px; + height: 105px; +} +.Mount_Head_Egg-Zombie { + background-image: url(spritesmith-main-7.png); + background-position: -1378px -1431px; + width: 105px; + height: 105px; +} +.Mount_Head_FlyingPig-Base { + background-image: url(spritesmith-main-7.png); + background-position: -1484px -1431px; + width: 105px; + height: 105px; +} +.Mount_Head_FlyingPig-CottonCandyBlue { + background-image: url(spritesmith-main-7.png); + background-position: -1634px 0px; + width: 105px; + height: 105px; +} +.Mount_Head_FlyingPig-CottonCandyPink { + background-image: url(spritesmith-main-7.png); + background-position: -1634px -106px; + width: 105px; + height: 105px; +} +.Mount_Head_FlyingPig-Desert { + background-image: url(spritesmith-main-7.png); + background-position: -1634px -212px; + width: 105px; + height: 105px; +} +.Mount_Head_FlyingPig-Golden { + background-image: url(spritesmith-main-7.png); + background-position: -1634px -318px; + width: 105px; + height: 105px; +} +.Mount_Head_FlyingPig-Peppermint { + background-image: url(spritesmith-main-7.png); + background-position: -1634px -424px; + width: 105px; + height: 105px; +} +.Mount_Head_FlyingPig-Red { + background-image: url(spritesmith-main-7.png); + background-position: -1634px -530px; + width: 105px; + height: 105px; +} +.Mount_Head_FlyingPig-Shade { background-image: url(spritesmith-main-7.png); background-position: -1634px -636px; width: 105px; height: 105px; } -.Mount_Head_Gryphon-CottonCandyBlue { +.Mount_Head_FlyingPig-Skeleton { background-image: url(spritesmith-main-7.png); background-position: -1634px -742px; width: 105px; height: 105px; } -.Mount_Head_Gryphon-CottonCandyPink { +.Mount_Head_FlyingPig-Spooky { background-image: url(spritesmith-main-7.png); background-position: -1634px -848px; width: 105px; height: 105px; } -.Mount_Head_Gryphon-Desert { +.Mount_Head_FlyingPig-White { background-image: url(spritesmith-main-7.png); background-position: -1634px -954px; width: 105px; height: 105px; } -.Mount_Head_Gryphon-Golden { +.Mount_Head_FlyingPig-Zombie { background-image: url(spritesmith-main-7.png); background-position: -1634px -1060px; width: 105px; height: 105px; } -.Mount_Head_Gryphon-Red { +.Mount_Head_Fox-Base { background-image: url(spritesmith-main-7.png); background-position: -1634px -1166px; width: 105px; height: 105px; } -.Mount_Head_Gryphon-RoyalPurple { +.Mount_Head_Fox-CottonCandyBlue { background-image: url(spritesmith-main-7.png); background-position: -1634px -1272px; width: 105px; height: 105px; } -.Mount_Head_Gryphon-Shade { +.Mount_Head_Fox-CottonCandyPink { background-image: url(spritesmith-main-7.png); background-position: -1634px -1378px; width: 105px; height: 105px; } -.Mount_Head_Gryphon-Skeleton { +.Mount_Head_Fox-Desert { background-image: url(spritesmith-main-7.png); background-position: 0px -1537px; width: 105px; height: 105px; } -.Mount_Head_Gryphon-White { +.Mount_Head_Fox-Golden { background-image: url(spritesmith-main-7.png); background-position: -106px -1537px; width: 105px; height: 105px; } -.Mount_Head_Gryphon-Zombie { +.Mount_Head_Fox-Peppermint { background-image: url(spritesmith-main-7.png); background-position: -212px -1537px; width: 105px; height: 105px; } -.Mount_Head_Hedgehog-Base { +.Mount_Head_Fox-Red { background-image: url(spritesmith-main-7.png); background-position: -318px -1537px; width: 105px; height: 105px; } -.Mount_Head_Hedgehog-CottonCandyBlue { +.Mount_Head_Fox-Shade { background-image: url(spritesmith-main-7.png); background-position: -424px -1537px; width: 105px; height: 105px; } -.Mount_Head_Hedgehog-CottonCandyPink { +.Mount_Head_Fox-Skeleton { background-image: url(spritesmith-main-7.png); background-position: -530px -1537px; width: 105px; height: 105px; } -.Mount_Head_Hedgehog-Desert { +.Mount_Head_Fox-Spooky { background-image: url(spritesmith-main-7.png); background-position: -636px -1537px; width: 105px; height: 105px; } -.Mount_Head_Hedgehog-Golden { +.Mount_Head_Fox-White { background-image: url(spritesmith-main-7.png); background-position: -742px -1537px; width: 105px; height: 105px; } -.Mount_Head_Hedgehog-Red { +.Mount_Head_Fox-Zombie { background-image: url(spritesmith-main-7.png); background-position: -848px -1537px; width: 105px; height: 105px; } -.Mount_Head_Hedgehog-Shade { +.Mount_Head_Frog-Base { background-image: url(spritesmith-main-7.png); - background-position: -954px -1537px; + background-position: -786px -345px; width: 105px; - height: 105px; + height: 114px; } -.Mount_Head_Hedgehog-Skeleton { +.Mount_Head_Frog-CottonCandyBlue { background-image: url(spritesmith-main-7.png); - background-position: -1060px -1537px; + background-position: -786px -460px; width: 105px; - height: 105px; + height: 114px; } -.Mount_Head_Hedgehog-White { +.Mount_Head_Frog-CottonCandyPink { background-image: url(spritesmith-main-7.png); - background-position: -1166px -1537px; + background-position: 0px -680px; width: 105px; - height: 105px; + height: 114px; } -.Mount_Head_Hedgehog-Zombie { +.Mount_Head_Frog-Desert { background-image: url(spritesmith-main-7.png); - background-position: -1272px -1537px; + background-position: -106px -680px; width: 105px; - height: 105px; + height: 114px; } -.Mount_Head_Horse-Base { +.Mount_Head_Frog-Golden { background-image: url(spritesmith-main-7.png); - background-position: -1378px -1537px; + background-position: -212px -680px; width: 105px; - height: 105px; + height: 114px; } -.Mount_Head_Horse-CottonCandyBlue { +.Mount_Head_Frog-Red { background-image: url(spritesmith-main-7.png); - background-position: -1484px -1537px; + background-position: -318px -680px; width: 105px; - height: 105px; + height: 114px; } -.Mount_Head_Horse-CottonCandyPink { +.Mount_Head_Frog-Shade { background-image: url(spritesmith-main-7.png); - background-position: -1590px -1537px; + background-position: -424px -680px; width: 105px; - height: 105px; + height: 114px; } -.Mount_Head_Horse-Desert { +.Mount_Head_Frog-Skeleton { background-image: url(spritesmith-main-7.png); - background-position: -1740px 0px; + background-position: -530px -680px; width: 105px; - height: 105px; + height: 114px; } -.Mount_Head_Horse-Golden { +.Mount_Head_Frog-White { background-image: url(spritesmith-main-7.png); - background-position: -1740px -106px; + background-position: -636px -680px; width: 105px; - height: 105px; + height: 114px; } -.Mount_Head_Horse-Red { +.Mount_Head_Frog-Zombie { background-image: url(spritesmith-main-7.png); - background-position: -1740px -212px; + background-position: -272px -544px; width: 105px; - height: 105px; + height: 114px; } -.Mount_Head_Horse-Shade { +.Mount_Head_Gryphon-Base { background-image: url(spritesmith-main-7.png); background-position: -1740px -318px; width: 105px; height: 105px; } -.Mount_Head_Horse-Skeleton { +.Mount_Head_Gryphon-CottonCandyBlue { background-image: url(spritesmith-main-7.png); background-position: -1740px -424px; width: 105px; diff --git a/common/dist/sprites/spritesmith-main-7.png b/common/dist/sprites/spritesmith-main-7.png index 003b4842fb..5957f4c8aa 100644 Binary files a/common/dist/sprites/spritesmith-main-7.png and b/common/dist/sprites/spritesmith-main-7.png differ diff --git a/common/dist/sprites/spritesmith-main-8.css b/common/dist/sprites/spritesmith-main-8.css index b634a33ae7..373d862b7f 100644 --- a/common/dist/sprites/spritesmith-main-8.css +++ b/common/dist/sprites/spritesmith-main-8.css @@ -1,903 +1,1077 @@ -.Mount_Head_Horse-White { - background-image: url(spritesmith-main-8.png); - background-position: -1060px -1316px; - width: 105px; - height: 105px; -} -.Mount_Head_Horse-Zombie { - background-image: url(spritesmith-main-8.png); - background-position: -212px -1210px; - width: 105px; - height: 105px; -} -.Mount_Head_JackOLantern-Base { - background-image: url(spritesmith-main-8.png); - background-position: -1528px -636px; - width: 90px; - height: 105px; -} -.Mount_Head_LionCub-Base { - background-image: url(spritesmith-main-8.png); - background-position: -1060px -1422px; - width: 105px; - height: 105px; -} -.Mount_Head_LionCub-CottonCandyBlue { - background-image: url(spritesmith-main-8.png); - background-position: -1166px -1422px; - width: 105px; - height: 105px; -} -.Mount_Head_LionCub-CottonCandyPink { - background-image: url(spritesmith-main-8.png); - background-position: -424px -1316px; - width: 105px; - height: 105px; -} -.Mount_Head_LionCub-Desert { - background-image: url(spritesmith-main-8.png); - background-position: -530px -1316px; - width: 105px; - height: 105px; -} -.Mount_Head_LionCub-Ethereal { - background-image: url(spritesmith-main-8.png); - background-position: -636px -1316px; - width: 105px; - height: 105px; -} -.Mount_Head_LionCub-Golden { - background-image: url(spritesmith-main-8.png); - background-position: -742px -1316px; - width: 105px; - height: 105px; -} -.Mount_Head_LionCub-Red { - background-image: url(spritesmith-main-8.png); - background-position: -848px -1316px; - width: 105px; - height: 105px; -} -.Mount_Head_LionCub-Shade { - background-image: url(spritesmith-main-8.png); - background-position: -954px -1316px; - width: 105px; - height: 105px; -} -.Mount_Head_LionCub-Skeleton { - background-image: url(spritesmith-main-8.png); - background-position: -242px -544px; - width: 105px; - height: 110px; -} -.Mount_Head_LionCub-Spooky { - background-image: url(spritesmith-main-8.png); - background-position: -1166px -1316px; - width: 105px; - height: 105px; -} -.Mount_Head_LionCub-White { - background-image: url(spritesmith-main-8.png); - background-position: -1272px -1316px; - width: 105px; - height: 105px; -} -.Mount_Head_LionCub-Zombie { - background-image: url(spritesmith-main-8.png); - background-position: -1422px 0px; - width: 105px; - height: 105px; -} -.Mount_Head_Mammoth-Base { - background-image: url(spritesmith-main-8.png); - background-position: -136px -544px; - width: 105px; - height: 123px; -} -.Mount_Head_MantisShrimp-Base { - background-image: url(spritesmith-main-8.png); - background-position: -348px -544px; - width: 108px; - height: 105px; -} -.Mount_Head_Octopus-Base { - background-image: url(spritesmith-main-8.png); - background-position: -1272px -1422px; - width: 105px; - height: 105px; -} -.Mount_Head_Octopus-CottonCandyBlue { - background-image: url(spritesmith-main-8.png); - background-position: -1378px -1422px; - width: 105px; - height: 105px; -} -.Mount_Head_Octopus-CottonCandyPink { - background-image: url(spritesmith-main-8.png); - background-position: -1528px 0px; - width: 105px; - height: 105px; -} -.Mount_Head_Octopus-Desert { - background-image: url(spritesmith-main-8.png); - background-position: -1528px -106px; - width: 105px; - height: 105px; -} -.Mount_Head_Octopus-Golden { - background-image: url(spritesmith-main-8.png); - background-position: -1528px -212px; - width: 105px; - height: 105px; -} -.Mount_Head_Octopus-Red { - background-image: url(spritesmith-main-8.png); - background-position: -1528px -318px; - width: 105px; - height: 105px; -} -.Mount_Head_Octopus-Shade { - background-image: url(spritesmith-main-8.png); - background-position: -1528px -424px; - width: 105px; - height: 105px; -} -.Mount_Head_Octopus-Skeleton { - background-image: url(spritesmith-main-8.png); - background-position: -1528px -530px; - width: 105px; - height: 105px; -} -.Mount_Head_Octopus-White { - background-image: url(spritesmith-main-8.png); - background-position: -563px -544px; - width: 105px; - height: 105px; -} -.Mount_Head_Octopus-Zombie { - background-image: url(spritesmith-main-8.png); - background-position: -680px 0px; - width: 105px; - height: 105px; -} -.Mount_Head_Orca-Base { - background-image: url(spritesmith-main-8.png); - background-position: -680px -106px; - width: 105px; - height: 105px; -} -.Mount_Head_Owl-Base { - background-image: url(spritesmith-main-8.png); - background-position: -680px -212px; - width: 105px; - height: 105px; -} -.Mount_Head_Owl-CottonCandyBlue { - background-image: url(spritesmith-main-8.png); - background-position: -680px -318px; - width: 105px; - height: 105px; -} -.Mount_Head_Owl-CottonCandyPink { +.Mount_Head_Gryphon-CottonCandyPink { background-image: url(spritesmith-main-8.png); background-position: -680px -424px; width: 105px; height: 105px; } -.Mount_Head_Owl-Desert { - background-image: url(spritesmith-main-8.png); - background-position: -680px -530px; - width: 105px; - height: 105px; -} -.Mount_Head_Owl-Golden { - background-image: url(spritesmith-main-8.png); - background-position: 0px -680px; - width: 105px; - height: 105px; -} -.Mount_Head_Owl-Red { - background-image: url(spritesmith-main-8.png); - background-position: -106px -680px; - width: 105px; - height: 105px; -} -.Mount_Head_Owl-Shade { - background-image: url(spritesmith-main-8.png); - background-position: -212px -680px; - width: 105px; - height: 105px; -} -.Mount_Head_Owl-Skeleton { - background-image: url(spritesmith-main-8.png); - background-position: -318px -680px; - width: 105px; - height: 105px; -} -.Mount_Head_Owl-White { - background-image: url(spritesmith-main-8.png); - background-position: -424px -680px; - width: 105px; - height: 105px; -} -.Mount_Head_Owl-Zombie { - background-image: url(spritesmith-main-8.png); - background-position: -530px -680px; - width: 105px; - height: 105px; -} -.Mount_Head_PandaCub-Base { - background-image: url(spritesmith-main-8.png); - background-position: -636px -680px; - width: 105px; - height: 105px; -} -.Mount_Head_PandaCub-CottonCandyBlue { - background-image: url(spritesmith-main-8.png); - background-position: -786px 0px; - width: 105px; - height: 105px; -} -.Mount_Head_PandaCub-CottonCandyPink { - background-image: url(spritesmith-main-8.png); - background-position: -786px -106px; - width: 105px; - height: 105px; -} -.Mount_Head_PandaCub-Desert { - background-image: url(spritesmith-main-8.png); - background-position: -786px -212px; - width: 105px; - height: 105px; -} -.Mount_Head_PandaCub-Golden { - background-image: url(spritesmith-main-8.png); - background-position: -786px -318px; - width: 105px; - height: 105px; -} -.Mount_Head_PandaCub-Red { - background-image: url(spritesmith-main-8.png); - background-position: -786px -424px; - width: 105px; - height: 105px; -} -.Mount_Head_PandaCub-Shade { - background-image: url(spritesmith-main-8.png); - background-position: -786px -530px; - width: 105px; - height: 105px; -} -.Mount_Head_PandaCub-Skeleton { - background-image: url(spritesmith-main-8.png); - background-position: -786px -636px; - width: 105px; - height: 105px; -} -.Mount_Head_PandaCub-Spooky { - background-image: url(spritesmith-main-8.png); - background-position: 0px -786px; - width: 105px; - height: 105px; -} -.Mount_Head_PandaCub-White { - background-image: url(spritesmith-main-8.png); - background-position: -106px -786px; - width: 105px; - height: 105px; -} -.Mount_Head_PandaCub-Zombie { - background-image: url(spritesmith-main-8.png); - background-position: -212px -786px; - width: 105px; - height: 105px; -} -.Mount_Head_Parrot-Base { - background-image: url(spritesmith-main-8.png); - background-position: -318px -786px; - width: 105px; - height: 105px; -} -.Mount_Head_Parrot-CottonCandyBlue { - background-image: url(spritesmith-main-8.png); - background-position: -424px -786px; - width: 105px; - height: 105px; -} -.Mount_Head_Parrot-CottonCandyPink { - background-image: url(spritesmith-main-8.png); - background-position: -530px -786px; - width: 105px; - height: 105px; -} -.Mount_Head_Parrot-Desert { - background-image: url(spritesmith-main-8.png); - background-position: -636px -786px; - width: 105px; - height: 105px; -} -.Mount_Head_Parrot-Golden { - background-image: url(spritesmith-main-8.png); - background-position: -742px -786px; - width: 105px; - height: 105px; -} -.Mount_Head_Parrot-Red { - background-image: url(spritesmith-main-8.png); - background-position: -892px 0px; - width: 105px; - height: 105px; -} -.Mount_Head_Parrot-Shade { - background-image: url(spritesmith-main-8.png); - background-position: -892px -106px; - width: 105px; - height: 105px; -} -.Mount_Head_Parrot-Skeleton { - background-image: url(spritesmith-main-8.png); - background-position: -892px -212px; - width: 105px; - height: 105px; -} -.Mount_Head_Parrot-White { - background-image: url(spritesmith-main-8.png); - background-position: -892px -318px; - width: 105px; - height: 105px; -} -.Mount_Head_Parrot-Zombie { - background-image: url(spritesmith-main-8.png); - background-position: -892px -424px; - width: 105px; - height: 105px; -} -.Mount_Head_Penguin-Base { - background-image: url(spritesmith-main-8.png); - background-position: -892px -530px; - width: 105px; - height: 105px; -} -.Mount_Head_Penguin-CottonCandyBlue { - background-image: url(spritesmith-main-8.png); - background-position: -892px -636px; - width: 105px; - height: 105px; -} -.Mount_Head_Penguin-CottonCandyPink { - background-image: url(spritesmith-main-8.png); - background-position: -892px -742px; - width: 105px; - height: 105px; -} -.Mount_Head_Penguin-Desert { - background-image: url(spritesmith-main-8.png); - background-position: 0px -892px; - width: 105px; - height: 105px; -} -.Mount_Head_Penguin-Golden { - background-image: url(spritesmith-main-8.png); - background-position: -106px -892px; - width: 105px; - height: 105px; -} -.Mount_Head_Penguin-Red { - background-image: url(spritesmith-main-8.png); - background-position: -212px -892px; - width: 105px; - height: 105px; -} -.Mount_Head_Penguin-Shade { - background-image: url(spritesmith-main-8.png); - background-position: -318px -892px; - width: 105px; - height: 105px; -} -.Mount_Head_Penguin-Skeleton { - background-image: url(spritesmith-main-8.png); - background-position: -424px -892px; - width: 105px; - height: 105px; -} -.Mount_Head_Penguin-White { - background-image: url(spritesmith-main-8.png); - background-position: -530px -892px; - width: 105px; - height: 105px; -} -.Mount_Head_Penguin-Zombie { - background-image: url(spritesmith-main-8.png); - background-position: -636px -892px; - width: 105px; - height: 105px; -} -.Mount_Head_Phoenix-Base { - background-image: url(spritesmith-main-8.png); - background-position: -742px -892px; - width: 105px; - height: 105px; -} -.Mount_Head_Rat-Base { - background-image: url(spritesmith-main-8.png); - background-position: -848px -892px; - width: 105px; - height: 105px; -} -.Mount_Head_Rat-CottonCandyBlue { - background-image: url(spritesmith-main-8.png); - background-position: -998px 0px; - width: 105px; - height: 105px; -} -.Mount_Head_Rat-CottonCandyPink { - background-image: url(spritesmith-main-8.png); - background-position: -998px -106px; - width: 105px; - height: 105px; -} -.Mount_Head_Rat-Desert { - background-image: url(spritesmith-main-8.png); - background-position: -998px -212px; - width: 105px; - height: 105px; -} -.Mount_Head_Rat-Golden { - background-image: url(spritesmith-main-8.png); - background-position: -998px -318px; - width: 105px; - height: 105px; -} -.Mount_Head_Rat-Red { - background-image: url(spritesmith-main-8.png); - background-position: -998px -424px; - width: 105px; - height: 105px; -} -.Mount_Head_Rat-Shade { - background-image: url(spritesmith-main-8.png); - background-position: -998px -530px; - width: 105px; - height: 105px; -} -.Mount_Head_Rat-Skeleton { - background-image: url(spritesmith-main-8.png); - background-position: -998px -636px; - width: 105px; - height: 105px; -} -.Mount_Head_Rat-White { - background-image: url(spritesmith-main-8.png); - background-position: -998px -742px; - width: 105px; - height: 105px; -} -.Mount_Head_Rat-Zombie { - background-image: url(spritesmith-main-8.png); - background-position: -998px -848px; - width: 105px; - height: 105px; -} -.Mount_Head_Rock-Base { - background-image: url(spritesmith-main-8.png); - background-position: 0px -998px; - width: 105px; - height: 105px; -} -.Mount_Head_Rock-CottonCandyBlue { - background-image: url(spritesmith-main-8.png); - background-position: -106px -998px; - width: 105px; - height: 105px; -} -.Mount_Head_Rock-CottonCandyPink { - background-image: url(spritesmith-main-8.png); - background-position: -212px -998px; - width: 105px; - height: 105px; -} -.Mount_Head_Rock-Desert { - background-image: url(spritesmith-main-8.png); - background-position: -318px -998px; - width: 105px; - height: 105px; -} -.Mount_Head_Rock-Golden { - background-image: url(spritesmith-main-8.png); - background-position: -424px -998px; - width: 105px; - height: 105px; -} -.Mount_Head_Rock-Red { - background-image: url(spritesmith-main-8.png); - background-position: -530px -998px; - width: 105px; - height: 105px; -} -.Mount_Head_Rock-Shade { - background-image: url(spritesmith-main-8.png); - background-position: -636px -998px; - width: 105px; - height: 105px; -} -.Mount_Head_Rock-Skeleton { - background-image: url(spritesmith-main-8.png); - background-position: -742px -998px; - width: 105px; - height: 105px; -} -.Mount_Head_Rock-White { - background-image: url(spritesmith-main-8.png); - background-position: -848px -998px; - width: 105px; - height: 105px; -} -.Mount_Head_Rock-Zombie { - background-image: url(spritesmith-main-8.png); - background-position: -954px -998px; - width: 105px; - height: 105px; -} -.Mount_Head_Rooster-Base { - background-image: url(spritesmith-main-8.png); - background-position: -1104px 0px; - width: 105px; - height: 105px; -} -.Mount_Head_Rooster-CottonCandyBlue { - background-image: url(spritesmith-main-8.png); - background-position: -1104px -106px; - width: 105px; - height: 105px; -} -.Mount_Head_Rooster-CottonCandyPink { - background-image: url(spritesmith-main-8.png); - background-position: -1104px -212px; - width: 105px; - height: 105px; -} -.Mount_Head_Rooster-Desert { - background-image: url(spritesmith-main-8.png); - background-position: -1104px -318px; - width: 105px; - height: 105px; -} -.Mount_Head_Rooster-Golden { - background-image: url(spritesmith-main-8.png); - background-position: -1104px -424px; - width: 105px; - height: 105px; -} -.Mount_Head_Rooster-Red { - background-image: url(spritesmith-main-8.png); - background-position: -1104px -530px; - width: 105px; - height: 105px; -} -.Mount_Head_Rooster-Shade { - background-image: url(spritesmith-main-8.png); - background-position: -1104px -636px; - width: 105px; - height: 105px; -} -.Mount_Head_Rooster-Skeleton { - background-image: url(spritesmith-main-8.png); - background-position: -1104px -742px; - width: 105px; - height: 105px; -} -.Mount_Head_Rooster-White { - background-image: url(spritesmith-main-8.png); - background-position: -1104px -848px; - width: 105px; - height: 105px; -} -.Mount_Head_Rooster-Zombie { - background-image: url(spritesmith-main-8.png); - background-position: -1104px -954px; - width: 105px; - height: 105px; -} -.Mount_Head_Seahorse-Base { - background-image: url(spritesmith-main-8.png); - background-position: 0px -1104px; - width: 105px; - height: 105px; -} -.Mount_Head_Seahorse-CottonCandyBlue { - background-image: url(spritesmith-main-8.png); - background-position: -106px -1104px; - width: 105px; - height: 105px; -} -.Mount_Head_Seahorse-CottonCandyPink { - background-image: url(spritesmith-main-8.png); - background-position: -212px -1104px; - width: 105px; - height: 105px; -} -.Mount_Head_Seahorse-Desert { - background-image: url(spritesmith-main-8.png); - background-position: -318px -1104px; - width: 105px; - height: 105px; -} -.Mount_Head_Seahorse-Golden { - background-image: url(spritesmith-main-8.png); - background-position: -424px -1104px; - width: 105px; - height: 105px; -} -.Mount_Head_Seahorse-Red { - background-image: url(spritesmith-main-8.png); - background-position: -530px -1104px; - width: 105px; - height: 105px; -} -.Mount_Head_Seahorse-Shade { - background-image: url(spritesmith-main-8.png); - background-position: -636px -1104px; - width: 105px; - height: 105px; -} -.Mount_Head_Seahorse-Skeleton { - background-image: url(spritesmith-main-8.png); - background-position: -742px -1104px; - width: 105px; - height: 105px; -} -.Mount_Head_Seahorse-White { - background-image: url(spritesmith-main-8.png); - background-position: -848px -1104px; - width: 105px; - height: 105px; -} -.Mount_Head_Seahorse-Zombie { - background-image: url(spritesmith-main-8.png); - background-position: -954px -1104px; - width: 105px; - height: 105px; -} -.Mount_Head_Sheep-Base { - background-image: url(spritesmith-main-8.png); - background-position: -1060px -1104px; - width: 105px; - height: 105px; -} -.Mount_Head_Sheep-CottonCandyBlue { - background-image: url(spritesmith-main-8.png); - background-position: -1210px 0px; - width: 105px; - height: 105px; -} -.Mount_Head_Sheep-CottonCandyPink { - background-image: url(spritesmith-main-8.png); - background-position: -1210px -106px; - width: 105px; - height: 105px; -} -.Mount_Head_Sheep-Desert { - background-image: url(spritesmith-main-8.png); - background-position: -1210px -212px; - width: 105px; - height: 105px; -} -.Mount_Head_Sheep-Golden { - background-image: url(spritesmith-main-8.png); - background-position: -1210px -318px; - width: 105px; - height: 105px; -} -.Mount_Head_Sheep-Red { - background-image: url(spritesmith-main-8.png); - background-position: -1210px -424px; - width: 105px; - height: 105px; -} -.Mount_Head_Sheep-Shade { - background-image: url(spritesmith-main-8.png); - background-position: -1210px -530px; - width: 105px; - height: 105px; -} -.Mount_Head_Sheep-Skeleton { - background-image: url(spritesmith-main-8.png); - background-position: -1210px -636px; - width: 105px; - height: 105px; -} -.Mount_Head_Sheep-White { - background-image: url(spritesmith-main-8.png); - background-position: -1210px -742px; - width: 105px; - height: 105px; -} -.Mount_Head_Sheep-Zombie { - background-image: url(spritesmith-main-8.png); - background-position: -1210px -848px; - width: 105px; - height: 105px; -} -.Mount_Head_Slime-Base { +.Mount_Head_Gryphon-Desert { background-image: url(spritesmith-main-8.png); background-position: -1210px -954px; width: 105px; height: 105px; } -.Mount_Head_Slime-CottonCandyBlue { +.Mount_Head_Gryphon-Golden { + background-image: url(spritesmith-main-8.png); + background-position: -786px -106px; + width: 105px; + height: 105px; +} +.Mount_Head_Gryphon-Red { + background-image: url(spritesmith-main-8.png); + background-position: -786px -530px; + width: 105px; + height: 105px; +} +.Mount_Head_Gryphon-RoyalPurple { + background-image: url(spritesmith-main-8.png); + background-position: -786px -636px; + width: 105px; + height: 105px; +} +.Mount_Head_Gryphon-Shade { + background-image: url(spritesmith-main-8.png); + background-position: -848px -1422px; + width: 105px; + height: 105px; +} +.Mount_Head_Gryphon-Skeleton { + background-image: url(spritesmith-main-8.png); + background-position: -954px -1422px; + width: 105px; + height: 105px; +} +.Mount_Head_Gryphon-White { + background-image: url(spritesmith-main-8.png); + background-position: -1060px -1422px; + width: 105px; + height: 105px; +} +.Mount_Head_Gryphon-Zombie { + background-image: url(spritesmith-main-8.png); + background-position: -1166px -1422px; + width: 105px; + height: 105px; +} +.Mount_Head_Hedgehog-Base { + background-image: url(spritesmith-main-8.png); + background-position: -1272px -1422px; + width: 105px; + height: 105px; +} +.Mount_Head_Hedgehog-CottonCandyBlue { + background-image: url(spritesmith-main-8.png); + background-position: -1378px -1422px; + width: 105px; + height: 105px; +} +.Mount_Head_Hedgehog-CottonCandyPink { + background-image: url(spritesmith-main-8.png); + background-position: -1528px 0px; + width: 105px; + height: 105px; +} +.Mount_Head_Hedgehog-Desert { + background-image: url(spritesmith-main-8.png); + background-position: -1528px -106px; + width: 105px; + height: 105px; +} +.Mount_Head_Hedgehog-Golden { + background-image: url(spritesmith-main-8.png); + background-position: -1528px -212px; + width: 105px; + height: 105px; +} +.Mount_Head_Hedgehog-Red { + background-image: url(spritesmith-main-8.png); + background-position: -1528px -318px; + width: 105px; + height: 105px; +} +.Mount_Head_Hedgehog-Shade { + background-image: url(spritesmith-main-8.png); + background-position: -1378px -1528px; + width: 105px; + height: 105px; +} +.Mount_Head_Hedgehog-Skeleton { + background-image: url(spritesmith-main-8.png); + background-position: -1484px -1528px; + width: 105px; + height: 105px; +} +.Mount_Head_Hedgehog-White { + background-image: url(spritesmith-main-8.png); + background-position: -1634px 0px; + width: 105px; + height: 105px; +} +.Mount_Head_Hedgehog-Zombie { + background-image: url(spritesmith-main-8.png); + background-position: -1634px -106px; + width: 105px; + height: 105px; +} +.Mount_Head_Horse-Base { + background-image: url(spritesmith-main-8.png); + background-position: -1634px -212px; + width: 105px; + height: 105px; +} +.Mount_Head_Horse-CottonCandyBlue { + background-image: url(spritesmith-main-8.png); + background-position: -1634px -318px; + width: 105px; + height: 105px; +} +.Mount_Head_Horse-CottonCandyPink { + background-image: url(spritesmith-main-8.png); + background-position: -1634px -424px; + width: 105px; + height: 105px; +} +.Mount_Head_Horse-Desert { + background-image: url(spritesmith-main-8.png); + background-position: -1634px -530px; + width: 105px; + height: 105px; +} +.Mount_Head_Horse-Golden { + background-image: url(spritesmith-main-8.png); + background-position: -1634px -636px; + width: 105px; + height: 105px; +} +.Mount_Head_Horse-Red { + background-image: url(spritesmith-main-8.png); + background-position: -1634px -742px; + width: 105px; + height: 105px; +} +.Mount_Head_Horse-Shade { + background-image: url(spritesmith-main-8.png); + background-position: -1634px -848px; + width: 105px; + height: 105px; +} +.Mount_Head_Horse-Skeleton { + background-image: url(spritesmith-main-8.png); + background-position: -680px -106px; + width: 105px; + height: 105px; +} +.Mount_Head_Horse-White { + background-image: url(spritesmith-main-8.png); + background-position: -680px -212px; + width: 105px; + height: 105px; +} +.Mount_Head_Horse-Zombie { + background-image: url(spritesmith-main-8.png); + background-position: -680px -318px; + width: 105px; + height: 105px; +} +.Mount_Head_JackOLantern-Base { + background-image: url(spritesmith-main-8.png); + background-position: -1634px -954px; + width: 90px; + height: 105px; +} +.Mount_Head_LionCub-Base { + background-image: url(spritesmith-main-8.png); + background-position: -680px -530px; + width: 105px; + height: 105px; +} +.Mount_Head_LionCub-CottonCandyBlue { + background-image: url(spritesmith-main-8.png); + background-position: 0px -680px; + width: 105px; + height: 105px; +} +.Mount_Head_LionCub-CottonCandyPink { + background-image: url(spritesmith-main-8.png); + background-position: -106px -680px; + width: 105px; + height: 105px; +} +.Mount_Head_LionCub-Desert { + background-image: url(spritesmith-main-8.png); + background-position: -212px -680px; + width: 105px; + height: 105px; +} +.Mount_Head_LionCub-Ethereal { + background-image: url(spritesmith-main-8.png); + background-position: -318px -680px; + width: 105px; + height: 105px; +} +.Mount_Head_LionCub-Golden { + background-image: url(spritesmith-main-8.png); + background-position: -424px -680px; + width: 105px; + height: 105px; +} +.Mount_Head_LionCub-Peppermint { + background-image: url(spritesmith-main-8.png); + background-position: -530px -680px; + width: 105px; + height: 105px; +} +.Mount_Head_LionCub-Red { + background-image: url(spritesmith-main-8.png); + background-position: -636px -680px; + width: 105px; + height: 105px; +} +.Mount_Head_LionCub-Shade { + background-image: url(spritesmith-main-8.png); + background-position: -786px 0px; + width: 105px; + height: 105px; +} +.Mount_Head_LionCub-Skeleton { + background-image: url(spritesmith-main-8.png); + background-position: -378px -544px; + width: 105px; + height: 110px; +} +.Mount_Head_LionCub-Spooky { + background-image: url(spritesmith-main-8.png); + background-position: -786px -212px; + width: 105px; + height: 105px; +} +.Mount_Head_LionCub-White { + background-image: url(spritesmith-main-8.png); + background-position: -786px -318px; + width: 105px; + height: 105px; +} +.Mount_Head_LionCub-Zombie { + background-image: url(spritesmith-main-8.png); + background-position: -786px -424px; + width: 105px; + height: 105px; +} +.Mount_Head_Mammoth-Base { + background-image: url(spritesmith-main-8.png); + background-position: -272px -544px; + width: 105px; + height: 123px; +} +.Mount_Head_MantisShrimp-Base { + background-image: url(spritesmith-main-8.png); + background-position: -484px -544px; + width: 108px; + height: 105px; +} +.Mount_Head_Octopus-Base { + background-image: url(spritesmith-main-8.png); + background-position: 0px -786px; + width: 105px; + height: 105px; +} +.Mount_Head_Octopus-CottonCandyBlue { + background-image: url(spritesmith-main-8.png); + background-position: -106px -786px; + width: 105px; + height: 105px; +} +.Mount_Head_Octopus-CottonCandyPink { + background-image: url(spritesmith-main-8.png); + background-position: -212px -786px; + width: 105px; + height: 105px; +} +.Mount_Head_Octopus-Desert { + background-image: url(spritesmith-main-8.png); + background-position: -318px -786px; + width: 105px; + height: 105px; +} +.Mount_Head_Octopus-Golden { + background-image: url(spritesmith-main-8.png); + background-position: -424px -786px; + width: 105px; + height: 105px; +} +.Mount_Head_Octopus-Red { + background-image: url(spritesmith-main-8.png); + background-position: -530px -786px; + width: 105px; + height: 105px; +} +.Mount_Head_Octopus-Shade { + background-image: url(spritesmith-main-8.png); + background-position: -636px -786px; + width: 105px; + height: 105px; +} +.Mount_Head_Octopus-Skeleton { + background-image: url(spritesmith-main-8.png); + background-position: -742px -786px; + width: 105px; + height: 105px; +} +.Mount_Head_Octopus-White { + background-image: url(spritesmith-main-8.png); + background-position: -892px 0px; + width: 105px; + height: 105px; +} +.Mount_Head_Octopus-Zombie { + background-image: url(spritesmith-main-8.png); + background-position: -892px -106px; + width: 105px; + height: 105px; +} +.Mount_Head_Orca-Base { + background-image: url(spritesmith-main-8.png); + background-position: -892px -212px; + width: 105px; + height: 105px; +} +.Mount_Head_Owl-Base { + background-image: url(spritesmith-main-8.png); + background-position: -892px -318px; + width: 105px; + height: 105px; +} +.Mount_Head_Owl-CottonCandyBlue { + background-image: url(spritesmith-main-8.png); + background-position: -892px -424px; + width: 105px; + height: 105px; +} +.Mount_Head_Owl-CottonCandyPink { + background-image: url(spritesmith-main-8.png); + background-position: -892px -530px; + width: 105px; + height: 105px; +} +.Mount_Head_Owl-Desert { + background-image: url(spritesmith-main-8.png); + background-position: -892px -636px; + width: 105px; + height: 105px; +} +.Mount_Head_Owl-Golden { + background-image: url(spritesmith-main-8.png); + background-position: -892px -742px; + width: 105px; + height: 105px; +} +.Mount_Head_Owl-Red { + background-image: url(spritesmith-main-8.png); + background-position: 0px -892px; + width: 105px; + height: 105px; +} +.Mount_Head_Owl-Shade { + background-image: url(spritesmith-main-8.png); + background-position: -106px -892px; + width: 105px; + height: 105px; +} +.Mount_Head_Owl-Skeleton { + background-image: url(spritesmith-main-8.png); + background-position: -212px -892px; + width: 105px; + height: 105px; +} +.Mount_Head_Owl-White { + background-image: url(spritesmith-main-8.png); + background-position: -318px -892px; + width: 105px; + height: 105px; +} +.Mount_Head_Owl-Zombie { + background-image: url(spritesmith-main-8.png); + background-position: -424px -892px; + width: 105px; + height: 105px; +} +.Mount_Head_PandaCub-Base { + background-image: url(spritesmith-main-8.png); + background-position: -530px -892px; + width: 105px; + height: 105px; +} +.Mount_Head_PandaCub-CottonCandyBlue { + background-image: url(spritesmith-main-8.png); + background-position: -636px -892px; + width: 105px; + height: 105px; +} +.Mount_Head_PandaCub-CottonCandyPink { + background-image: url(spritesmith-main-8.png); + background-position: -742px -892px; + width: 105px; + height: 105px; +} +.Mount_Head_PandaCub-Desert { + background-image: url(spritesmith-main-8.png); + background-position: -848px -892px; + width: 105px; + height: 105px; +} +.Mount_Head_PandaCub-Golden { + background-image: url(spritesmith-main-8.png); + background-position: -998px 0px; + width: 105px; + height: 105px; +} +.Mount_Head_PandaCub-Peppermint { + background-image: url(spritesmith-main-8.png); + background-position: -998px -106px; + width: 105px; + height: 105px; +} +.Mount_Head_PandaCub-Red { + background-image: url(spritesmith-main-8.png); + background-position: -998px -212px; + width: 105px; + height: 105px; +} +.Mount_Head_PandaCub-Shade { + background-image: url(spritesmith-main-8.png); + background-position: -998px -318px; + width: 105px; + height: 105px; +} +.Mount_Head_PandaCub-Skeleton { + background-image: url(spritesmith-main-8.png); + background-position: -998px -424px; + width: 105px; + height: 105px; +} +.Mount_Head_PandaCub-Spooky { + background-image: url(spritesmith-main-8.png); + background-position: -998px -530px; + width: 105px; + height: 105px; +} +.Mount_Head_PandaCub-White { + background-image: url(spritesmith-main-8.png); + background-position: -998px -636px; + width: 105px; + height: 105px; +} +.Mount_Head_PandaCub-Zombie { + background-image: url(spritesmith-main-8.png); + background-position: -998px -742px; + width: 105px; + height: 105px; +} +.Mount_Head_Parrot-Base { + background-image: url(spritesmith-main-8.png); + background-position: -998px -848px; + width: 105px; + height: 105px; +} +.Mount_Head_Parrot-CottonCandyBlue { + background-image: url(spritesmith-main-8.png); + background-position: 0px -998px; + width: 105px; + height: 105px; +} +.Mount_Head_Parrot-CottonCandyPink { + background-image: url(spritesmith-main-8.png); + background-position: -106px -998px; + width: 105px; + height: 105px; +} +.Mount_Head_Parrot-Desert { + background-image: url(spritesmith-main-8.png); + background-position: -212px -998px; + width: 105px; + height: 105px; +} +.Mount_Head_Parrot-Golden { + background-image: url(spritesmith-main-8.png); + background-position: -318px -998px; + width: 105px; + height: 105px; +} +.Mount_Head_Parrot-Red { + background-image: url(spritesmith-main-8.png); + background-position: -424px -998px; + width: 105px; + height: 105px; +} +.Mount_Head_Parrot-Shade { + background-image: url(spritesmith-main-8.png); + background-position: -530px -998px; + width: 105px; + height: 105px; +} +.Mount_Head_Parrot-Skeleton { + background-image: url(spritesmith-main-8.png); + background-position: -636px -998px; + width: 105px; + height: 105px; +} +.Mount_Head_Parrot-White { + background-image: url(spritesmith-main-8.png); + background-position: -742px -998px; + width: 105px; + height: 105px; +} +.Mount_Head_Parrot-Zombie { + background-image: url(spritesmith-main-8.png); + background-position: -848px -998px; + width: 105px; + height: 105px; +} +.Mount_Head_Penguin-Base { + background-image: url(spritesmith-main-8.png); + background-position: -954px -998px; + width: 105px; + height: 105px; +} +.Mount_Head_Penguin-CottonCandyBlue { + background-image: url(spritesmith-main-8.png); + background-position: -1104px 0px; + width: 105px; + height: 105px; +} +.Mount_Head_Penguin-CottonCandyPink { + background-image: url(spritesmith-main-8.png); + background-position: -1104px -106px; + width: 105px; + height: 105px; +} +.Mount_Head_Penguin-Desert { + background-image: url(spritesmith-main-8.png); + background-position: -1104px -212px; + width: 105px; + height: 105px; +} +.Mount_Head_Penguin-Golden { + background-image: url(spritesmith-main-8.png); + background-position: -1104px -318px; + width: 105px; + height: 105px; +} +.Mount_Head_Penguin-Red { + background-image: url(spritesmith-main-8.png); + background-position: -1104px -424px; + width: 105px; + height: 105px; +} +.Mount_Head_Penguin-Shade { + background-image: url(spritesmith-main-8.png); + background-position: -1104px -530px; + width: 105px; + height: 105px; +} +.Mount_Head_Penguin-Skeleton { + background-image: url(spritesmith-main-8.png); + background-position: -1104px -636px; + width: 105px; + height: 105px; +} +.Mount_Head_Penguin-White { + background-image: url(spritesmith-main-8.png); + background-position: -1104px -742px; + width: 105px; + height: 105px; +} +.Mount_Head_Penguin-Zombie { + background-image: url(spritesmith-main-8.png); + background-position: -1104px -848px; + width: 105px; + height: 105px; +} +.Mount_Head_Phoenix-Base { + background-image: url(spritesmith-main-8.png); + background-position: -1104px -954px; + width: 105px; + height: 105px; +} +.Mount_Head_Rat-Base { + background-image: url(spritesmith-main-8.png); + background-position: 0px -1104px; + width: 105px; + height: 105px; +} +.Mount_Head_Rat-CottonCandyBlue { + background-image: url(spritesmith-main-8.png); + background-position: -106px -1104px; + width: 105px; + height: 105px; +} +.Mount_Head_Rat-CottonCandyPink { + background-image: url(spritesmith-main-8.png); + background-position: -212px -1104px; + width: 105px; + height: 105px; +} +.Mount_Head_Rat-Desert { + background-image: url(spritesmith-main-8.png); + background-position: -318px -1104px; + width: 105px; + height: 105px; +} +.Mount_Head_Rat-Golden { + background-image: url(spritesmith-main-8.png); + background-position: -424px -1104px; + width: 105px; + height: 105px; +} +.Mount_Head_Rat-Red { + background-image: url(spritesmith-main-8.png); + background-position: -530px -1104px; + width: 105px; + height: 105px; +} +.Mount_Head_Rat-Shade { + background-image: url(spritesmith-main-8.png); + background-position: -636px -1104px; + width: 105px; + height: 105px; +} +.Mount_Head_Rat-Skeleton { + background-image: url(spritesmith-main-8.png); + background-position: -742px -1104px; + width: 105px; + height: 105px; +} +.Mount_Head_Rat-White { + background-image: url(spritesmith-main-8.png); + background-position: -848px -1104px; + width: 105px; + height: 105px; +} +.Mount_Head_Rat-Zombie { + background-image: url(spritesmith-main-8.png); + background-position: -954px -1104px; + width: 105px; + height: 105px; +} +.Mount_Head_Rock-Base { + background-image: url(spritesmith-main-8.png); + background-position: -1060px -1104px; + width: 105px; + height: 105px; +} +.Mount_Head_Rock-CottonCandyBlue { + background-image: url(spritesmith-main-8.png); + background-position: -1210px 0px; + width: 105px; + height: 105px; +} +.Mount_Head_Rock-CottonCandyPink { + background-image: url(spritesmith-main-8.png); + background-position: -1210px -106px; + width: 105px; + height: 105px; +} +.Mount_Head_Rock-Desert { + background-image: url(spritesmith-main-8.png); + background-position: -1210px -212px; + width: 105px; + height: 105px; +} +.Mount_Head_Rock-Golden { + background-image: url(spritesmith-main-8.png); + background-position: -1210px -318px; + width: 105px; + height: 105px; +} +.Mount_Head_Rock-Red { + background-image: url(spritesmith-main-8.png); + background-position: -1210px -424px; + width: 105px; + height: 105px; +} +.Mount_Head_Rock-Shade { + background-image: url(spritesmith-main-8.png); + background-position: -1210px -530px; + width: 105px; + height: 105px; +} +.Mount_Head_Rock-Skeleton { + background-image: url(spritesmith-main-8.png); + background-position: -1210px -636px; + width: 105px; + height: 105px; +} +.Mount_Head_Rock-White { + background-image: url(spritesmith-main-8.png); + background-position: -1210px -742px; + width: 105px; + height: 105px; +} +.Mount_Head_Rock-Zombie { + background-image: url(spritesmith-main-8.png); + background-position: -1210px -848px; + width: 105px; + height: 105px; +} +.Mount_Head_Rooster-Base { + background-image: url(spritesmith-main-8.png); + background-position: -680px 0px; + width: 105px; + height: 105px; +} +.Mount_Head_Rooster-CottonCandyBlue { background-image: url(spritesmith-main-8.png); background-position: -1210px -1060px; width: 105px; height: 105px; } -.Mount_Head_Slime-CottonCandyPink { +.Mount_Head_Rooster-CottonCandyPink { background-image: url(spritesmith-main-8.png); background-position: 0px -1210px; width: 105px; height: 105px; } -.Mount_Head_Slime-Desert { +.Mount_Head_Rooster-Desert { background-image: url(spritesmith-main-8.png); background-position: -106px -1210px; width: 105px; height: 105px; } -.Mount_Head_Slime-Golden { +.Mount_Head_Rooster-Golden { background-image: url(spritesmith-main-8.png); - background-position: -457px -544px; + background-position: -212px -1210px; width: 105px; height: 105px; } -.Mount_Head_Slime-Red { +.Mount_Head_Rooster-Red { background-image: url(spritesmith-main-8.png); background-position: -318px -1210px; width: 105px; height: 105px; } -.Mount_Head_Slime-Shade { +.Mount_Head_Rooster-Shade { background-image: url(spritesmith-main-8.png); background-position: -424px -1210px; width: 105px; height: 105px; } -.Mount_Head_Slime-Skeleton { +.Mount_Head_Rooster-Skeleton { background-image: url(spritesmith-main-8.png); background-position: -530px -1210px; width: 105px; height: 105px; } -.Mount_Head_Slime-White { +.Mount_Head_Rooster-White { background-image: url(spritesmith-main-8.png); background-position: -636px -1210px; width: 105px; height: 105px; } -.Mount_Head_Slime-Zombie { +.Mount_Head_Rooster-Zombie { background-image: url(spritesmith-main-8.png); background-position: -742px -1210px; width: 105px; height: 105px; } -.Mount_Head_Snake-Base { +.Mount_Head_Seahorse-Base { background-image: url(spritesmith-main-8.png); background-position: -848px -1210px; width: 105px; height: 105px; } -.Mount_Head_Snake-CottonCandyBlue { +.Mount_Head_Seahorse-CottonCandyBlue { background-image: url(spritesmith-main-8.png); background-position: -954px -1210px; width: 105px; height: 105px; } -.Mount_Head_Snake-CottonCandyPink { +.Mount_Head_Seahorse-CottonCandyPink { background-image: url(spritesmith-main-8.png); background-position: -1060px -1210px; width: 105px; height: 105px; } -.Mount_Head_Snake-Desert { +.Mount_Head_Seahorse-Desert { background-image: url(spritesmith-main-8.png); background-position: -1166px -1210px; width: 105px; height: 105px; } -.Mount_Head_Snake-Golden { +.Mount_Head_Seahorse-Golden { background-image: url(spritesmith-main-8.png); background-position: -1316px 0px; width: 105px; height: 105px; } -.Mount_Head_Snake-Red { +.Mount_Head_Seahorse-Red { background-image: url(spritesmith-main-8.png); background-position: -1316px -106px; width: 105px; height: 105px; } -.Mount_Head_Snake-Shade { +.Mount_Head_Seahorse-Shade { background-image: url(spritesmith-main-8.png); background-position: -1316px -212px; width: 105px; height: 105px; } -.Mount_Head_Snake-Skeleton { +.Mount_Head_Seahorse-Skeleton { background-image: url(spritesmith-main-8.png); background-position: -1316px -318px; width: 105px; height: 105px; } -.Mount_Head_Snake-White { +.Mount_Head_Seahorse-White { background-image: url(spritesmith-main-8.png); background-position: -1316px -424px; width: 105px; height: 105px; } -.Mount_Head_Snake-Zombie { +.Mount_Head_Seahorse-Zombie { background-image: url(spritesmith-main-8.png); background-position: -1316px -530px; width: 105px; height: 105px; } -.Mount_Head_Spider-Base { +.Mount_Head_Sheep-Base { background-image: url(spritesmith-main-8.png); background-position: -1316px -636px; width: 105px; height: 105px; } -.Mount_Head_Spider-CottonCandyBlue { +.Mount_Head_Sheep-CottonCandyBlue { background-image: url(spritesmith-main-8.png); background-position: -1316px -742px; width: 105px; height: 105px; } -.Mount_Head_Spider-CottonCandyPink { +.Mount_Head_Sheep-CottonCandyPink { background-image: url(spritesmith-main-8.png); background-position: -1316px -848px; width: 105px; height: 105px; } -.Mount_Head_Spider-Desert { +.Mount_Head_Sheep-Desert { background-image: url(spritesmith-main-8.png); background-position: -1316px -954px; width: 105px; height: 105px; } -.Mount_Head_Spider-Golden { +.Mount_Head_Sheep-Golden { background-image: url(spritesmith-main-8.png); background-position: -1316px -1060px; width: 105px; height: 105px; } -.Mount_Head_Spider-Red { +.Mount_Head_Sheep-Red { background-image: url(spritesmith-main-8.png); background-position: -1316px -1166px; width: 105px; height: 105px; } -.Mount_Head_Spider-Shade { +.Mount_Head_Sheep-Shade { background-image: url(spritesmith-main-8.png); background-position: 0px -1316px; width: 105px; height: 105px; } -.Mount_Head_Spider-Skeleton { +.Mount_Head_Sheep-Skeleton { background-image: url(spritesmith-main-8.png); background-position: -106px -1316px; width: 105px; height: 105px; } -.Mount_Head_Spider-White { +.Mount_Head_Sheep-White { background-image: url(spritesmith-main-8.png); background-position: -212px -1316px; width: 105px; height: 105px; } -.Mount_Head_Spider-Zombie { +.Mount_Head_Sheep-Zombie { background-image: url(spritesmith-main-8.png); background-position: -318px -1316px; width: 105px; height: 105px; } +.Mount_Head_Slime-Base { + background-image: url(spritesmith-main-8.png); + background-position: -424px -1316px; + width: 105px; + height: 105px; +} +.Mount_Head_Slime-CottonCandyBlue { + background-image: url(spritesmith-main-8.png); + background-position: -530px -1316px; + width: 105px; + height: 105px; +} +.Mount_Head_Slime-CottonCandyPink { + background-image: url(spritesmith-main-8.png); + background-position: -636px -1316px; + width: 105px; + height: 105px; +} +.Mount_Head_Slime-Desert { + background-image: url(spritesmith-main-8.png); + background-position: -742px -1316px; + width: 105px; + height: 105px; +} +.Mount_Head_Slime-Golden { + background-image: url(spritesmith-main-8.png); + background-position: -848px -1316px; + width: 105px; + height: 105px; +} +.Mount_Head_Slime-Red { + background-image: url(spritesmith-main-8.png); + background-position: -954px -1316px; + width: 105px; + height: 105px; +} +.Mount_Head_Slime-Shade { + background-image: url(spritesmith-main-8.png); + background-position: -1060px -1316px; + width: 105px; + height: 105px; +} +.Mount_Head_Slime-Skeleton { + background-image: url(spritesmith-main-8.png); + background-position: -1166px -1316px; + width: 105px; + height: 105px; +} +.Mount_Head_Slime-White { + background-image: url(spritesmith-main-8.png); + background-position: -1272px -1316px; + width: 105px; + height: 105px; +} +.Mount_Head_Slime-Zombie { + background-image: url(spritesmith-main-8.png); + background-position: -1422px 0px; + width: 105px; + height: 105px; +} +.Mount_Head_Snake-Base { + background-image: url(spritesmith-main-8.png); + background-position: -1422px -106px; + width: 105px; + height: 105px; +} +.Mount_Head_Snake-CottonCandyBlue { + background-image: url(spritesmith-main-8.png); + background-position: -1422px -212px; + width: 105px; + height: 105px; +} +.Mount_Head_Snake-CottonCandyPink { + background-image: url(spritesmith-main-8.png); + background-position: -1422px -318px; + width: 105px; + height: 105px; +} +.Mount_Head_Snake-Desert { + background-image: url(spritesmith-main-8.png); + background-position: -1422px -424px; + width: 105px; + height: 105px; +} +.Mount_Head_Snake-Golden { + background-image: url(spritesmith-main-8.png); + background-position: -1422px -530px; + width: 105px; + height: 105px; +} +.Mount_Head_Snake-Red { + background-image: url(spritesmith-main-8.png); + background-position: -1422px -636px; + width: 105px; + height: 105px; +} +.Mount_Head_Snake-Shade { + background-image: url(spritesmith-main-8.png); + background-position: -1422px -742px; + width: 105px; + height: 105px; +} +.Mount_Head_Snake-Skeleton { + background-image: url(spritesmith-main-8.png); + background-position: -1422px -848px; + width: 105px; + height: 105px; +} +.Mount_Head_Snake-White { + background-image: url(spritesmith-main-8.png); + background-position: -1422px -954px; + width: 105px; + height: 105px; +} +.Mount_Head_Snake-Zombie { + background-image: url(spritesmith-main-8.png); + background-position: -1422px -1060px; + width: 105px; + height: 105px; +} +.Mount_Head_Spider-Base { + background-image: url(spritesmith-main-8.png); + background-position: -1422px -1166px; + width: 105px; + height: 105px; +} +.Mount_Head_Spider-CottonCandyBlue { + background-image: url(spritesmith-main-8.png); + background-position: -1422px -1272px; + width: 105px; + height: 105px; +} +.Mount_Head_Spider-CottonCandyPink { + background-image: url(spritesmith-main-8.png); + background-position: 0px -1422px; + width: 105px; + height: 105px; +} +.Mount_Head_Spider-Desert { + background-image: url(spritesmith-main-8.png); + background-position: -106px -1422px; + width: 105px; + height: 105px; +} +.Mount_Head_Spider-Golden { + background-image: url(spritesmith-main-8.png); + background-position: -212px -1422px; + width: 105px; + height: 105px; +} +.Mount_Head_Spider-Red { + background-image: url(spritesmith-main-8.png); + background-position: -318px -1422px; + width: 105px; + height: 105px; +} +.Mount_Head_Spider-Shade { + background-image: url(spritesmith-main-8.png); + background-position: -424px -1422px; + width: 105px; + height: 105px; +} +.Mount_Head_Spider-Skeleton { + background-image: url(spritesmith-main-8.png); + background-position: -530px -1422px; + width: 105px; + height: 105px; +} +.Mount_Head_Spider-White { + background-image: url(spritesmith-main-8.png); + background-position: -636px -1422px; + width: 105px; + height: 105px; +} +.Mount_Head_Spider-Zombie { + background-image: url(spritesmith-main-8.png); + background-position: -742px -1422px; + width: 105px; + height: 105px; +} .Mount_Head_TRex-Base { background-image: url(spritesmith-main-8.png); background-position: -272px -136px; @@ -942,13 +1116,13 @@ } .Mount_Head_TRex-Skeleton { background-image: url(spritesmith-main-8.png); - background-position: 0px 0px; + background-position: 0px -408px; width: 135px; height: 135px; } .Mount_Head_TRex-White { background-image: url(spritesmith-main-8.png); - background-position: -136px -408px; + background-position: 0px 0px; width: 135px; height: 135px; } @@ -960,133 +1134,139 @@ } .Mount_Head_TigerCub-Base { background-image: url(spritesmith-main-8.png); - background-position: -1422px -106px; + background-position: -1528px -424px; width: 105px; height: 105px; } .Mount_Head_TigerCub-CottonCandyBlue { background-image: url(spritesmith-main-8.png); - background-position: -1422px -212px; + background-position: -1528px -530px; width: 105px; height: 105px; } .Mount_Head_TigerCub-CottonCandyPink { background-image: url(spritesmith-main-8.png); - background-position: -1422px -318px; + background-position: -1528px -636px; width: 105px; height: 105px; } .Mount_Head_TigerCub-Desert { background-image: url(spritesmith-main-8.png); - background-position: -1422px -424px; + background-position: -1528px -742px; width: 105px; height: 105px; } .Mount_Head_TigerCub-Golden { background-image: url(spritesmith-main-8.png); - background-position: -1422px -530px; + background-position: -1528px -848px; + width: 105px; + height: 105px; +} +.Mount_Head_TigerCub-Peppermint { + background-image: url(spritesmith-main-8.png); + background-position: -1528px -954px; width: 105px; height: 105px; } .Mount_Head_TigerCub-Red { background-image: url(spritesmith-main-8.png); - background-position: -1422px -636px; + background-position: -1528px -1060px; width: 105px; height: 105px; } .Mount_Head_TigerCub-Shade { background-image: url(spritesmith-main-8.png); - background-position: -1422px -742px; + background-position: -1528px -1166px; width: 105px; height: 105px; } .Mount_Head_TigerCub-Skeleton { background-image: url(spritesmith-main-8.png); - background-position: -1422px -848px; + background-position: -1528px -1272px; width: 105px; height: 105px; } .Mount_Head_TigerCub-Spooky { background-image: url(spritesmith-main-8.png); - background-position: -1422px -954px; + background-position: -1528px -1378px; width: 105px; height: 105px; } .Mount_Head_TigerCub-White { background-image: url(spritesmith-main-8.png); - background-position: -1422px -1060px; + background-position: 0px -1528px; width: 105px; height: 105px; } .Mount_Head_TigerCub-Zombie { background-image: url(spritesmith-main-8.png); - background-position: -1422px -1166px; + background-position: -106px -1528px; width: 105px; height: 105px; } .Mount_Head_Turkey-Base { background-image: url(spritesmith-main-8.png); - background-position: -1422px -1272px; + background-position: -212px -1528px; width: 105px; height: 105px; } .Mount_Head_Whale-Base { background-image: url(spritesmith-main-8.png); - background-position: 0px -1422px; + background-position: -318px -1528px; width: 105px; height: 105px; } .Mount_Head_Whale-CottonCandyBlue { background-image: url(spritesmith-main-8.png); - background-position: -106px -1422px; + background-position: -424px -1528px; width: 105px; height: 105px; } .Mount_Head_Whale-CottonCandyPink { background-image: url(spritesmith-main-8.png); - background-position: -212px -1422px; + background-position: -530px -1528px; width: 105px; height: 105px; } .Mount_Head_Whale-Desert { background-image: url(spritesmith-main-8.png); - background-position: -318px -1422px; + background-position: -636px -1528px; width: 105px; height: 105px; } .Mount_Head_Whale-Golden { background-image: url(spritesmith-main-8.png); - background-position: -424px -1422px; + background-position: -742px -1528px; width: 105px; height: 105px; } .Mount_Head_Whale-Red { background-image: url(spritesmith-main-8.png); - background-position: -530px -1422px; + background-position: -848px -1528px; width: 105px; height: 105px; } .Mount_Head_Whale-Shade { background-image: url(spritesmith-main-8.png); - background-position: -636px -1422px; + background-position: -954px -1528px; width: 105px; height: 105px; } .Mount_Head_Whale-Skeleton { background-image: url(spritesmith-main-8.png); - background-position: -742px -1422px; + background-position: -1060px -1528px; width: 105px; height: 105px; } .Mount_Head_Whale-White { background-image: url(spritesmith-main-8.png); - background-position: -848px -1422px; + background-position: -1166px -1528px; width: 105px; height: 105px; } .Mount_Head_Whale-Zombie { background-image: url(spritesmith-main-8.png); - background-position: -954px -1422px; + background-position: -1272px -1528px; width: 105px; height: 105px; } @@ -1120,12 +1300,18 @@ width: 135px; height: 135px; } -.Mount_Head_Wolf-Red { +.Mount_Head_Wolf-Peppermint { background-image: url(spritesmith-main-8.png); background-position: 0px -544px; width: 135px; height: 135px; } +.Mount_Head_Wolf-Red { + background-image: url(spritesmith-main-8.png); + background-position: -136px -544px; + width: 135px; + height: 135px; +} .Mount_Head_Wolf-Shade { background-image: url(spritesmith-main-8.png); background-position: -272px 0px; @@ -1152,343 +1338,91 @@ } .Mount_Head_Wolf-Zombie { background-image: url(spritesmith-main-8.png); - background-position: 0px -408px; + background-position: -136px -408px; width: 135px; height: 135px; } -.Pet-BearCub-Base { +.Mount_Icon_BearCub-Base { background-image: url(spritesmith-main-8.png); - background-position: -1634px -100px; + background-position: 0px -1634px; width: 81px; height: 99px; } -.Pet-BearCub-CottonCandyBlue { +.Mount_Icon_BearCub-CottonCandyBlue { background-image: url(spritesmith-main-8.png); - background-position: -1528px -842px; + background-position: -1634px -1160px; width: 81px; height: 99px; } -.Pet-BearCub-CottonCandyPink { +.Mount_Icon_BearCub-CottonCandyPink { background-image: url(spritesmith-main-8.png); - background-position: -1528px -942px; + background-position: -1634px -1260px; width: 81px; height: 99px; } -.Pet-BearCub-Desert { +.Mount_Icon_BearCub-Desert { background-image: url(spritesmith-main-8.png); - background-position: -1528px -1042px; + background-position: -1634px -1360px; width: 81px; height: 99px; } -.Pet-BearCub-Golden { +.Mount_Icon_BearCub-Golden { background-image: url(spritesmith-main-8.png); - background-position: -1528px -1142px; + background-position: -1634px -1460px; width: 81px; height: 99px; } -.Pet-BearCub-Polar { +.Mount_Icon_BearCub-Peppermint { background-image: url(spritesmith-main-8.png); - background-position: -1528px -1242px; + background-position: -593px -544px; width: 81px; height: 99px; } -.Pet-BearCub-Red { +.Mount_Icon_BearCub-Polar { background-image: url(spritesmith-main-8.png); - background-position: -1528px -1342px; + background-position: -574px -1634px; width: 81px; height: 99px; } -.Pet-BearCub-Shade { +.Mount_Icon_BearCub-Red { background-image: url(spritesmith-main-8.png); - background-position: 0px -1528px; + background-position: -82px -1634px; width: 81px; height: 99px; } -.Pet-BearCub-Skeleton { +.Mount_Icon_BearCub-Shade { background-image: url(spritesmith-main-8.png); - background-position: -82px -1528px; + background-position: -164px -1634px; width: 81px; height: 99px; } -.Pet-BearCub-Spooky { +.Mount_Icon_BearCub-Skeleton { background-image: url(spritesmith-main-8.png); - background-position: -164px -1528px; + background-position: -246px -1634px; width: 81px; height: 99px; } -.Pet-BearCub-White { +.Mount_Icon_BearCub-Spooky { background-image: url(spritesmith-main-8.png); - background-position: -246px -1528px; + background-position: -328px -1634px; width: 81px; height: 99px; } -.Pet-BearCub-Zombie { +.Mount_Icon_BearCub-White { background-image: url(spritesmith-main-8.png); - background-position: -328px -1528px; + background-position: -410px -1634px; width: 81px; height: 99px; } -.Pet-Bunny-Base { +.Mount_Icon_BearCub-Zombie { background-image: url(spritesmith-main-8.png); - background-position: -410px -1528px; + background-position: -492px -1634px; width: 81px; height: 99px; } -.Pet-Bunny-CottonCandyBlue { +.Mount_Icon_Bunny-Base { background-image: url(spritesmith-main-8.png); - background-position: -492px -1528px; - width: 81px; - height: 99px; -} -.Pet-Bunny-CottonCandyPink { - background-image: url(spritesmith-main-8.png); - background-position: -574px -1528px; - width: 81px; - height: 99px; -} -.Pet-Bunny-Desert { - background-image: url(spritesmith-main-8.png); - background-position: -656px -1528px; - width: 81px; - height: 99px; -} -.Pet-Bunny-Golden { - background-image: url(spritesmith-main-8.png); - background-position: -738px -1528px; - width: 81px; - height: 99px; -} -.Pet-Bunny-Red { - background-image: url(spritesmith-main-8.png); - background-position: -820px -1528px; - width: 81px; - height: 99px; -} -.Pet-Bunny-Shade { - background-image: url(spritesmith-main-8.png); - background-position: -902px -1528px; - width: 81px; - height: 99px; -} -.Pet-Bunny-Skeleton { - background-image: url(spritesmith-main-8.png); - background-position: -984px -1528px; - width: 81px; - height: 99px; -} -.Pet-Bunny-White { - background-image: url(spritesmith-main-8.png); - background-position: -1066px -1528px; - width: 81px; - height: 99px; -} -.Pet-Bunny-Zombie { - background-image: url(spritesmith-main-8.png); - background-position: -1148px -1528px; - width: 81px; - height: 99px; -} -.Pet-Cactus-Base { - background-image: url(spritesmith-main-8.png); - background-position: -1230px -1528px; - width: 81px; - height: 99px; -} -.Pet-Cactus-CottonCandyBlue { - background-image: url(spritesmith-main-8.png); - background-position: -1312px -1528px; - width: 81px; - height: 99px; -} -.Pet-Cactus-CottonCandyPink { - background-image: url(spritesmith-main-8.png); - background-position: -1394px -1528px; - width: 81px; - height: 99px; -} -.Pet-Cactus-Desert { - background-image: url(spritesmith-main-8.png); - background-position: -1476px -1528px; - width: 81px; - height: 99px; -} -.Pet-Cactus-Golden { - background-image: url(spritesmith-main-8.png); - background-position: -1634px 0px; - width: 81px; - height: 99px; -} -.Pet-Cactus-Red { - background-image: url(spritesmith-main-8.png); - background-position: -1716px -1300px; - width: 81px; - height: 99px; -} -.Pet-Cactus-Shade { - background-image: url(spritesmith-main-8.png); - background-position: -1634px -200px; - width: 81px; - height: 99px; -} -.Pet-Cactus-Skeleton { - background-image: url(spritesmith-main-8.png); - background-position: -1634px -300px; - width: 81px; - height: 99px; -} -.Pet-Cactus-Spooky { - background-image: url(spritesmith-main-8.png); - background-position: -1634px -400px; - width: 81px; - height: 99px; -} -.Pet-Cactus-White { - background-image: url(spritesmith-main-8.png); - background-position: -1634px -500px; - width: 81px; - height: 99px; -} -.Pet-Cactus-Zombie { - background-image: url(spritesmith-main-8.png); - background-position: -1634px -600px; - width: 81px; - height: 99px; -} -.Pet-Cheetah-Base { - background-image: url(spritesmith-main-8.png); - background-position: -1634px -700px; - width: 81px; - height: 99px; -} -.Pet-Cheetah-CottonCandyBlue { - background-image: url(spritesmith-main-8.png); - background-position: -1634px -800px; - width: 81px; - height: 99px; -} -.Pet-Cheetah-CottonCandyPink { - background-image: url(spritesmith-main-8.png); - background-position: -1634px -900px; - width: 81px; - height: 99px; -} -.Pet-Cheetah-Desert { - background-image: url(spritesmith-main-8.png); - background-position: -1634px -1000px; - width: 81px; - height: 99px; -} -.Pet-Cheetah-Golden { - background-image: url(spritesmith-main-8.png); - background-position: -1634px -1100px; - width: 81px; - height: 99px; -} -.Pet-Cheetah-Red { - background-image: url(spritesmith-main-8.png); - background-position: -1634px -1200px; - width: 81px; - height: 99px; -} -.Pet-Cheetah-Shade { - background-image: url(spritesmith-main-8.png); - background-position: -1634px -1300px; - width: 81px; - height: 99px; -} -.Pet-Cheetah-Skeleton { - background-image: url(spritesmith-main-8.png); - background-position: -1634px -1400px; - width: 81px; - height: 99px; -} -.Pet-Cheetah-White { - background-image: url(spritesmith-main-8.png); - background-position: -1634px -1500px; - width: 81px; - height: 99px; -} -.Pet-Cheetah-Zombie { - background-image: url(spritesmith-main-8.png); - background-position: -1716px 0px; - width: 81px; - height: 99px; -} -.Pet-Cuttlefish-Base { - background-image: url(spritesmith-main-8.png); - background-position: -1716px -100px; - width: 81px; - height: 99px; -} -.Pet-Cuttlefish-CottonCandyBlue { - background-image: url(spritesmith-main-8.png); - background-position: -1716px -200px; - width: 81px; - height: 99px; -} -.Pet-Cuttlefish-CottonCandyPink { - background-image: url(spritesmith-main-8.png); - background-position: -1716px -300px; - width: 81px; - height: 99px; -} -.Pet-Cuttlefish-Desert { - background-image: url(spritesmith-main-8.png); - background-position: -1716px -400px; - width: 81px; - height: 99px; -} -.Pet-Cuttlefish-Golden { - background-image: url(spritesmith-main-8.png); - background-position: -1716px -500px; - width: 81px; - height: 99px; -} -.Pet-Cuttlefish-Red { - background-image: url(spritesmith-main-8.png); - background-position: -1716px -600px; - width: 81px; - height: 99px; -} -.Pet-Cuttlefish-Shade { - background-image: url(spritesmith-main-8.png); - background-position: -1716px -700px; - width: 81px; - height: 99px; -} -.Pet-Cuttlefish-Skeleton { - background-image: url(spritesmith-main-8.png); - background-position: -1716px -800px; - width: 81px; - height: 99px; -} -.Pet-Cuttlefish-White { - background-image: url(spritesmith-main-8.png); - background-position: -1716px -900px; - width: 81px; - height: 99px; -} -.Pet-Cuttlefish-Zombie { - background-image: url(spritesmith-main-8.png); - background-position: -1716px -1000px; - width: 81px; - height: 99px; -} -.Pet-Deer-Base { - background-image: url(spritesmith-main-8.png); - background-position: -1716px -1100px; - width: 81px; - height: 99px; -} -.Pet-Deer-CottonCandyBlue { - background-image: url(spritesmith-main-8.png); - background-position: -1716px -1200px; - width: 81px; - height: 99px; -} -.Pet-Deer-CottonCandyPink { - background-image: url(spritesmith-main-8.png); - background-position: -1528px -742px; + background-position: -1634px -1060px; width: 81px; height: 99px; } diff --git a/common/dist/sprites/spritesmith-main-8.png b/common/dist/sprites/spritesmith-main-8.png index 924ba615cf..f1557707c2 100644 Binary files a/common/dist/sprites/spritesmith-main-8.png and b/common/dist/sprites/spritesmith-main-8.png differ diff --git a/common/dist/sprites/spritesmith-main-9.css b/common/dist/sprites/spritesmith-main-9.css index 7d27c78193..14f680f091 100644 --- a/common/dist/sprites/spritesmith-main-9.css +++ b/common/dist/sprites/spritesmith-main-9.css @@ -1,1764 +1,1962 @@ -.Pet-Deer-Desert { +.Mount_Icon_Bunny-CottonCandyBlue { background-image: url(spritesmith-main-9.png); - background-position: -82px 0px; + background-position: -328px -845px; width: 81px; height: 99px; } -.Pet-Deer-Golden { +.Mount_Icon_Bunny-CottonCandyPink { background-image: url(spritesmith-main-9.png); - background-position: -574px -1000px; + background-position: -1244px -100px; width: 81px; height: 99px; } -.Pet-Deer-Red { +.Mount_Icon_Bunny-Desert { background-image: url(spritesmith-main-9.png); - background-position: -164px 0px; + background-position: -410px -845px; width: 81px; height: 99px; } -.Pet-Deer-Shade { +.Mount_Icon_Bunny-Golden { background-image: url(spritesmith-main-9.png); - background-position: 0px -100px; + background-position: -492px -845px; width: 81px; height: 99px; } -.Pet-Deer-Skeleton { +.Mount_Icon_Bunny-Red { background-image: url(spritesmith-main-9.png); - background-position: -82px -100px; + background-position: -574px -845px; width: 81px; height: 99px; } -.Pet-Deer-White { +.Mount_Icon_Bunny-Shade { background-image: url(spritesmith-main-9.png); - background-position: -164px -100px; + background-position: -656px -845px; width: 81px; height: 99px; } -.Pet-Deer-Zombie { +.Mount_Icon_Bunny-Skeleton { background-image: url(spritesmith-main-9.png); - background-position: -246px 0px; + background-position: -738px -845px; width: 81px; height: 99px; } -.Pet-Dragon-Base { +.Mount_Icon_Bunny-White { background-image: url(spritesmith-main-9.png); - background-position: -246px -100px; + background-position: -820px -845px; width: 81px; height: 99px; } -.Pet-Dragon-CottonCandyBlue { +.Mount_Icon_Bunny-Zombie { background-image: url(spritesmith-main-9.png); - background-position: 0px -200px; + background-position: -902px -845px; width: 81px; height: 99px; } -.Pet-Dragon-CottonCandyPink { +.Mount_Icon_Cactus-Base { background-image: url(spritesmith-main-9.png); - background-position: -82px -200px; + background-position: -998px 0px; width: 81px; height: 99px; } -.Pet-Dragon-Desert { +.Mount_Icon_Cactus-CottonCandyBlue { background-image: url(spritesmith-main-9.png); - background-position: -164px -200px; + background-position: -998px -100px; width: 81px; height: 99px; } -.Pet-Dragon-Golden { +.Mount_Icon_Cactus-CottonCandyPink { background-image: url(spritesmith-main-9.png); - background-position: -246px -200px; + background-position: -82px -1045px; width: 81px; height: 99px; } -.Pet-Dragon-Hydra { +.Mount_Icon_Cactus-Desert { background-image: url(spritesmith-main-9.png); - background-position: -328px 0px; + background-position: -492px -1245px; width: 81px; height: 99px; } -.Pet-Dragon-Red { +.Mount_Icon_Cactus-Golden { background-image: url(spritesmith-main-9.png); - background-position: -328px -100px; + background-position: -424px -100px; width: 81px; height: 99px; } -.Pet-Dragon-Shade { +.Mount_Icon_Cactus-Peppermint { background-image: url(spritesmith-main-9.png); - background-position: -328px -200px; + background-position: -424px -200px; width: 81px; height: 99px; } -.Pet-Dragon-Skeleton { +.Mount_Icon_Cactus-Red { background-image: url(spritesmith-main-9.png); - background-position: 0px -300px; + background-position: 0px -345px; width: 81px; height: 99px; } -.Pet-Dragon-Spooky { +.Mount_Icon_Cactus-Shade { background-image: url(spritesmith-main-9.png); - background-position: -82px -300px; + background-position: -82px -345px; width: 81px; height: 99px; } -.Pet-Dragon-White { +.Mount_Icon_Cactus-Skeleton { background-image: url(spritesmith-main-9.png); - background-position: -164px -300px; + background-position: -164px -345px; width: 81px; height: 99px; } -.Pet-Dragon-Zombie { +.Mount_Icon_Cactus-Spooky { background-image: url(spritesmith-main-9.png); - background-position: -246px -300px; + background-position: -246px -345px; width: 81px; height: 99px; } -.Pet-Egg-Base { +.Mount_Icon_Cactus-White { background-image: url(spritesmith-main-9.png); - background-position: -328px -300px; + background-position: -328px -345px; width: 81px; height: 99px; } -.Pet-Egg-CottonCandyBlue { +.Mount_Icon_Cactus-Zombie { background-image: url(spritesmith-main-9.png); - background-position: -410px 0px; + background-position: -410px -345px; width: 81px; height: 99px; } -.Pet-Egg-CottonCandyPink { +.Mount_Icon_Cheetah-Base { background-image: url(spritesmith-main-9.png); - background-position: -410px -100px; + background-position: -506px 0px; width: 81px; height: 99px; } -.Pet-Egg-Desert { +.Mount_Icon_Cheetah-CottonCandyBlue { background-image: url(spritesmith-main-9.png); - background-position: -410px -200px; + background-position: -506px -100px; width: 81px; height: 99px; } -.Pet-Egg-Golden { +.Mount_Icon_Cheetah-CottonCandyPink { background-image: url(spritesmith-main-9.png); - background-position: -410px -300px; + background-position: -506px -200px; width: 81px; height: 99px; } -.Pet-Egg-Red { +.Mount_Icon_Cheetah-Desert { background-image: url(spritesmith-main-9.png); - background-position: -492px 0px; + background-position: -506px -300px; width: 81px; height: 99px; } -.Pet-Egg-Shade { +.Mount_Icon_Cheetah-Golden { background-image: url(spritesmith-main-9.png); - background-position: -492px -100px; + background-position: 0px -445px; width: 81px; height: 99px; } -.Pet-Egg-Skeleton { +.Mount_Icon_Cheetah-Red { background-image: url(spritesmith-main-9.png); - background-position: -492px -200px; + background-position: -82px -445px; width: 81px; height: 99px; } -.Pet-Egg-White { +.Mount_Icon_Cheetah-Shade { background-image: url(spritesmith-main-9.png); - background-position: -492px -300px; + background-position: -164px -445px; width: 81px; height: 99px; } -.Pet-Egg-Zombie { +.Mount_Icon_Cheetah-Skeleton { background-image: url(spritesmith-main-9.png); - background-position: 0px -400px; + background-position: -246px -445px; width: 81px; height: 99px; } -.Pet-FlyingPig-Base { +.Mount_Icon_Cheetah-White { background-image: url(spritesmith-main-9.png); - background-position: -82px -400px; + background-position: -328px -445px; width: 81px; height: 99px; } -.Pet-FlyingPig-CottonCandyBlue { +.Mount_Icon_Cheetah-Zombie { background-image: url(spritesmith-main-9.png); - background-position: -164px -400px; + background-position: -410px -445px; width: 81px; height: 99px; } -.Pet-FlyingPig-CottonCandyPink { +.Mount_Icon_Cuttlefish-Base { background-image: url(spritesmith-main-9.png); - background-position: -246px -400px; + background-position: -492px -445px; width: 81px; height: 99px; } -.Pet-FlyingPig-Desert { +.Mount_Icon_Cuttlefish-CottonCandyBlue { background-image: url(spritesmith-main-9.png); - background-position: -328px -400px; + background-position: -588px 0px; width: 81px; height: 99px; } -.Pet-FlyingPig-Golden { +.Mount_Icon_Cuttlefish-CottonCandyPink { background-image: url(spritesmith-main-9.png); - background-position: -410px -400px; + background-position: -588px -100px; width: 81px; height: 99px; } -.Pet-FlyingPig-Red { +.Mount_Icon_Cuttlefish-Desert { background-image: url(spritesmith-main-9.png); - background-position: -492px -400px; + background-position: -588px -200px; width: 81px; height: 99px; } -.Pet-FlyingPig-Shade { +.Mount_Icon_Cuttlefish-Golden { background-image: url(spritesmith-main-9.png); - background-position: -574px 0px; + background-position: -588px -300px; width: 81px; height: 99px; } -.Pet-FlyingPig-Skeleton { +.Mount_Icon_Cuttlefish-Red { background-image: url(spritesmith-main-9.png); - background-position: -574px -100px; + background-position: -588px -400px; width: 81px; height: 99px; } -.Pet-FlyingPig-Spooky { +.Mount_Icon_Cuttlefish-Shade { background-image: url(spritesmith-main-9.png); - background-position: -574px -200px; + background-position: 0px -545px; width: 81px; height: 99px; } -.Pet-FlyingPig-White { +.Mount_Icon_Cuttlefish-Skeleton { background-image: url(spritesmith-main-9.png); - background-position: -574px -300px; + background-position: -82px -545px; width: 81px; height: 99px; } -.Pet-FlyingPig-Zombie { +.Mount_Icon_Cuttlefish-White { background-image: url(spritesmith-main-9.png); - background-position: -574px -400px; + background-position: -164px -545px; width: 81px; height: 99px; } -.Pet-Fox-Base { +.Mount_Icon_Cuttlefish-Zombie { background-image: url(spritesmith-main-9.png); - background-position: 0px -500px; + background-position: -246px -545px; width: 81px; height: 99px; } -.Pet-Fox-CottonCandyBlue { +.Mount_Icon_Deer-Base { background-image: url(spritesmith-main-9.png); - background-position: -82px -500px; + background-position: -328px -545px; width: 81px; height: 99px; } -.Pet-Fox-CottonCandyPink { +.Mount_Icon_Deer-CottonCandyBlue { background-image: url(spritesmith-main-9.png); - background-position: -164px -500px; + background-position: -410px -545px; width: 81px; height: 99px; } -.Pet-Fox-Desert { +.Mount_Icon_Deer-CottonCandyPink { background-image: url(spritesmith-main-9.png); - background-position: -246px -500px; + background-position: -492px -545px; width: 81px; height: 99px; } -.Pet-Fox-Golden { +.Mount_Icon_Deer-Desert { background-image: url(spritesmith-main-9.png); - background-position: -328px -500px; + background-position: -574px -545px; width: 81px; height: 99px; } -.Pet-Fox-Red { +.Mount_Icon_Deer-Golden { background-image: url(spritesmith-main-9.png); - background-position: -410px -500px; + background-position: -670px 0px; width: 81px; height: 99px; } -.Pet-Fox-Shade { +.Mount_Icon_Deer-Red { background-image: url(spritesmith-main-9.png); - background-position: -492px -500px; + background-position: -670px -100px; width: 81px; height: 99px; } -.Pet-Fox-Skeleton { +.Mount_Icon_Deer-Shade { background-image: url(spritesmith-main-9.png); - background-position: -574px -500px; + background-position: -670px -200px; width: 81px; height: 99px; } -.Pet-Fox-Spooky { +.Mount_Icon_Deer-Skeleton { background-image: url(spritesmith-main-9.png); - background-position: -656px 0px; + background-position: -670px -300px; width: 81px; height: 99px; } -.Pet-Fox-White { +.Mount_Icon_Deer-White { background-image: url(spritesmith-main-9.png); - background-position: -656px -100px; + background-position: -670px -400px; width: 81px; height: 99px; } -.Pet-Fox-Zombie { +.Mount_Icon_Deer-Zombie { background-image: url(spritesmith-main-9.png); - background-position: -656px -200px; + background-position: -670px -500px; width: 81px; height: 99px; } -.Pet-Frog-Base { +.Mount_Icon_Dragon-Base { background-image: url(spritesmith-main-9.png); - background-position: -656px -300px; + background-position: 0px -645px; width: 81px; height: 99px; } -.Pet-Frog-CottonCandyBlue { +.Mount_Icon_Dragon-CottonCandyBlue { background-image: url(spritesmith-main-9.png); - background-position: -656px -400px; + background-position: -82px -645px; width: 81px; height: 99px; } -.Pet-Frog-CottonCandyPink { +.Mount_Icon_Dragon-CottonCandyPink { background-image: url(spritesmith-main-9.png); - background-position: -656px -500px; + background-position: -164px -645px; width: 81px; height: 99px; } -.Pet-Frog-Desert { +.Mount_Icon_Dragon-Desert { background-image: url(spritesmith-main-9.png); - background-position: 0px -600px; + background-position: -246px -645px; width: 81px; height: 99px; } -.Pet-Frog-Golden { +.Mount_Icon_Dragon-Golden { background-image: url(spritesmith-main-9.png); - background-position: -82px -600px; + background-position: -328px -645px; width: 81px; height: 99px; } -.Pet-Frog-Red { +.Mount_Icon_Dragon-Peppermint { background-image: url(spritesmith-main-9.png); - background-position: -164px -600px; + background-position: -410px -645px; width: 81px; height: 99px; } -.Pet-Frog-Shade { +.Mount_Icon_Dragon-Red { background-image: url(spritesmith-main-9.png); - background-position: -246px -600px; + background-position: -492px -645px; width: 81px; height: 99px; } -.Pet-Frog-Skeleton { +.Mount_Icon_Dragon-Shade { background-image: url(spritesmith-main-9.png); - background-position: -328px -600px; + background-position: -574px -645px; width: 81px; height: 99px; } -.Pet-Frog-White { +.Mount_Icon_Dragon-Skeleton { background-image: url(spritesmith-main-9.png); - background-position: -410px -600px; + background-position: -656px -645px; width: 81px; height: 99px; } -.Pet-Frog-Zombie { +.Mount_Icon_Dragon-Spooky { background-image: url(spritesmith-main-9.png); - background-position: -492px -600px; + background-position: -752px 0px; width: 81px; height: 99px; } -.Pet-Gryphon-Base { +.Mount_Icon_Dragon-White { background-image: url(spritesmith-main-9.png); - background-position: -574px -600px; + background-position: -752px -100px; width: 81px; height: 99px; } -.Pet-Gryphon-CottonCandyBlue { +.Mount_Icon_Dragon-Zombie { background-image: url(spritesmith-main-9.png); - background-position: -656px -600px; + background-position: -752px -200px; width: 81px; height: 99px; } -.Pet-Gryphon-CottonCandyPink { +.Mount_Icon_Egg-Base { background-image: url(spritesmith-main-9.png); - background-position: -738px 0px; + background-position: -752px -300px; width: 81px; height: 99px; } -.Pet-Gryphon-Desert { +.Mount_Icon_Egg-CottonCandyBlue { background-image: url(spritesmith-main-9.png); - background-position: -738px -100px; + background-position: -752px -400px; width: 81px; height: 99px; } -.Pet-Gryphon-Golden { +.Mount_Icon_Egg-CottonCandyPink { background-image: url(spritesmith-main-9.png); - background-position: -738px -200px; + background-position: -752px -500px; width: 81px; height: 99px; } -.Pet-Gryphon-Red { +.Mount_Icon_Egg-Desert { background-image: url(spritesmith-main-9.png); - background-position: -738px -300px; + background-position: -752px -600px; width: 81px; height: 99px; } -.Pet-Gryphon-Shade { +.Mount_Icon_Egg-Golden { background-image: url(spritesmith-main-9.png); - background-position: -738px -400px; + background-position: -834px 0px; width: 81px; height: 99px; } -.Pet-Gryphon-Skeleton { +.Mount_Icon_Egg-Red { background-image: url(spritesmith-main-9.png); - background-position: -738px -500px; + background-position: -834px -100px; width: 81px; height: 99px; } -.Pet-Gryphon-White { +.Mount_Icon_Egg-Shade { background-image: url(spritesmith-main-9.png); - background-position: -738px -600px; + background-position: -834px -200px; width: 81px; height: 99px; } -.Pet-Gryphon-Zombie { +.Mount_Icon_Egg-Skeleton { background-image: url(spritesmith-main-9.png); - background-position: 0px -700px; + background-position: -834px -300px; width: 81px; height: 99px; } -.Pet-Hedgehog-Base { +.Mount_Icon_Egg-White { background-image: url(spritesmith-main-9.png); - background-position: -82px -700px; + background-position: -834px -400px; width: 81px; height: 99px; } -.Pet-Hedgehog-CottonCandyBlue { +.Mount_Icon_Egg-Zombie { background-image: url(spritesmith-main-9.png); - background-position: -164px -700px; + background-position: -834px -500px; width: 81px; height: 99px; } -.Pet-Hedgehog-CottonCandyPink { +.Mount_Icon_FlyingPig-Base { background-image: url(spritesmith-main-9.png); - background-position: -246px -700px; + background-position: -834px -600px; width: 81px; height: 99px; } -.Pet-Hedgehog-Desert { +.Mount_Icon_FlyingPig-CottonCandyBlue { background-image: url(spritesmith-main-9.png); - background-position: -328px -700px; + background-position: 0px -745px; width: 81px; height: 99px; } -.Pet-Hedgehog-Golden { +.Mount_Icon_FlyingPig-CottonCandyPink { background-image: url(spritesmith-main-9.png); - background-position: -410px -700px; + background-position: -82px -745px; width: 81px; height: 99px; } -.Pet-Hedgehog-Red { +.Mount_Icon_FlyingPig-Desert { background-image: url(spritesmith-main-9.png); - background-position: -492px -700px; + background-position: -164px -745px; width: 81px; height: 99px; } -.Pet-Hedgehog-Shade { +.Mount_Icon_FlyingPig-Golden { background-image: url(spritesmith-main-9.png); - background-position: -574px -700px; + background-position: -246px -745px; width: 81px; height: 99px; } -.Pet-Hedgehog-Skeleton { +.Mount_Icon_FlyingPig-Peppermint { background-image: url(spritesmith-main-9.png); - background-position: -656px -700px; + background-position: -328px -745px; width: 81px; height: 99px; } -.Pet-Hedgehog-White { +.Mount_Icon_FlyingPig-Red { background-image: url(spritesmith-main-9.png); - background-position: -738px -700px; + background-position: -410px -745px; width: 81px; height: 99px; } -.Pet-Hedgehog-Zombie { +.Mount_Icon_FlyingPig-Shade { background-image: url(spritesmith-main-9.png); - background-position: -820px 0px; + background-position: -492px -745px; width: 81px; height: 99px; } -.Pet-Horse-Base { +.Mount_Icon_FlyingPig-Skeleton { background-image: url(spritesmith-main-9.png); - background-position: -820px -100px; + background-position: -574px -745px; width: 81px; height: 99px; } -.Pet-Horse-CottonCandyBlue { +.Mount_Icon_FlyingPig-Spooky { background-image: url(spritesmith-main-9.png); - background-position: -820px -200px; + background-position: -656px -745px; width: 81px; height: 99px; } -.Pet-Horse-CottonCandyPink { +.Mount_Icon_FlyingPig-White { background-image: url(spritesmith-main-9.png); - background-position: -820px -300px; + background-position: -738px -745px; width: 81px; height: 99px; } -.Pet-Horse-Desert { +.Mount_Icon_FlyingPig-Zombie { background-image: url(spritesmith-main-9.png); - background-position: -820px -400px; + background-position: -820px -745px; width: 81px; height: 99px; } -.Pet-Horse-Golden { +.Mount_Icon_Fox-Base { background-image: url(spritesmith-main-9.png); - background-position: -820px -500px; + background-position: -916px 0px; width: 81px; height: 99px; } -.Pet-Horse-Red { +.Mount_Icon_Fox-CottonCandyBlue { background-image: url(spritesmith-main-9.png); - background-position: -820px -600px; + background-position: -916px -100px; width: 81px; height: 99px; } -.Pet-Horse-Shade { +.Mount_Icon_Fox-CottonCandyPink { background-image: url(spritesmith-main-9.png); - background-position: -820px -700px; + background-position: -916px -200px; width: 81px; height: 99px; } -.Pet-Horse-Skeleton { +.Mount_Icon_Fox-Desert { background-image: url(spritesmith-main-9.png); - background-position: 0px -800px; + background-position: -916px -300px; width: 81px; height: 99px; } -.Pet-Horse-White { +.Mount_Icon_Fox-Golden { background-image: url(spritesmith-main-9.png); - background-position: -82px -800px; + background-position: -916px -400px; width: 81px; height: 99px; } -.Pet-Horse-Zombie { +.Mount_Icon_Fox-Peppermint { background-image: url(spritesmith-main-9.png); - background-position: -164px -800px; + background-position: -916px -500px; width: 81px; height: 99px; } -.Pet-JackOLantern-Base { +.Mount_Icon_Fox-Red { background-image: url(spritesmith-main-9.png); - background-position: -246px -800px; + background-position: -916px -600px; width: 81px; height: 99px; } -.Pet-LionCub-Base { +.Mount_Icon_Fox-Shade { background-image: url(spritesmith-main-9.png); - background-position: -328px -800px; + background-position: -916px -700px; width: 81px; height: 99px; } -.Pet-LionCub-CottonCandyBlue { +.Mount_Icon_Fox-Skeleton { background-image: url(spritesmith-main-9.png); - background-position: -410px -800px; + background-position: 0px -845px; width: 81px; height: 99px; } -.Pet-LionCub-CottonCandyPink { +.Mount_Icon_Fox-Spooky { background-image: url(spritesmith-main-9.png); - background-position: -492px -800px; + background-position: -82px -845px; width: 81px; height: 99px; } -.Pet-LionCub-Desert { +.Mount_Icon_Fox-White { background-image: url(spritesmith-main-9.png); - background-position: -574px -800px; + background-position: -164px -845px; width: 81px; height: 99px; } -.Pet-LionCub-Golden { +.Mount_Icon_Fox-Zombie { background-image: url(spritesmith-main-9.png); - background-position: -656px -800px; + background-position: -246px -845px; width: 81px; height: 99px; } -.Pet-LionCub-Red { +.Mount_Icon_Frog-Base { background-image: url(spritesmith-main-9.png); - background-position: -738px -800px; - width: 81px; - height: 99px; -} -.Pet-LionCub-Shade { - background-image: url(spritesmith-main-9.png); - background-position: -820px -800px; - width: 81px; - height: 99px; -} -.Pet-LionCub-Skeleton { - background-image: url(spritesmith-main-9.png); - background-position: -902px 0px; - width: 81px; - height: 99px; -} -.Pet-LionCub-Spooky { - background-image: url(spritesmith-main-9.png); - background-position: -902px -100px; - width: 81px; - height: 99px; -} -.Pet-LionCub-White { - background-image: url(spritesmith-main-9.png); - background-position: -902px -200px; - width: 81px; - height: 99px; -} -.Pet-LionCub-Zombie { - background-image: url(spritesmith-main-9.png); - background-position: -902px -300px; - width: 81px; - height: 99px; -} -.Pet-Mammoth-Base { - background-image: url(spritesmith-main-9.png); - background-position: -902px -400px; - width: 81px; - height: 99px; -} -.Pet-MantisShrimp-Base { - background-image: url(spritesmith-main-9.png); - background-position: -902px -500px; - width: 81px; - height: 99px; -} -.Pet-Octopus-Base { - background-image: url(spritesmith-main-9.png); - background-position: -902px -600px; - width: 81px; - height: 99px; -} -.Pet-Octopus-CottonCandyBlue { - background-image: url(spritesmith-main-9.png); - background-position: -902px -700px; - width: 81px; - height: 99px; -} -.Pet-Octopus-CottonCandyPink { - background-image: url(spritesmith-main-9.png); - background-position: -902px -800px; - width: 81px; - height: 99px; -} -.Pet-Octopus-Desert { - background-image: url(spritesmith-main-9.png); - background-position: -984px 0px; - width: 81px; - height: 99px; -} -.Pet-Octopus-Golden { - background-image: url(spritesmith-main-9.png); - background-position: -984px -100px; - width: 81px; - height: 99px; -} -.Pet-Octopus-Red { - background-image: url(spritesmith-main-9.png); - background-position: -984px -200px; - width: 81px; - height: 99px; -} -.Pet-Octopus-Shade { - background-image: url(spritesmith-main-9.png); - background-position: -984px -300px; - width: 81px; - height: 99px; -} -.Pet-Octopus-Skeleton { - background-image: url(spritesmith-main-9.png); - background-position: -984px -400px; - width: 81px; - height: 99px; -} -.Pet-Octopus-White { - background-image: url(spritesmith-main-9.png); - background-position: -984px -500px; - width: 81px; - height: 99px; -} -.Pet-Octopus-Zombie { - background-image: url(spritesmith-main-9.png); - background-position: -984px -600px; - width: 81px; - height: 99px; -} -.Pet-Owl-Base { - background-image: url(spritesmith-main-9.png); - background-position: -984px -700px; - width: 81px; - height: 99px; -} -.Pet-Owl-CottonCandyBlue { - background-image: url(spritesmith-main-9.png); - background-position: -984px -800px; - width: 81px; - height: 99px; -} -.Pet-Owl-CottonCandyPink { - background-image: url(spritesmith-main-9.png); - background-position: 0px -900px; - width: 81px; - height: 99px; -} -.Pet-Owl-Desert { - background-image: url(spritesmith-main-9.png); - background-position: -82px -900px; - width: 81px; - height: 99px; -} -.Pet-Owl-Golden { - background-image: url(spritesmith-main-9.png); - background-position: -164px -900px; - width: 81px; - height: 99px; -} -.Pet-Owl-Red { - background-image: url(spritesmith-main-9.png); - background-position: -246px -900px; - width: 81px; - height: 99px; -} -.Pet-Owl-Shade { - background-image: url(spritesmith-main-9.png); - background-position: -328px -900px; - width: 81px; - height: 99px; -} -.Pet-Owl-Skeleton { - background-image: url(spritesmith-main-9.png); - background-position: -410px -900px; - width: 81px; - height: 99px; -} -.Pet-Owl-White { - background-image: url(spritesmith-main-9.png); - background-position: -492px -900px; - width: 81px; - height: 99px; -} -.Pet-Owl-Zombie { - background-image: url(spritesmith-main-9.png); - background-position: -574px -900px; - width: 81px; - height: 99px; -} -.Pet-PandaCub-Base { - background-image: url(spritesmith-main-9.png); - background-position: -656px -900px; - width: 81px; - height: 99px; -} -.Pet-PandaCub-CottonCandyBlue { - background-image: url(spritesmith-main-9.png); - background-position: -738px -900px; - width: 81px; - height: 99px; -} -.Pet-PandaCub-CottonCandyPink { - background-image: url(spritesmith-main-9.png); - background-position: -820px -900px; - width: 81px; - height: 99px; -} -.Pet-PandaCub-Desert { - background-image: url(spritesmith-main-9.png); - background-position: -902px -900px; - width: 81px; - height: 99px; -} -.Pet-PandaCub-Golden { - background-image: url(spritesmith-main-9.png); - background-position: -984px -900px; - width: 81px; - height: 99px; -} -.Pet-PandaCub-Red { - background-image: url(spritesmith-main-9.png); - background-position: -1066px 0px; - width: 81px; - height: 99px; + background-position: -212px -115px; + width: 105px; + height: 114px; } -.Pet-PandaCub-Shade { +.Mount_Icon_Frog-CottonCandyBlue { background-image: url(spritesmith-main-9.png); - background-position: -1066px -100px; - width: 81px; - height: 99px; + background-position: -106px 0px; + width: 105px; + height: 114px; } -.Pet-PandaCub-Skeleton { +.Mount_Icon_Frog-CottonCandyPink { background-image: url(spritesmith-main-9.png); - background-position: -1066px -200px; - width: 81px; - height: 99px; + background-position: -212px 0px; + width: 105px; + height: 114px; } -.Pet-PandaCub-Spooky { +.Mount_Icon_Frog-Desert { background-image: url(spritesmith-main-9.png); - background-position: -1066px -300px; - width: 81px; - height: 99px; + background-position: 0px -115px; + width: 105px; + height: 114px; } -.Pet-PandaCub-White { +.Mount_Icon_Frog-Golden { background-image: url(spritesmith-main-9.png); - background-position: -1066px -400px; - width: 81px; - height: 99px; -} -.Pet-PandaCub-Zombie { - background-image: url(spritesmith-main-9.png); - background-position: -1066px -500px; - width: 81px; - height: 99px; -} -.Pet-Parrot-Base { - background-image: url(spritesmith-main-9.png); - background-position: -1066px -600px; - width: 81px; - height: 99px; -} -.Pet-Parrot-CottonCandyBlue { - background-image: url(spritesmith-main-9.png); - background-position: -1066px -700px; - width: 81px; - height: 99px; -} -.Pet-Parrot-CottonCandyPink { - background-image: url(spritesmith-main-9.png); - background-position: -1066px -800px; - width: 81px; - height: 99px; -} -.Pet-Parrot-Desert { - background-image: url(spritesmith-main-9.png); - background-position: -1066px -900px; - width: 81px; - height: 99px; -} -.Pet-Parrot-Golden { - background-image: url(spritesmith-main-9.png); - background-position: 0px -1000px; - width: 81px; - height: 99px; -} -.Pet-Parrot-Red { - background-image: url(spritesmith-main-9.png); - background-position: -82px -1000px; - width: 81px; - height: 99px; -} -.Pet-Parrot-Shade { - background-image: url(spritesmith-main-9.png); - background-position: -164px -1000px; - width: 81px; - height: 99px; -} -.Pet-Parrot-Skeleton { - background-image: url(spritesmith-main-9.png); - background-position: -246px -1000px; - width: 81px; - height: 99px; -} -.Pet-Parrot-White { - background-image: url(spritesmith-main-9.png); - background-position: -328px -1000px; - width: 81px; - height: 99px; -} -.Pet-Parrot-Zombie { - background-image: url(spritesmith-main-9.png); - background-position: -410px -1000px; - width: 81px; - height: 99px; -} -.Pet-Penguin-Base { - background-image: url(spritesmith-main-9.png); - background-position: -492px -1000px; - width: 81px; - height: 99px; + background-position: -106px -115px; + width: 105px; + height: 114px; } -.Pet-Penguin-CottonCandyBlue { +.Mount_Icon_Frog-Red { background-image: url(spritesmith-main-9.png); background-position: 0px 0px; + width: 105px; + height: 114px; +} +.Mount_Icon_Frog-Shade { + background-image: url(spritesmith-main-9.png); + background-position: -318px 0px; + width: 105px; + height: 114px; +} +.Mount_Icon_Frog-Skeleton { + background-image: url(spritesmith-main-9.png); + background-position: -318px -115px; + width: 105px; + height: 114px; +} +.Mount_Icon_Frog-White { + background-image: url(spritesmith-main-9.png); + background-position: 0px -230px; + width: 105px; + height: 114px; +} +.Mount_Icon_Frog-Zombie { + background-image: url(spritesmith-main-9.png); + background-position: -106px -230px; + width: 105px; + height: 114px; +} +.Mount_Icon_Gryphon-Base { + background-image: url(spritesmith-main-9.png); + background-position: -998px -200px; + width: 81px; + height: 99px; +} +.Mount_Icon_Gryphon-CottonCandyBlue { + background-image: url(spritesmith-main-9.png); + background-position: -998px -300px; + width: 81px; + height: 99px; +} +.Mount_Icon_Gryphon-CottonCandyPink { + background-image: url(spritesmith-main-9.png); + background-position: -998px -400px; + width: 81px; + height: 99px; +} +.Mount_Icon_Gryphon-Desert { + background-image: url(spritesmith-main-9.png); + background-position: -998px -500px; + width: 81px; + height: 99px; +} +.Mount_Icon_Gryphon-Golden { + background-image: url(spritesmith-main-9.png); + background-position: -998px -600px; + width: 81px; + height: 99px; +} +.Mount_Icon_Gryphon-Red { + background-image: url(spritesmith-main-9.png); + background-position: -998px -700px; + width: 81px; + height: 99px; +} +.Mount_Icon_Gryphon-RoyalPurple { + background-image: url(spritesmith-main-9.png); + background-position: -998px -800px; + width: 81px; + height: 99px; +} +.Mount_Icon_Gryphon-Shade { + background-image: url(spritesmith-main-9.png); + background-position: 0px -945px; + width: 81px; + height: 99px; +} +.Mount_Icon_Gryphon-Skeleton { + background-image: url(spritesmith-main-9.png); + background-position: -82px -945px; + width: 81px; + height: 99px; +} +.Mount_Icon_Gryphon-White { + background-image: url(spritesmith-main-9.png); + background-position: -164px -945px; + width: 81px; + height: 99px; +} +.Mount_Icon_Gryphon-Zombie { + background-image: url(spritesmith-main-9.png); + background-position: -246px -945px; + width: 81px; + height: 99px; +} +.Mount_Icon_Hedgehog-Base { + background-image: url(spritesmith-main-9.png); + background-position: -328px -945px; + width: 81px; + height: 99px; +} +.Mount_Icon_Hedgehog-CottonCandyBlue { + background-image: url(spritesmith-main-9.png); + background-position: -410px -945px; + width: 81px; + height: 99px; +} +.Mount_Icon_Hedgehog-CottonCandyPink { + background-image: url(spritesmith-main-9.png); + background-position: -492px -945px; + width: 81px; + height: 99px; +} +.Mount_Icon_Hedgehog-Desert { + background-image: url(spritesmith-main-9.png); + background-position: -574px -945px; + width: 81px; + height: 99px; +} +.Mount_Icon_Hedgehog-Golden { + background-image: url(spritesmith-main-9.png); + background-position: -656px -945px; + width: 81px; + height: 99px; +} +.Mount_Icon_Hedgehog-Red { + background-image: url(spritesmith-main-9.png); + background-position: -738px -945px; + width: 81px; + height: 99px; +} +.Mount_Icon_Hedgehog-Shade { + background-image: url(spritesmith-main-9.png); + background-position: -820px -945px; + width: 81px; + height: 99px; +} +.Mount_Icon_Hedgehog-Skeleton { + background-image: url(spritesmith-main-9.png); + background-position: -902px -945px; + width: 81px; + height: 99px; +} +.Mount_Icon_Hedgehog-White { + background-image: url(spritesmith-main-9.png); + background-position: -984px -945px; + width: 81px; + height: 99px; +} +.Mount_Icon_Hedgehog-Zombie { + background-image: url(spritesmith-main-9.png); + background-position: -1080px 0px; + width: 81px; + height: 99px; +} +.Mount_Icon_Horse-Base { + background-image: url(spritesmith-main-9.png); + background-position: -1080px -100px; + width: 81px; + height: 99px; +} +.Mount_Icon_Horse-CottonCandyBlue { + background-image: url(spritesmith-main-9.png); + background-position: -1080px -200px; + width: 81px; + height: 99px; +} +.Mount_Icon_Horse-CottonCandyPink { + background-image: url(spritesmith-main-9.png); + background-position: -1080px -300px; + width: 81px; + height: 99px; +} +.Mount_Icon_Horse-Desert { + background-image: url(spritesmith-main-9.png); + background-position: -1080px -400px; + width: 81px; + height: 99px; +} +.Mount_Icon_Horse-Golden { + background-image: url(spritesmith-main-9.png); + background-position: -1080px -500px; + width: 81px; + height: 99px; +} +.Mount_Icon_Horse-Red { + background-image: url(spritesmith-main-9.png); + background-position: -1080px -600px; + width: 81px; + height: 99px; +} +.Mount_Icon_Horse-Shade { + background-image: url(spritesmith-main-9.png); + background-position: -1080px -700px; + width: 81px; + height: 99px; +} +.Mount_Icon_Horse-Skeleton { + background-image: url(spritesmith-main-9.png); + background-position: -1080px -800px; + width: 81px; + height: 99px; +} +.Mount_Icon_Horse-White { + background-image: url(spritesmith-main-9.png); + background-position: -1080px -900px; + width: 81px; + height: 99px; +} +.Mount_Icon_Horse-Zombie { + background-image: url(spritesmith-main-9.png); + background-position: 0px -1045px; + width: 81px; + height: 99px; +} +.Mount_Icon_JackOLantern-Base { + background-image: url(spritesmith-main-9.png); + background-position: -318px -230px; + width: 90px; + height: 105px; +} +.Mount_Icon_LionCub-Base { + background-image: url(spritesmith-main-9.png); + background-position: -164px -1045px; + width: 81px; + height: 99px; +} +.Mount_Icon_LionCub-CottonCandyBlue { + background-image: url(spritesmith-main-9.png); + background-position: -246px -1045px; + width: 81px; + height: 99px; +} +.Mount_Icon_LionCub-CottonCandyPink { + background-image: url(spritesmith-main-9.png); + background-position: -328px -1045px; + width: 81px; + height: 99px; +} +.Mount_Icon_LionCub-Desert { + background-image: url(spritesmith-main-9.png); + background-position: -410px -1045px; + width: 81px; + height: 99px; +} +.Mount_Icon_LionCub-Ethereal { + background-image: url(spritesmith-main-9.png); + background-position: -492px -1045px; + width: 81px; + height: 99px; +} +.Mount_Icon_LionCub-Golden { + background-image: url(spritesmith-main-9.png); + background-position: -574px -1045px; + width: 81px; + height: 99px; +} +.Mount_Icon_LionCub-Peppermint { + background-image: url(spritesmith-main-9.png); + background-position: -656px -1045px; width: 81px; height: 99px; } -.Pet-Penguin-CottonCandyPink { +.Mount_Icon_LionCub-Red { background-image: url(spritesmith-main-9.png); - background-position: -656px -1000px; + background-position: -738px -1045px; width: 81px; height: 99px; } -.Pet-Penguin-Desert { +.Mount_Icon_LionCub-Shade { background-image: url(spritesmith-main-9.png); - background-position: -738px -1000px; + background-position: -820px -1045px; width: 81px; height: 99px; } -.Pet-Penguin-Golden { +.Mount_Icon_LionCub-Skeleton { background-image: url(spritesmith-main-9.png); - background-position: -820px -1000px; + background-position: -902px -1045px; width: 81px; height: 99px; } -.Pet-Penguin-Red { +.Mount_Icon_LionCub-Spooky { background-image: url(spritesmith-main-9.png); - background-position: -902px -1000px; + background-position: -984px -1045px; width: 81px; height: 99px; } -.Pet-Penguin-Shade { +.Mount_Icon_LionCub-White { background-image: url(spritesmith-main-9.png); - background-position: -984px -1000px; + background-position: -1066px -1045px; width: 81px; height: 99px; } -.Pet-Penguin-Skeleton { +.Mount_Icon_LionCub-Zombie { background-image: url(spritesmith-main-9.png); - background-position: -1066px -1000px; + background-position: -1162px 0px; width: 81px; height: 99px; } -.Pet-Penguin-White { +.Mount_Icon_Mammoth-Base { background-image: url(spritesmith-main-9.png); - background-position: -1148px 0px; + background-position: -1162px -100px; width: 81px; height: 99px; } -.Pet-Penguin-Zombie { +.Mount_Icon_MantisShrimp-Base { background-image: url(spritesmith-main-9.png); - background-position: -1148px -100px; + background-position: -1162px -200px; width: 81px; height: 99px; } -.Pet-Phoenix-Base { +.Mount_Icon_Octopus-Base { background-image: url(spritesmith-main-9.png); - background-position: -1148px -200px; + background-position: -1162px -300px; width: 81px; height: 99px; } -.Pet-Rat-Base { +.Mount_Icon_Octopus-CottonCandyBlue { background-image: url(spritesmith-main-9.png); - background-position: -1148px -300px; + background-position: -1162px -400px; width: 81px; height: 99px; } -.Pet-Rat-CottonCandyBlue { +.Mount_Icon_Octopus-CottonCandyPink { background-image: url(spritesmith-main-9.png); - background-position: -1148px -400px; + background-position: -1162px -500px; width: 81px; height: 99px; } -.Pet-Rat-CottonCandyPink { +.Mount_Icon_Octopus-Desert { background-image: url(spritesmith-main-9.png); - background-position: -1148px -500px; + background-position: -1162px -600px; width: 81px; height: 99px; } -.Pet-Rat-Desert { +.Mount_Icon_Octopus-Golden { background-image: url(spritesmith-main-9.png); - background-position: -1148px -600px; + background-position: -1162px -700px; width: 81px; height: 99px; } -.Pet-Rat-Golden { +.Mount_Icon_Octopus-Red { background-image: url(spritesmith-main-9.png); - background-position: -1148px -700px; + background-position: -1162px -800px; width: 81px; height: 99px; } -.Pet-Rat-Red { +.Mount_Icon_Octopus-Shade { background-image: url(spritesmith-main-9.png); - background-position: -1148px -800px; + background-position: -1162px -900px; width: 81px; height: 99px; } -.Pet-Rat-Shade { +.Mount_Icon_Octopus-Skeleton { background-image: url(spritesmith-main-9.png); - background-position: -1148px -900px; + background-position: -1162px -1000px; width: 81px; height: 99px; } -.Pet-Rat-Skeleton { +.Mount_Icon_Octopus-White { background-image: url(spritesmith-main-9.png); - background-position: -1148px -1000px; + background-position: -1244px 0px; width: 81px; height: 99px; } -.Pet-Rat-White { +.Mount_Icon_Octopus-Zombie { background-image: url(spritesmith-main-9.png); - background-position: 0px -1100px; + background-position: -424px 0px; width: 81px; height: 99px; } -.Pet-Rat-Zombie { +.Mount_Icon_Orca-Base { background-image: url(spritesmith-main-9.png); - background-position: -82px -1100px; + background-position: -1244px -200px; width: 81px; height: 99px; } -.Pet-Rock-Base { +.Mount_Icon_Owl-Base { background-image: url(spritesmith-main-9.png); - background-position: -164px -1100px; + background-position: -1244px -300px; width: 81px; height: 99px; } -.Pet-Rock-CottonCandyBlue { +.Mount_Icon_Owl-CottonCandyBlue { background-image: url(spritesmith-main-9.png); - background-position: -246px -1100px; + background-position: -1244px -400px; width: 81px; height: 99px; } -.Pet-Rock-CottonCandyPink { +.Mount_Icon_Owl-CottonCandyPink { background-image: url(spritesmith-main-9.png); - background-position: -328px -1100px; + background-position: -1244px -500px; width: 81px; height: 99px; } -.Pet-Rock-Desert { +.Mount_Icon_Owl-Desert { background-image: url(spritesmith-main-9.png); - background-position: -410px -1100px; + background-position: -1244px -600px; width: 81px; height: 99px; } -.Pet-Rock-Golden { +.Mount_Icon_Owl-Golden { background-image: url(spritesmith-main-9.png); - background-position: -492px -1100px; + background-position: -1244px -700px; width: 81px; height: 99px; } -.Pet-Rock-Red { +.Mount_Icon_Owl-Red { background-image: url(spritesmith-main-9.png); - background-position: -574px -1100px; + background-position: -1244px -800px; width: 81px; height: 99px; } -.Pet-Rock-Shade { +.Mount_Icon_Owl-Shade { background-image: url(spritesmith-main-9.png); - background-position: -656px -1100px; + background-position: -1244px -900px; width: 81px; height: 99px; } -.Pet-Rock-Skeleton { +.Mount_Icon_Owl-Skeleton { background-image: url(spritesmith-main-9.png); - background-position: -738px -1100px; + background-position: -1244px -1000px; width: 81px; height: 99px; } -.Pet-Rock-White { +.Mount_Icon_Owl-White { background-image: url(spritesmith-main-9.png); - background-position: -820px -1100px; + background-position: 0px -1145px; width: 81px; height: 99px; } -.Pet-Rock-Zombie { +.Mount_Icon_Owl-Zombie { background-image: url(spritesmith-main-9.png); - background-position: -902px -1100px; + background-position: -82px -1145px; width: 81px; height: 99px; } -.Pet-Rooster-Base { +.Mount_Icon_PandaCub-Base { background-image: url(spritesmith-main-9.png); - background-position: -984px -1100px; + background-position: -164px -1145px; width: 81px; height: 99px; } -.Pet-Rooster-CottonCandyBlue { +.Mount_Icon_PandaCub-CottonCandyBlue { background-image: url(spritesmith-main-9.png); - background-position: -1066px -1100px; + background-position: -246px -1145px; width: 81px; height: 99px; } -.Pet-Rooster-CottonCandyPink { +.Mount_Icon_PandaCub-CottonCandyPink { background-image: url(spritesmith-main-9.png); - background-position: -1148px -1100px; + background-position: -328px -1145px; width: 81px; height: 99px; } -.Pet-Rooster-Desert { +.Mount_Icon_PandaCub-Desert { background-image: url(spritesmith-main-9.png); - background-position: -1230px 0px; + background-position: -410px -1145px; width: 81px; height: 99px; } -.Pet-Rooster-Golden { +.Mount_Icon_PandaCub-Golden { background-image: url(spritesmith-main-9.png); - background-position: -1230px -100px; + background-position: -492px -1145px; width: 81px; height: 99px; } -.Pet-Rooster-Red { +.Mount_Icon_PandaCub-Peppermint { background-image: url(spritesmith-main-9.png); - background-position: -1230px -200px; + background-position: -574px -1145px; width: 81px; height: 99px; } -.Pet-Rooster-Shade { +.Mount_Icon_PandaCub-Red { background-image: url(spritesmith-main-9.png); - background-position: -1230px -300px; + background-position: -656px -1145px; width: 81px; height: 99px; } -.Pet-Rooster-Skeleton { +.Mount_Icon_PandaCub-Shade { background-image: url(spritesmith-main-9.png); - background-position: -1230px -400px; + background-position: -738px -1145px; width: 81px; height: 99px; } -.Pet-Rooster-White { +.Mount_Icon_PandaCub-Skeleton { background-image: url(spritesmith-main-9.png); - background-position: -1230px -500px; + background-position: -820px -1145px; width: 81px; height: 99px; } -.Pet-Rooster-Zombie { +.Mount_Icon_PandaCub-Spooky { background-image: url(spritesmith-main-9.png); - background-position: -1230px -600px; + background-position: -902px -1145px; width: 81px; height: 99px; } -.Pet-Seahorse-Base { +.Mount_Icon_PandaCub-White { background-image: url(spritesmith-main-9.png); - background-position: -1230px -700px; + background-position: -984px -1145px; width: 81px; height: 99px; } -.Pet-Seahorse-CottonCandyBlue { +.Mount_Icon_PandaCub-Zombie { background-image: url(spritesmith-main-9.png); - background-position: -1230px -800px; + background-position: -1066px -1145px; width: 81px; height: 99px; } -.Pet-Seahorse-CottonCandyPink { +.Mount_Icon_Parrot-Base { background-image: url(spritesmith-main-9.png); - background-position: -1230px -900px; + background-position: -1148px -1145px; width: 81px; height: 99px; } -.Pet-Seahorse-Desert { +.Mount_Icon_Parrot-CottonCandyBlue { background-image: url(spritesmith-main-9.png); - background-position: -1230px -1000px; + background-position: -1230px -1145px; width: 81px; height: 99px; } -.Pet-Seahorse-Golden { +.Mount_Icon_Parrot-CottonCandyPink { background-image: url(spritesmith-main-9.png); - background-position: -1230px -1100px; + background-position: -1326px 0px; width: 81px; height: 99px; } -.Pet-Seahorse-Red { +.Mount_Icon_Parrot-Desert { background-image: url(spritesmith-main-9.png); - background-position: 0px -1200px; + background-position: -1326px -100px; width: 81px; height: 99px; } -.Pet-Seahorse-Shade { +.Mount_Icon_Parrot-Golden { background-image: url(spritesmith-main-9.png); - background-position: -82px -1200px; + background-position: -1326px -200px; width: 81px; height: 99px; } -.Pet-Seahorse-Skeleton { +.Mount_Icon_Parrot-Red { background-image: url(spritesmith-main-9.png); - background-position: -164px -1200px; + background-position: -1326px -300px; width: 81px; height: 99px; } -.Pet-Seahorse-White { +.Mount_Icon_Parrot-Shade { background-image: url(spritesmith-main-9.png); - background-position: -246px -1200px; + background-position: -1326px -400px; width: 81px; height: 99px; } -.Pet-Seahorse-Zombie { +.Mount_Icon_Parrot-Skeleton { background-image: url(spritesmith-main-9.png); - background-position: -328px -1200px; + background-position: -1326px -500px; width: 81px; height: 99px; } -.Pet-Sheep-Base { +.Mount_Icon_Parrot-White { background-image: url(spritesmith-main-9.png); - background-position: -410px -1200px; + background-position: -1326px -600px; width: 81px; height: 99px; } -.Pet-Sheep-CottonCandyBlue { +.Mount_Icon_Parrot-Zombie { background-image: url(spritesmith-main-9.png); - background-position: -492px -1200px; + background-position: -1326px -700px; width: 81px; height: 99px; } -.Pet-Sheep-CottonCandyPink { +.Mount_Icon_Penguin-Base { background-image: url(spritesmith-main-9.png); - background-position: -574px -1200px; + background-position: -1326px -800px; width: 81px; height: 99px; } -.Pet-Sheep-Desert { +.Mount_Icon_Penguin-CottonCandyBlue { background-image: url(spritesmith-main-9.png); - background-position: -656px -1200px; + background-position: -1326px -900px; width: 81px; height: 99px; } -.Pet-Sheep-Golden { +.Mount_Icon_Penguin-CottonCandyPink { background-image: url(spritesmith-main-9.png); - background-position: -738px -1200px; + background-position: -1326px -1000px; width: 81px; height: 99px; } -.Pet-Sheep-Red { +.Mount_Icon_Penguin-Desert { background-image: url(spritesmith-main-9.png); - background-position: -820px -1200px; + background-position: -1326px -1100px; width: 81px; height: 99px; } -.Pet-Sheep-Shade { +.Mount_Icon_Penguin-Golden { background-image: url(spritesmith-main-9.png); - background-position: -902px -1200px; + background-position: 0px -1245px; width: 81px; height: 99px; } -.Pet-Sheep-Skeleton { +.Mount_Icon_Penguin-Red { background-image: url(spritesmith-main-9.png); - background-position: -984px -1200px; + background-position: -82px -1245px; width: 81px; height: 99px; } -.Pet-Sheep-White { +.Mount_Icon_Penguin-Shade { background-image: url(spritesmith-main-9.png); - background-position: -1066px -1200px; + background-position: -164px -1245px; width: 81px; height: 99px; } -.Pet-Sheep-Zombie { +.Mount_Icon_Penguin-Skeleton { background-image: url(spritesmith-main-9.png); - background-position: -1148px -1200px; + background-position: -246px -1245px; width: 81px; height: 99px; } -.Pet-Slime-Base { +.Mount_Icon_Penguin-White { background-image: url(spritesmith-main-9.png); - background-position: -1230px -1200px; + background-position: -328px -1245px; width: 81px; height: 99px; } -.Pet-Slime-CottonCandyBlue { +.Mount_Icon_Penguin-Zombie { background-image: url(spritesmith-main-9.png); - background-position: -1312px 0px; + background-position: -410px -1245px; width: 81px; height: 99px; } -.Pet-Slime-CottonCandyPink { +.Mount_Icon_Phoenix-Base { background-image: url(spritesmith-main-9.png); - background-position: -1312px -100px; + background-position: -212px -230px; + width: 105px; + height: 105px; +} +.Mount_Icon_Rat-Base { + background-image: url(spritesmith-main-9.png); + background-position: -574px -1245px; + width: 81px; + height: 99px; +} +.Mount_Icon_Rat-CottonCandyBlue { + background-image: url(spritesmith-main-9.png); + background-position: -656px -1245px; + width: 81px; + height: 99px; +} +.Mount_Icon_Rat-CottonCandyPink { + background-image: url(spritesmith-main-9.png); + background-position: -738px -1245px; + width: 81px; + height: 99px; +} +.Mount_Icon_Rat-Desert { + background-image: url(spritesmith-main-9.png); + background-position: -820px -1245px; + width: 81px; + height: 99px; +} +.Mount_Icon_Rat-Golden { + background-image: url(spritesmith-main-9.png); + background-position: -902px -1245px; + width: 81px; + height: 99px; +} +.Mount_Icon_Rat-Red { + background-image: url(spritesmith-main-9.png); + background-position: -984px -1245px; + width: 81px; + height: 99px; +} +.Mount_Icon_Rat-Shade { + background-image: url(spritesmith-main-9.png); + background-position: -1066px -1245px; + width: 81px; + height: 99px; +} +.Mount_Icon_Rat-Skeleton { + background-image: url(spritesmith-main-9.png); + background-position: -1148px -1245px; + width: 81px; + height: 99px; +} +.Mount_Icon_Rat-White { + background-image: url(spritesmith-main-9.png); + background-position: -1230px -1245px; + width: 81px; + height: 99px; +} +.Mount_Icon_Rat-Zombie { + background-image: url(spritesmith-main-9.png); + background-position: -1312px -1245px; + width: 81px; + height: 99px; +} +.Mount_Icon_Rock-Base { + background-image: url(spritesmith-main-9.png); + background-position: -1408px 0px; + width: 81px; + height: 99px; +} +.Mount_Icon_Rock-CottonCandyBlue { + background-image: url(spritesmith-main-9.png); + background-position: -1408px -100px; + width: 81px; + height: 99px; +} +.Mount_Icon_Rock-CottonCandyPink { + background-image: url(spritesmith-main-9.png); + background-position: -1408px -200px; + width: 81px; + height: 99px; +} +.Mount_Icon_Rock-Desert { + background-image: url(spritesmith-main-9.png); + background-position: -1408px -300px; + width: 81px; + height: 99px; +} +.Mount_Icon_Rock-Golden { + background-image: url(spritesmith-main-9.png); + background-position: -1408px -400px; + width: 81px; + height: 99px; +} +.Mount_Icon_Rock-Red { + background-image: url(spritesmith-main-9.png); + background-position: -1408px -500px; + width: 81px; + height: 99px; +} +.Mount_Icon_Rock-Shade { + background-image: url(spritesmith-main-9.png); + background-position: -1408px -600px; + width: 81px; + height: 99px; +} +.Mount_Icon_Rock-Skeleton { + background-image: url(spritesmith-main-9.png); + background-position: -1408px -700px; + width: 81px; + height: 99px; +} +.Mount_Icon_Rock-White { + background-image: url(spritesmith-main-9.png); + background-position: -1408px -800px; + width: 81px; + height: 99px; +} +.Mount_Icon_Rock-Zombie { + background-image: url(spritesmith-main-9.png); + background-position: -1408px -900px; + width: 81px; + height: 99px; +} +.Mount_Icon_Rooster-Base { + background-image: url(spritesmith-main-9.png); + background-position: -1408px -1000px; + width: 81px; + height: 99px; +} +.Mount_Icon_Rooster-CottonCandyBlue { + background-image: url(spritesmith-main-9.png); + background-position: -1408px -1100px; + width: 81px; + height: 99px; +} +.Mount_Icon_Rooster-CottonCandyPink { + background-image: url(spritesmith-main-9.png); + background-position: -1408px -1200px; + width: 81px; + height: 99px; +} +.Mount_Icon_Rooster-Desert { + background-image: url(spritesmith-main-9.png); + background-position: 0px -1345px; + width: 81px; + height: 99px; +} +.Mount_Icon_Rooster-Golden { + background-image: url(spritesmith-main-9.png); + background-position: -82px -1345px; + width: 81px; + height: 99px; +} +.Mount_Icon_Rooster-Red { + background-image: url(spritesmith-main-9.png); + background-position: -164px -1345px; + width: 81px; + height: 99px; +} +.Mount_Icon_Rooster-Shade { + background-image: url(spritesmith-main-9.png); + background-position: -246px -1345px; + width: 81px; + height: 99px; +} +.Mount_Icon_Rooster-Skeleton { + background-image: url(spritesmith-main-9.png); + background-position: -328px -1345px; + width: 81px; + height: 99px; +} +.Mount_Icon_Rooster-White { + background-image: url(spritesmith-main-9.png); + background-position: -410px -1345px; + width: 81px; + height: 99px; +} +.Mount_Icon_Rooster-Zombie { + background-image: url(spritesmith-main-9.png); + background-position: -492px -1345px; + width: 81px; + height: 99px; +} +.Mount_Icon_Seahorse-Base { + background-image: url(spritesmith-main-9.png); + background-position: -574px -1345px; + width: 81px; + height: 99px; +} +.Mount_Icon_Seahorse-CottonCandyBlue { + background-image: url(spritesmith-main-9.png); + background-position: -656px -1345px; + width: 81px; + height: 99px; +} +.Mount_Icon_Seahorse-CottonCandyPink { + background-image: url(spritesmith-main-9.png); + background-position: -738px -1345px; width: 81px; height: 99px; } -.Pet-Slime-Desert { +.Mount_Icon_Seahorse-Desert { background-image: url(spritesmith-main-9.png); - background-position: -1312px -200px; + background-position: -820px -1345px; width: 81px; height: 99px; } -.Pet-Slime-Golden { +.Mount_Icon_Seahorse-Golden { background-image: url(spritesmith-main-9.png); - background-position: -1312px -300px; + background-position: -902px -1345px; width: 81px; height: 99px; } -.Pet-Slime-Red { +.Mount_Icon_Seahorse-Red { background-image: url(spritesmith-main-9.png); - background-position: -1312px -400px; + background-position: -984px -1345px; width: 81px; height: 99px; } -.Pet-Slime-Shade { +.Mount_Icon_Seahorse-Shade { background-image: url(spritesmith-main-9.png); - background-position: -1312px -500px; + background-position: -1066px -1345px; width: 81px; height: 99px; } -.Pet-Slime-Skeleton { +.Mount_Icon_Seahorse-Skeleton { background-image: url(spritesmith-main-9.png); - background-position: -1312px -600px; + background-position: -1148px -1345px; width: 81px; height: 99px; } -.Pet-Slime-White { +.Mount_Icon_Seahorse-White { background-image: url(spritesmith-main-9.png); - background-position: -1312px -700px; + background-position: -1230px -1345px; width: 81px; height: 99px; } -.Pet-Slime-Zombie { +.Mount_Icon_Seahorse-Zombie { background-image: url(spritesmith-main-9.png); - background-position: -1312px -800px; + background-position: -1312px -1345px; width: 81px; height: 99px; } -.Pet-Snake-Base { +.Mount_Icon_Sheep-Base { background-image: url(spritesmith-main-9.png); - background-position: -1312px -900px; + background-position: -1394px -1345px; width: 81px; height: 99px; } -.Pet-Snake-CottonCandyBlue { +.Mount_Icon_Sheep-CottonCandyBlue { background-image: url(spritesmith-main-9.png); - background-position: -1312px -1000px; + background-position: -1490px 0px; width: 81px; height: 99px; } -.Pet-Snake-CottonCandyPink { +.Mount_Icon_Sheep-CottonCandyPink { background-image: url(spritesmith-main-9.png); - background-position: -1312px -1100px; + background-position: -1490px -100px; width: 81px; height: 99px; } -.Pet-Snake-Desert { +.Mount_Icon_Sheep-Desert { background-image: url(spritesmith-main-9.png); - background-position: -1312px -1200px; + background-position: -1490px -200px; width: 81px; height: 99px; } -.Pet-Snake-Golden { +.Mount_Icon_Sheep-Golden { background-image: url(spritesmith-main-9.png); - background-position: -1394px 0px; + background-position: -1490px -300px; width: 81px; height: 99px; } -.Pet-Snake-Red { +.Mount_Icon_Sheep-Red { background-image: url(spritesmith-main-9.png); - background-position: -1394px -100px; + background-position: -1490px -400px; width: 81px; height: 99px; } -.Pet-Snake-Shade { +.Mount_Icon_Sheep-Shade { background-image: url(spritesmith-main-9.png); - background-position: -1394px -200px; + background-position: -1490px -500px; width: 81px; height: 99px; } -.Pet-Snake-Skeleton { +.Mount_Icon_Sheep-Skeleton { background-image: url(spritesmith-main-9.png); - background-position: -1394px -300px; + background-position: -1490px -600px; width: 81px; height: 99px; } -.Pet-Snake-White { +.Mount_Icon_Sheep-White { background-image: url(spritesmith-main-9.png); - background-position: -1394px -400px; + background-position: -1490px -700px; width: 81px; height: 99px; } -.Pet-Snake-Zombie { +.Mount_Icon_Sheep-Zombie { background-image: url(spritesmith-main-9.png); - background-position: -1394px -500px; + background-position: -1490px -800px; width: 81px; height: 99px; } -.Pet-Spider-Base { +.Mount_Icon_Slime-Base { background-image: url(spritesmith-main-9.png); - background-position: -1394px -600px; + background-position: -1490px -900px; width: 81px; height: 99px; } -.Pet-Spider-CottonCandyBlue { +.Mount_Icon_Slime-CottonCandyBlue { background-image: url(spritesmith-main-9.png); - background-position: -1394px -700px; + background-position: -1490px -1000px; width: 81px; height: 99px; } -.Pet-Spider-CottonCandyPink { +.Mount_Icon_Slime-CottonCandyPink { background-image: url(spritesmith-main-9.png); - background-position: -1394px -800px; + background-position: -1490px -1100px; width: 81px; height: 99px; } -.Pet-Spider-Desert { +.Mount_Icon_Slime-Desert { background-image: url(spritesmith-main-9.png); - background-position: -1394px -900px; + background-position: -1490px -1200px; width: 81px; height: 99px; } -.Pet-Spider-Golden { +.Mount_Icon_Slime-Golden { background-image: url(spritesmith-main-9.png); - background-position: -1394px -1000px; + background-position: -1490px -1300px; width: 81px; height: 99px; } -.Pet-Spider-Red { +.Mount_Icon_Slime-Red { background-image: url(spritesmith-main-9.png); - background-position: -1394px -1100px; + background-position: 0px -1445px; width: 81px; height: 99px; } -.Pet-Spider-Shade { +.Mount_Icon_Slime-Shade { background-image: url(spritesmith-main-9.png); - background-position: -1394px -1200px; + background-position: -82px -1445px; width: 81px; height: 99px; } -.Pet-Spider-Skeleton { +.Mount_Icon_Slime-Skeleton { background-image: url(spritesmith-main-9.png); - background-position: 0px -1300px; + background-position: -164px -1445px; width: 81px; height: 99px; } -.Pet-Spider-White { +.Mount_Icon_Slime-White { background-image: url(spritesmith-main-9.png); - background-position: -82px -1300px; + background-position: -246px -1445px; width: 81px; height: 99px; } -.Pet-Spider-Zombie { +.Mount_Icon_Slime-Zombie { background-image: url(spritesmith-main-9.png); - background-position: -164px -1300px; + background-position: -328px -1445px; width: 81px; height: 99px; } -.Pet-TRex-Base { +.Mount_Icon_Snake-Base { background-image: url(spritesmith-main-9.png); - background-position: -246px -1300px; + background-position: -410px -1445px; width: 81px; height: 99px; } -.Pet-TRex-CottonCandyBlue { +.Mount_Icon_Snake-CottonCandyBlue { background-image: url(spritesmith-main-9.png); - background-position: -328px -1300px; + background-position: -492px -1445px; width: 81px; height: 99px; } -.Pet-TRex-CottonCandyPink { +.Mount_Icon_Snake-CottonCandyPink { background-image: url(spritesmith-main-9.png); - background-position: -410px -1300px; + background-position: -574px -1445px; width: 81px; height: 99px; } -.Pet-TRex-Desert { +.Mount_Icon_Snake-Desert { background-image: url(spritesmith-main-9.png); - background-position: -492px -1300px; + background-position: -656px -1445px; width: 81px; height: 99px; } -.Pet-TRex-Golden { +.Mount_Icon_Snake-Golden { background-image: url(spritesmith-main-9.png); - background-position: -574px -1300px; + background-position: -738px -1445px; width: 81px; height: 99px; } -.Pet-TRex-Red { +.Mount_Icon_Snake-Red { background-image: url(spritesmith-main-9.png); - background-position: -656px -1300px; + background-position: -820px -1445px; width: 81px; height: 99px; } -.Pet-TRex-Shade { +.Mount_Icon_Snake-Shade { background-image: url(spritesmith-main-9.png); - background-position: -738px -1300px; + background-position: -902px -1445px; width: 81px; height: 99px; } -.Pet-TRex-Skeleton { +.Mount_Icon_Snake-Skeleton { background-image: url(spritesmith-main-9.png); - background-position: -820px -1300px; + background-position: -984px -1445px; width: 81px; height: 99px; } -.Pet-TRex-White { +.Mount_Icon_Snake-White { background-image: url(spritesmith-main-9.png); - background-position: -902px -1300px; + background-position: -1066px -1445px; width: 81px; height: 99px; } -.Pet-TRex-Zombie { +.Mount_Icon_Snake-Zombie { background-image: url(spritesmith-main-9.png); - background-position: -984px -1300px; + background-position: -1148px -1445px; width: 81px; height: 99px; } -.Pet-Tiger-Veteran { +.Mount_Icon_Spider-Base { background-image: url(spritesmith-main-9.png); - background-position: -1066px -1300px; + background-position: -1230px -1445px; width: 81px; height: 99px; } -.Pet-TigerCub-Base { +.Mount_Icon_Spider-CottonCandyBlue { background-image: url(spritesmith-main-9.png); - background-position: -1148px -1300px; + background-position: -1312px -1445px; width: 81px; height: 99px; } -.Pet-TigerCub-CottonCandyBlue { +.Mount_Icon_Spider-CottonCandyPink { background-image: url(spritesmith-main-9.png); - background-position: -1230px -1300px; + background-position: -1394px -1445px; width: 81px; height: 99px; } -.Pet-TigerCub-CottonCandyPink { +.Mount_Icon_Spider-Desert { background-image: url(spritesmith-main-9.png); - background-position: -1312px -1300px; + background-position: -1476px -1445px; width: 81px; height: 99px; } -.Pet-TigerCub-Desert { +.Mount_Icon_Spider-Golden { background-image: url(spritesmith-main-9.png); - background-position: -1394px -1300px; + background-position: -1572px 0px; width: 81px; height: 99px; } -.Pet-TigerCub-Golden { +.Mount_Icon_Spider-Red { background-image: url(spritesmith-main-9.png); - background-position: -1476px 0px; + background-position: -1572px -100px; width: 81px; height: 99px; } -.Pet-TigerCub-Red { +.Mount_Icon_Spider-Shade { background-image: url(spritesmith-main-9.png); - background-position: -1476px -100px; + background-position: -1572px -200px; width: 81px; height: 99px; } -.Pet-TigerCub-Shade { +.Mount_Icon_Spider-Skeleton { background-image: url(spritesmith-main-9.png); - background-position: -1476px -200px; + background-position: -1572px -300px; width: 81px; height: 99px; } -.Pet-TigerCub-Skeleton { +.Mount_Icon_Spider-White { background-image: url(spritesmith-main-9.png); - background-position: -1476px -300px; + background-position: -1572px -400px; width: 81px; height: 99px; } -.Pet-TigerCub-Spooky { +.Mount_Icon_Spider-Zombie { background-image: url(spritesmith-main-9.png); - background-position: -1476px -400px; + background-position: -1572px -500px; width: 81px; height: 99px; } -.Pet-TigerCub-White { +.Mount_Icon_TRex-Base { background-image: url(spritesmith-main-9.png); - background-position: -1476px -500px; + background-position: -1572px -600px; width: 81px; height: 99px; } -.Pet-TigerCub-Zombie { +.Mount_Icon_TRex-CottonCandyBlue { background-image: url(spritesmith-main-9.png); - background-position: -1476px -600px; + background-position: -1572px -700px; width: 81px; height: 99px; } -.Pet-Turkey-Base { +.Mount_Icon_TRex-CottonCandyPink { background-image: url(spritesmith-main-9.png); - background-position: -1476px -700px; + background-position: -1572px -800px; width: 81px; height: 99px; } -.Pet-Turkey-Gilded { +.Mount_Icon_TRex-Desert { background-image: url(spritesmith-main-9.png); - background-position: -1476px -800px; + background-position: -1572px -900px; width: 81px; height: 99px; } -.Pet-Whale-Base { +.Mount_Icon_TRex-Golden { background-image: url(spritesmith-main-9.png); - background-position: -1476px -900px; + background-position: -1572px -1000px; width: 81px; height: 99px; } -.Pet-Whale-CottonCandyBlue { +.Mount_Icon_TRex-Red { background-image: url(spritesmith-main-9.png); - background-position: -1476px -1000px; + background-position: -1572px -1100px; width: 81px; height: 99px; } -.Pet-Whale-CottonCandyPink { +.Mount_Icon_TRex-Shade { background-image: url(spritesmith-main-9.png); - background-position: -1476px -1100px; + background-position: -1572px -1200px; width: 81px; height: 99px; } -.Pet-Whale-Desert { +.Mount_Icon_TRex-Skeleton { background-image: url(spritesmith-main-9.png); - background-position: -1476px -1200px; + background-position: -1572px -1300px; width: 81px; height: 99px; } -.Pet-Whale-Golden { +.Mount_Icon_TRex-White { background-image: url(spritesmith-main-9.png); - background-position: -1476px -1300px; + background-position: -1572px -1400px; width: 81px; height: 99px; } -.Pet-Whale-Red { +.Mount_Icon_TRex-Zombie { background-image: url(spritesmith-main-9.png); - background-position: 0px -1400px; + background-position: 0px -1545px; width: 81px; height: 99px; } -.Pet-Whale-Shade { +.Mount_Icon_TigerCub-Base { background-image: url(spritesmith-main-9.png); - background-position: -82px -1400px; + background-position: -82px -1545px; width: 81px; height: 99px; } -.Pet-Whale-Skeleton { +.Mount_Icon_TigerCub-CottonCandyBlue { background-image: url(spritesmith-main-9.png); - background-position: -164px -1400px; + background-position: -164px -1545px; width: 81px; height: 99px; } -.Pet-Whale-White { +.Mount_Icon_TigerCub-CottonCandyPink { background-image: url(spritesmith-main-9.png); - background-position: -246px -1400px; + background-position: -246px -1545px; width: 81px; height: 99px; } -.Pet-Whale-Zombie { +.Mount_Icon_TigerCub-Desert { background-image: url(spritesmith-main-9.png); - background-position: -328px -1400px; + background-position: -328px -1545px; width: 81px; height: 99px; } -.Pet-Wolf-Base { +.Mount_Icon_TigerCub-Golden { background-image: url(spritesmith-main-9.png); - background-position: -410px -1400px; + background-position: -410px -1545px; width: 81px; height: 99px; } -.Pet-Wolf-CottonCandyBlue { +.Mount_Icon_TigerCub-Peppermint { background-image: url(spritesmith-main-9.png); - background-position: -492px -1400px; + background-position: -492px -1545px; width: 81px; height: 99px; } -.Pet-Wolf-CottonCandyPink { +.Mount_Icon_TigerCub-Red { background-image: url(spritesmith-main-9.png); - background-position: -574px -1400px; + background-position: -574px -1545px; width: 81px; height: 99px; } -.Pet-Wolf-Desert { +.Mount_Icon_TigerCub-Shade { background-image: url(spritesmith-main-9.png); - background-position: -656px -1400px; + background-position: -656px -1545px; width: 81px; height: 99px; } -.Pet-Wolf-Golden { +.Mount_Icon_TigerCub-Skeleton { background-image: url(spritesmith-main-9.png); - background-position: -738px -1400px; + background-position: -738px -1545px; width: 81px; height: 99px; } -.Pet-Wolf-Red { +.Mount_Icon_TigerCub-Spooky { background-image: url(spritesmith-main-9.png); - background-position: -820px -1400px; + background-position: -820px -1545px; width: 81px; height: 99px; } -.Pet-Wolf-Shade { +.Mount_Icon_TigerCub-White { background-image: url(spritesmith-main-9.png); - background-position: -902px -1400px; + background-position: -902px -1545px; width: 81px; height: 99px; } -.Pet-Wolf-Skeleton { +.Mount_Icon_TigerCub-Zombie { background-image: url(spritesmith-main-9.png); - background-position: -984px -1400px; + background-position: -984px -1545px; width: 81px; height: 99px; } -.Pet-Wolf-Spooky { +.Mount_Icon_Turkey-Base { background-image: url(spritesmith-main-9.png); - background-position: -1066px -1400px; + background-position: -1066px -1545px; width: 81px; height: 99px; } -.Pet-Wolf-Veteran { +.Mount_Icon_Whale-Base { background-image: url(spritesmith-main-9.png); - background-position: -1148px -1400px; + background-position: -1148px -1545px; width: 81px; height: 99px; } -.Pet-Wolf-White { +.Mount_Icon_Whale-CottonCandyBlue { background-image: url(spritesmith-main-9.png); - background-position: -1230px -1400px; + background-position: -1230px -1545px; width: 81px; height: 99px; } -.Pet-Wolf-Zombie { +.Mount_Icon_Whale-CottonCandyPink { background-image: url(spritesmith-main-9.png); - background-position: -1312px -1400px; + background-position: -1312px -1545px; width: 81px; height: 99px; } -.Pet_HatchingPotion_Base { +.Mount_Icon_Whale-Desert { background-image: url(spritesmith-main-9.png); - background-position: -1443px -1400px; - width: 48px; - height: 51px; + background-position: -1394px -1545px; + width: 81px; + height: 99px; +} +.Mount_Icon_Whale-Golden { + background-image: url(spritesmith-main-9.png); + background-position: -1476px -1545px; + width: 81px; + height: 99px; +} +.Mount_Icon_Whale-Red { + background-image: url(spritesmith-main-9.png); + background-position: -1558px -1545px; + width: 81px; + height: 99px; } -.Pet_HatchingPotion_CottonCandyBlue { +.Mount_Icon_Whale-Shade { background-image: url(spritesmith-main-9.png); - background-position: -98px -1500px; - width: 48px; - height: 51px; + background-position: -1654px 0px; + width: 81px; + height: 99px; } -.Pet_HatchingPotion_CottonCandyPink { +.Mount_Icon_Whale-Skeleton { background-image: url(spritesmith-main-9.png); - background-position: -1492px -1400px; - width: 48px; - height: 51px; + background-position: -1654px -100px; + width: 81px; + height: 99px; } -.Pet_HatchingPotion_Desert { +.Mount_Icon_Whale-White { background-image: url(spritesmith-main-9.png); - background-position: 0px -1500px; - width: 48px; - height: 51px; + background-position: -1654px -200px; + width: 81px; + height: 99px; } -.Pet_HatchingPotion_Golden { +.Mount_Icon_Whale-Zombie { background-image: url(spritesmith-main-9.png); - background-position: -49px -1500px; - width: 48px; - height: 51px; + background-position: -1654px -300px; + width: 81px; + height: 99px; } -.Pet_HatchingPotion_Red { +.Mount_Icon_Wolf-Base { background-image: url(spritesmith-main-9.png); - background-position: -1394px -1400px; - width: 48px; - height: 51px; + background-position: -1654px -400px; + width: 81px; + height: 99px; } -.Pet_HatchingPotion_Shade { +.Mount_Icon_Wolf-CottonCandyBlue { background-image: url(spritesmith-main-9.png); - background-position: -147px -1500px; - width: 48px; - height: 51px; + background-position: -1654px -500px; + width: 81px; + height: 99px; } -.Pet_HatchingPotion_Skeleton { +.Mount_Icon_Wolf-CottonCandyPink { background-image: url(spritesmith-main-9.png); - background-position: -196px -1500px; - width: 48px; - height: 51px; + background-position: -1654px -600px; + width: 81px; + height: 99px; } -.Pet_HatchingPotion_Spooky { +.Mount_Icon_Wolf-Desert { background-image: url(spritesmith-main-9.png); - background-position: -245px -1500px; - width: 48px; - height: 51px; + background-position: -1654px -700px; + width: 81px; + height: 99px; } -.Pet_HatchingPotion_White { +.Mount_Icon_Wolf-Golden { background-image: url(spritesmith-main-9.png); - background-position: -294px -1500px; - width: 48px; - height: 51px; + background-position: -1654px -800px; + width: 81px; + height: 99px; } -.Pet_HatchingPotion_Zombie { +.Mount_Icon_Wolf-Peppermint { background-image: url(spritesmith-main-9.png); - background-position: -343px -1500px; - width: 48px; - height: 51px; + background-position: -1654px -900px; + width: 81px; + height: 99px; } diff --git a/common/dist/sprites/spritesmith-main-9.png b/common/dist/sprites/spritesmith-main-9.png index 9c3f9acdb3..bd13af3e17 100644 Binary files a/common/dist/sprites/spritesmith-main-9.png and b/common/dist/sprites/spritesmith-main-9.png differ diff --git a/common/img/sprites/spritesmith/backgrounds/background_alpine_slopes.png b/common/img/sprites/spritesmith/backgrounds/background_alpine_slopes.png new file mode 100644 index 0000000000..c7f871a7a5 Binary files /dev/null and b/common/img/sprites/spritesmith/backgrounds/background_alpine_slopes.png differ diff --git a/common/img/sprites/spritesmith/backgrounds/background_snowy_sunrise.png b/common/img/sprites/spritesmith/backgrounds/background_snowy_sunrise.png new file mode 100644 index 0000000000..a33bfb479e Binary files /dev/null and b/common/img/sprites/spritesmith/backgrounds/background_snowy_sunrise.png differ diff --git a/common/img/sprites/spritesmith/backgrounds/background_winter_town.png b/common/img/sprites/spritesmith/backgrounds/background_winter_town.png new file mode 100644 index 0000000000..07fdd16192 Binary files /dev/null and b/common/img/sprites/spritesmith/backgrounds/background_winter_town.png differ diff --git a/common/img/sprites/spritesmith/gear/armoire/broad_armor_armoire_crystalCrescentRobes.png b/common/img/sprites/spritesmith/gear/armoire/broad_armor_armoire_crystalCrescentRobes.png new file mode 100644 index 0000000000..e534a2d382 Binary files /dev/null and b/common/img/sprites/spritesmith/gear/armoire/broad_armor_armoire_crystalCrescentRobes.png differ diff --git a/common/img/sprites/spritesmith/gear/armoire/head_armoire_crystalCrescentHat.png b/common/img/sprites/spritesmith/gear/armoire/head_armoire_crystalCrescentHat.png new file mode 100644 index 0000000000..dc984780ed Binary files /dev/null and b/common/img/sprites/spritesmith/gear/armoire/head_armoire_crystalCrescentHat.png differ diff --git a/common/img/sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_crystalCrescentRobes.png b/common/img/sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_crystalCrescentRobes.png new file mode 100644 index 0000000000..0b86a2be34 Binary files /dev/null and b/common/img/sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_crystalCrescentRobes.png differ diff --git a/common/img/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_crystalCrescentHat.png b/common/img/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_crystalCrescentHat.png new file mode 100644 index 0000000000..36df5d828b Binary files /dev/null and b/common/img/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_crystalCrescentHat.png differ diff --git a/common/img/sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_blueLongbow.png b/common/img/sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_blueLongbow.png new file mode 100644 index 0000000000..a0fe1c08e1 Binary files /dev/null and b/common/img/sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_blueLongbow.png differ diff --git a/common/img/sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_crystalCrescentStaff.png b/common/img/sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_crystalCrescentStaff.png new file mode 100644 index 0000000000..bcc92165ab Binary files /dev/null and b/common/img/sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_crystalCrescentStaff.png differ diff --git a/common/img/sprites/spritesmith/gear/armoire/slim_armor_armoire_crystalCrescentRobes.png b/common/img/sprites/spritesmith/gear/armoire/slim_armor_armoire_crystalCrescentRobes.png new file mode 100644 index 0000000000..0f0a9d47fd Binary files /dev/null and b/common/img/sprites/spritesmith/gear/armoire/slim_armor_armoire_crystalCrescentRobes.png differ diff --git a/common/img/sprites/spritesmith/gear/armoire/weapon_armoire_blueLongbow.png b/common/img/sprites/spritesmith/gear/armoire/weapon_armoire_blueLongbow.png new file mode 100644 index 0000000000..f831544647 Binary files /dev/null and b/common/img/sprites/spritesmith/gear/armoire/weapon_armoire_blueLongbow.png differ diff --git a/common/img/sprites/spritesmith/gear/armoire/weapon_armoire_crystalCrescentStaff.png b/common/img/sprites/spritesmith/gear/armoire/weapon_armoire_crystalCrescentStaff.png new file mode 100644 index 0000000000..beb4412411 Binary files /dev/null and b/common/img/sprites/spritesmith/gear/armoire/weapon_armoire_crystalCrescentStaff.png differ diff --git a/common/img/sprites/spritesmith/quests/quest_vice2.png b/common/img/sprites/spritesmith/quests/quest_vice2.png index f4dae86ecd..3293b042b6 100644 Binary files a/common/img/sprites/spritesmith/quests/quest_vice2.png and b/common/img/sprites/spritesmith/quests/quest_vice2.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_BearCub-Peppermint.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_BearCub-Peppermint.png new file mode 100644 index 0000000000..5a11f6501f Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_BearCub-Peppermint.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cactus-Peppermint.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cactus-Peppermint.png new file mode 100644 index 0000000000..91c4c465ea Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cactus-Peppermint.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Dragon-Peppermint.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Dragon-Peppermint.png new file mode 100644 index 0000000000..339d92da67 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Dragon-Peppermint.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_FlyingPig-Peppermint.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_FlyingPig-Peppermint.png new file mode 100644 index 0000000000..43c378179b Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_FlyingPig-Peppermint.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Fox-Peppermint.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Fox-Peppermint.png new file mode 100644 index 0000000000..7043113cfc Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Fox-Peppermint.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_LionCub-Peppermint.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_LionCub-Peppermint.png new file mode 100644 index 0000000000..3811cb57bf Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_LionCub-Peppermint.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_PandaCub-Peppermint.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_PandaCub-Peppermint.png new file mode 100644 index 0000000000..5c585d4e1a Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_PandaCub-Peppermint.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_TigerCub-Peppermint.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_TigerCub-Peppermint.png new file mode 100644 index 0000000000..16003b7b7e Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_TigerCub-Peppermint.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Wolf-Peppermint.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Wolf-Peppermint.png new file mode 100644 index 0000000000..3ae28ef71a Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Wolf-Peppermint.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_BearCub-Peppermint.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_BearCub-Peppermint.png new file mode 100644 index 0000000000..7b2b044870 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_BearCub-Peppermint.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cactus-Peppermint.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cactus-Peppermint.png new file mode 100644 index 0000000000..688c0e9b7c Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cactus-Peppermint.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Dragon-Peppermint.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Dragon-Peppermint.png new file mode 100644 index 0000000000..10f92e6f46 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Dragon-Peppermint.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_FlyingPig-Peppermint.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_FlyingPig-Peppermint.png new file mode 100644 index 0000000000..051a6ccb0a Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_FlyingPig-Peppermint.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Fox-Peppermint.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Fox-Peppermint.png new file mode 100644 index 0000000000..e5f475e649 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Fox-Peppermint.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_LionCub-Peppermint.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_LionCub-Peppermint.png new file mode 100644 index 0000000000..7ae43239e4 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_LionCub-Peppermint.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_PandaCub-Peppermint.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_PandaCub-Peppermint.png new file mode 100644 index 0000000000..6f9103d4a9 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_PandaCub-Peppermint.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_TigerCub-Peppermint.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_TigerCub-Peppermint.png new file mode 100644 index 0000000000..ed1e3b217e Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_TigerCub-Peppermint.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Wolf-Peppermint.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Wolf-Peppermint.png new file mode 100644 index 0000000000..4c7fe3438e Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Wolf-Peppermint.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-Base.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-Base.png new file mode 100644 index 0000000000..b2ecc3a6a3 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-Base.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-CottonCandyBlue.png new file mode 100644 index 0000000000..595a2a75c4 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-CottonCandyBlue.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-CottonCandyPink.png new file mode 100644 index 0000000000..eafdeb5e34 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-CottonCandyPink.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-Desert.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-Desert.png new file mode 100644 index 0000000000..f2a66eab86 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-Desert.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-Golden.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-Golden.png new file mode 100644 index 0000000000..fb5d5307d6 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-Golden.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-Peppermint.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-Peppermint.png new file mode 100644 index 0000000000..dbf5e1fef3 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-Peppermint.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-Polar.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-Polar.png new file mode 100644 index 0000000000..c72f80cb9e Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-Polar.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-Red.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-Red.png new file mode 100644 index 0000000000..b4b499fae3 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-Red.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-Shade.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-Shade.png new file mode 100644 index 0000000000..583b36a1c8 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-Shade.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-Skeleton.png new file mode 100644 index 0000000000..03300fc525 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-Skeleton.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-Spooky.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-Spooky.png new file mode 100644 index 0000000000..c5bf146ff1 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-Spooky.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-White.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-White.png new file mode 100644 index 0000000000..a4d74c6ffc Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-White.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-Zombie.png new file mode 100644 index 0000000000..bdcd68de81 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-Zombie.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Bunny-Base.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Bunny-Base.png new file mode 100644 index 0000000000..e8efd34709 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Bunny-Base.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Bunny-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Bunny-CottonCandyBlue.png new file mode 100644 index 0000000000..9c540c245c Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Bunny-CottonCandyBlue.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Bunny-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Bunny-CottonCandyPink.png new file mode 100644 index 0000000000..5635b544c3 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Bunny-CottonCandyPink.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Bunny-Desert.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Bunny-Desert.png new file mode 100644 index 0000000000..c5314d04ab Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Bunny-Desert.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Bunny-Golden.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Bunny-Golden.png new file mode 100644 index 0000000000..ef5fd81137 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Bunny-Golden.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Bunny-Red.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Bunny-Red.png new file mode 100644 index 0000000000..0a48a826db Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Bunny-Red.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Bunny-Shade.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Bunny-Shade.png new file mode 100644 index 0000000000..e1e2b01b84 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Bunny-Shade.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Bunny-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Bunny-Skeleton.png new file mode 100644 index 0000000000..37e78b977c Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Bunny-Skeleton.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Bunny-White.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Bunny-White.png new file mode 100644 index 0000000000..53e70420f5 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Bunny-White.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Bunny-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Bunny-Zombie.png new file mode 100644 index 0000000000..fdcb6f75b9 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Bunny-Zombie.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cactus-Base.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cactus-Base.png new file mode 100644 index 0000000000..b0e4d8ebdb Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cactus-Base.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cactus-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cactus-CottonCandyBlue.png new file mode 100644 index 0000000000..d92e2cc4c0 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cactus-CottonCandyBlue.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cactus-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cactus-CottonCandyPink.png new file mode 100644 index 0000000000..269d95aa7a Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cactus-CottonCandyPink.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cactus-Desert.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cactus-Desert.png new file mode 100644 index 0000000000..f490fb1df2 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cactus-Desert.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cactus-Golden.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cactus-Golden.png new file mode 100644 index 0000000000..2c568347ea Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cactus-Golden.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cactus-Peppermint.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cactus-Peppermint.png new file mode 100644 index 0000000000..95cc9bc6e8 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cactus-Peppermint.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cactus-Red.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cactus-Red.png new file mode 100644 index 0000000000..9f136795c9 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cactus-Red.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cactus-Shade.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cactus-Shade.png new file mode 100644 index 0000000000..2cdbc26ec8 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cactus-Shade.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cactus-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cactus-Skeleton.png new file mode 100644 index 0000000000..015c880eac Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cactus-Skeleton.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cactus-Spooky.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cactus-Spooky.png new file mode 100644 index 0000000000..e70126d86a Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cactus-Spooky.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cactus-White.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cactus-White.png new file mode 100644 index 0000000000..107ac48c1a Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cactus-White.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cactus-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cactus-Zombie.png new file mode 100644 index 0000000000..af05e3ae9b Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cactus-Zombie.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cheetah-Base.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cheetah-Base.png new file mode 100644 index 0000000000..15714c8cad Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cheetah-Base.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cheetah-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cheetah-CottonCandyBlue.png new file mode 100644 index 0000000000..8636e9ba25 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cheetah-CottonCandyBlue.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cheetah-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cheetah-CottonCandyPink.png new file mode 100644 index 0000000000..8d94df75d0 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cheetah-CottonCandyPink.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cheetah-Desert.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cheetah-Desert.png new file mode 100644 index 0000000000..0dcc56b407 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cheetah-Desert.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cheetah-Golden.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cheetah-Golden.png new file mode 100644 index 0000000000..ddcdef45cd Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cheetah-Golden.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cheetah-Red.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cheetah-Red.png new file mode 100644 index 0000000000..8a874a0246 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cheetah-Red.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cheetah-Shade.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cheetah-Shade.png new file mode 100644 index 0000000000..598e70eaca Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cheetah-Shade.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cheetah-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cheetah-Skeleton.png new file mode 100644 index 0000000000..196b944406 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cheetah-Skeleton.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cheetah-White.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cheetah-White.png new file mode 100644 index 0000000000..e40bebbe49 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cheetah-White.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cheetah-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cheetah-Zombie.png new file mode 100644 index 0000000000..52d512b50c Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cheetah-Zombie.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cuttlefish-Base.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cuttlefish-Base.png new file mode 100644 index 0000000000..abad17246a Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cuttlefish-Base.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cuttlefish-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cuttlefish-CottonCandyBlue.png new file mode 100644 index 0000000000..d569f22780 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cuttlefish-CottonCandyBlue.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cuttlefish-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cuttlefish-CottonCandyPink.png new file mode 100644 index 0000000000..641587a1dd Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cuttlefish-CottonCandyPink.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cuttlefish-Desert.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cuttlefish-Desert.png new file mode 100644 index 0000000000..35cae16e89 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cuttlefish-Desert.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cuttlefish-Golden.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cuttlefish-Golden.png new file mode 100644 index 0000000000..d29e37c22e Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cuttlefish-Golden.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cuttlefish-Red.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cuttlefish-Red.png new file mode 100644 index 0000000000..a9fbbd5da4 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cuttlefish-Red.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cuttlefish-Shade.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cuttlefish-Shade.png new file mode 100644 index 0000000000..26f90404e0 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cuttlefish-Shade.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cuttlefish-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cuttlefish-Skeleton.png new file mode 100644 index 0000000000..42c75923ba Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cuttlefish-Skeleton.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cuttlefish-White.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cuttlefish-White.png new file mode 100644 index 0000000000..4e0844ebe3 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cuttlefish-White.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cuttlefish-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cuttlefish-Zombie.png new file mode 100644 index 0000000000..ade7284239 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cuttlefish-Zombie.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Deer-Base.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Deer-Base.png new file mode 100644 index 0000000000..9e7d1acf42 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Deer-Base.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Deer-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Deer-CottonCandyBlue.png new file mode 100644 index 0000000000..c39f6e3eb1 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Deer-CottonCandyBlue.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Deer-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Deer-CottonCandyPink.png new file mode 100644 index 0000000000..321c1505df Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Deer-CottonCandyPink.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Deer-Desert.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Deer-Desert.png new file mode 100644 index 0000000000..0138e76607 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Deer-Desert.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Deer-Golden.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Deer-Golden.png new file mode 100644 index 0000000000..3ae26755f3 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Deer-Golden.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Deer-Red.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Deer-Red.png new file mode 100644 index 0000000000..76ef070915 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Deer-Red.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Deer-Shade.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Deer-Shade.png new file mode 100644 index 0000000000..354fcd9912 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Deer-Shade.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Deer-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Deer-Skeleton.png new file mode 100644 index 0000000000..3e3b4b789b Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Deer-Skeleton.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Deer-White.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Deer-White.png new file mode 100644 index 0000000000..e6d1baa2d4 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Deer-White.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Deer-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Deer-Zombie.png new file mode 100644 index 0000000000..0b3275b91a Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Deer-Zombie.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Dragon-Base.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Dragon-Base.png new file mode 100644 index 0000000000..f52e89ff32 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Dragon-Base.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Dragon-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Dragon-CottonCandyBlue.png new file mode 100644 index 0000000000..57f63af962 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Dragon-CottonCandyBlue.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Dragon-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Dragon-CottonCandyPink.png new file mode 100644 index 0000000000..7b1d490524 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Dragon-CottonCandyPink.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Dragon-Desert.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Dragon-Desert.png new file mode 100644 index 0000000000..7fcfbc8d59 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Dragon-Desert.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Dragon-Golden.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Dragon-Golden.png new file mode 100644 index 0000000000..08a111fed7 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Dragon-Golden.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Dragon-Peppermint.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Dragon-Peppermint.png new file mode 100644 index 0000000000..2c0c1379fd Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Dragon-Peppermint.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Dragon-Red.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Dragon-Red.png new file mode 100644 index 0000000000..17e2bab581 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Dragon-Red.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Dragon-Shade.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Dragon-Shade.png new file mode 100644 index 0000000000..cf5e5ebea4 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Dragon-Shade.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Dragon-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Dragon-Skeleton.png new file mode 100644 index 0000000000..6fcba30ec9 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Dragon-Skeleton.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Dragon-Spooky.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Dragon-Spooky.png new file mode 100644 index 0000000000..0c924d0b3a Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Dragon-Spooky.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Dragon-White.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Dragon-White.png new file mode 100644 index 0000000000..f1322f5675 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Dragon-White.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Dragon-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Dragon-Zombie.png new file mode 100644 index 0000000000..06a0907b39 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Dragon-Zombie.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Egg-Base.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Egg-Base.png new file mode 100644 index 0000000000..847ead69f3 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Egg-Base.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Egg-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Egg-CottonCandyBlue.png new file mode 100644 index 0000000000..62f2ae4571 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Egg-CottonCandyBlue.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Egg-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Egg-CottonCandyPink.png new file mode 100644 index 0000000000..32c479bd40 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Egg-CottonCandyPink.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Egg-Desert.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Egg-Desert.png new file mode 100644 index 0000000000..3494a204d3 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Egg-Desert.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Egg-Golden.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Egg-Golden.png new file mode 100644 index 0000000000..4e3d805504 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Egg-Golden.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Egg-Red.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Egg-Red.png new file mode 100644 index 0000000000..734b1f562d Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Egg-Red.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Egg-Shade.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Egg-Shade.png new file mode 100644 index 0000000000..c809f3e2c2 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Egg-Shade.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Egg-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Egg-Skeleton.png new file mode 100644 index 0000000000..209d595b3b Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Egg-Skeleton.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Egg-White.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Egg-White.png new file mode 100644 index 0000000000..b1c636ac8e Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Egg-White.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Egg-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Egg-Zombie.png new file mode 100644 index 0000000000..c3170a1c98 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Egg-Zombie.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_FlyingPig-Base.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_FlyingPig-Base.png new file mode 100644 index 0000000000..92aead6658 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_FlyingPig-Base.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_FlyingPig-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_FlyingPig-CottonCandyBlue.png new file mode 100644 index 0000000000..a334b98889 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_FlyingPig-CottonCandyBlue.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_FlyingPig-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_FlyingPig-CottonCandyPink.png new file mode 100644 index 0000000000..ec00e92cbd Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_FlyingPig-CottonCandyPink.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_FlyingPig-Desert.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_FlyingPig-Desert.png new file mode 100644 index 0000000000..9c136e295a Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_FlyingPig-Desert.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_FlyingPig-Golden.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_FlyingPig-Golden.png new file mode 100644 index 0000000000..ad16c065e0 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_FlyingPig-Golden.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_FlyingPig-Peppermint.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_FlyingPig-Peppermint.png new file mode 100644 index 0000000000..e967632fa0 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_FlyingPig-Peppermint.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_FlyingPig-Red.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_FlyingPig-Red.png new file mode 100644 index 0000000000..3cea798945 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_FlyingPig-Red.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_FlyingPig-Shade.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_FlyingPig-Shade.png new file mode 100644 index 0000000000..7785e3d840 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_FlyingPig-Shade.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_FlyingPig-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_FlyingPig-Skeleton.png new file mode 100644 index 0000000000..455e67977b Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_FlyingPig-Skeleton.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_FlyingPig-Spooky.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_FlyingPig-Spooky.png new file mode 100644 index 0000000000..aa8712f568 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_FlyingPig-Spooky.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_FlyingPig-White.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_FlyingPig-White.png new file mode 100644 index 0000000000..3288b41436 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_FlyingPig-White.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_FlyingPig-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_FlyingPig-Zombie.png new file mode 100644 index 0000000000..ca7cd2703e Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_FlyingPig-Zombie.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Fox-Base.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Fox-Base.png new file mode 100644 index 0000000000..a432085e5a Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Fox-Base.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Fox-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Fox-CottonCandyBlue.png new file mode 100644 index 0000000000..6b85079131 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Fox-CottonCandyBlue.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Fox-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Fox-CottonCandyPink.png new file mode 100644 index 0000000000..26e2694662 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Fox-CottonCandyPink.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Fox-Desert.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Fox-Desert.png new file mode 100644 index 0000000000..9952b70f46 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Fox-Desert.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Fox-Golden.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Fox-Golden.png new file mode 100644 index 0000000000..360a09f5e0 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Fox-Golden.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Fox-Peppermint.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Fox-Peppermint.png new file mode 100644 index 0000000000..e957801edd Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Fox-Peppermint.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Fox-Red.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Fox-Red.png new file mode 100644 index 0000000000..2c21df98b5 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Fox-Red.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Fox-Shade.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Fox-Shade.png new file mode 100644 index 0000000000..e5776c4099 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Fox-Shade.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Fox-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Fox-Skeleton.png new file mode 100644 index 0000000000..01a614ffa7 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Fox-Skeleton.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Fox-Spooky.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Fox-Spooky.png new file mode 100644 index 0000000000..97a3e7a5de Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Fox-Spooky.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Fox-White.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Fox-White.png new file mode 100644 index 0000000000..258addb05e Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Fox-White.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Fox-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Fox-Zombie.png new file mode 100644 index 0000000000..9c694446f6 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Fox-Zombie.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Frog-Base.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Frog-Base.png new file mode 100644 index 0000000000..f92e8de63c Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Frog-Base.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Frog-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Frog-CottonCandyBlue.png new file mode 100644 index 0000000000..5abeee7f00 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Frog-CottonCandyBlue.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Frog-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Frog-CottonCandyPink.png new file mode 100644 index 0000000000..012cb7379b Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Frog-CottonCandyPink.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Frog-Desert.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Frog-Desert.png new file mode 100644 index 0000000000..c1c6413657 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Frog-Desert.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Frog-Golden.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Frog-Golden.png new file mode 100644 index 0000000000..2fc5146e1b Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Frog-Golden.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Frog-Red.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Frog-Red.png new file mode 100644 index 0000000000..af9663eca0 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Frog-Red.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Frog-Shade.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Frog-Shade.png new file mode 100644 index 0000000000..3e8a0fc2c5 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Frog-Shade.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Frog-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Frog-Skeleton.png new file mode 100644 index 0000000000..ddb4ab2829 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Frog-Skeleton.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Frog-White.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Frog-White.png new file mode 100644 index 0000000000..c37579df3b Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Frog-White.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Frog-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Frog-Zombie.png new file mode 100644 index 0000000000..411124e2e9 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Frog-Zombie.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Gryphon-Base.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Gryphon-Base.png new file mode 100644 index 0000000000..e540f87228 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Gryphon-Base.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Gryphon-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Gryphon-CottonCandyBlue.png new file mode 100644 index 0000000000..4a8a3498e1 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Gryphon-CottonCandyBlue.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Gryphon-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Gryphon-CottonCandyPink.png new file mode 100644 index 0000000000..d13b73319c Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Gryphon-CottonCandyPink.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Gryphon-Desert.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Gryphon-Desert.png new file mode 100644 index 0000000000..da2f171dee Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Gryphon-Desert.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Gryphon-Golden.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Gryphon-Golden.png new file mode 100644 index 0000000000..6b12b5b529 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Gryphon-Golden.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Gryphon-Red.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Gryphon-Red.png new file mode 100644 index 0000000000..2a6c49b101 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Gryphon-Red.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Gryphon-RoyalPurple.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Gryphon-RoyalPurple.png new file mode 100644 index 0000000000..96b37c22e5 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Gryphon-RoyalPurple.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Gryphon-Shade.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Gryphon-Shade.png new file mode 100644 index 0000000000..3d362f4f46 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Gryphon-Shade.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Gryphon-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Gryphon-Skeleton.png new file mode 100644 index 0000000000..4c8f179a08 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Gryphon-Skeleton.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Gryphon-White.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Gryphon-White.png new file mode 100644 index 0000000000..bd70eb107c Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Gryphon-White.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Gryphon-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Gryphon-Zombie.png new file mode 100644 index 0000000000..cb2384b23a Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Gryphon-Zombie.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Hedgehog-Base.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Hedgehog-Base.png new file mode 100644 index 0000000000..73e264fcc1 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Hedgehog-Base.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Hedgehog-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Hedgehog-CottonCandyBlue.png new file mode 100644 index 0000000000..9c6b26ef8e Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Hedgehog-CottonCandyBlue.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Hedgehog-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Hedgehog-CottonCandyPink.png new file mode 100644 index 0000000000..54569ddf64 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Hedgehog-CottonCandyPink.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Hedgehog-Desert.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Hedgehog-Desert.png new file mode 100644 index 0000000000..70d596b627 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Hedgehog-Desert.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Hedgehog-Golden.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Hedgehog-Golden.png new file mode 100644 index 0000000000..8da2e89b52 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Hedgehog-Golden.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Hedgehog-Red.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Hedgehog-Red.png new file mode 100644 index 0000000000..8a1016fc39 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Hedgehog-Red.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Hedgehog-Shade.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Hedgehog-Shade.png new file mode 100644 index 0000000000..129ccd4d59 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Hedgehog-Shade.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Hedgehog-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Hedgehog-Skeleton.png new file mode 100644 index 0000000000..25a2ad3ca9 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Hedgehog-Skeleton.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Hedgehog-White.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Hedgehog-White.png new file mode 100644 index 0000000000..594c46bf16 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Hedgehog-White.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Hedgehog-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Hedgehog-Zombie.png new file mode 100644 index 0000000000..12385e6527 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Hedgehog-Zombie.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Horse-Base.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Horse-Base.png new file mode 100644 index 0000000000..69fb717f93 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Horse-Base.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Horse-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Horse-CottonCandyBlue.png new file mode 100644 index 0000000000..148d6b37f6 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Horse-CottonCandyBlue.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Horse-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Horse-CottonCandyPink.png new file mode 100644 index 0000000000..141548078c Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Horse-CottonCandyPink.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Horse-Desert.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Horse-Desert.png new file mode 100644 index 0000000000..180625e5a5 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Horse-Desert.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Horse-Golden.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Horse-Golden.png new file mode 100644 index 0000000000..7ef9eedfbe Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Horse-Golden.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Horse-Red.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Horse-Red.png new file mode 100644 index 0000000000..07275024e5 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Horse-Red.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Horse-Shade.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Horse-Shade.png new file mode 100644 index 0000000000..217b01fb1b Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Horse-Shade.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Horse-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Horse-Skeleton.png new file mode 100644 index 0000000000..68837d8604 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Horse-Skeleton.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Horse-White.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Horse-White.png new file mode 100644 index 0000000000..a45e649598 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Horse-White.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Horse-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Horse-Zombie.png new file mode 100644 index 0000000000..cae941f9fe Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Horse-Zombie.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_JackOLantern-Base.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_JackOLantern-Base.png new file mode 100644 index 0000000000..fc41e4581f Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_JackOLantern-Base.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-Base.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-Base.png new file mode 100644 index 0000000000..b5fc0f7f72 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-Base.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-CottonCandyBlue.png new file mode 100644 index 0000000000..ccb607c51b Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-CottonCandyBlue.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-CottonCandyPink.png new file mode 100644 index 0000000000..dba1f267c5 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-CottonCandyPink.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-Desert.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-Desert.png new file mode 100644 index 0000000000..d40ad358a1 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-Desert.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-Ethereal.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-Ethereal.png new file mode 100644 index 0000000000..8e935c471d Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-Ethereal.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-Golden.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-Golden.png new file mode 100644 index 0000000000..997a52e406 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-Golden.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-Peppermint.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-Peppermint.png new file mode 100644 index 0000000000..ad6fd23fee Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-Peppermint.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-Red.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-Red.png new file mode 100644 index 0000000000..4315f80229 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-Red.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-Shade.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-Shade.png new file mode 100644 index 0000000000..bf056f7f66 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-Shade.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-Skeleton.png new file mode 100644 index 0000000000..1404235c8c Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-Skeleton.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-Spooky.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-Spooky.png new file mode 100644 index 0000000000..340c15d948 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-Spooky.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-White.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-White.png new file mode 100644 index 0000000000..ad783963b2 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-White.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-Zombie.png new file mode 100644 index 0000000000..775c430eba Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-Zombie.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Mammoth-Base.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Mammoth-Base.png new file mode 100644 index 0000000000..44fabaa090 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Mammoth-Base.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_MantisShrimp-Base.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_MantisShrimp-Base.png new file mode 100644 index 0000000000..8c8752d609 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_MantisShrimp-Base.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Octopus-Base.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Octopus-Base.png new file mode 100644 index 0000000000..9ec30f03fd Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Octopus-Base.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Octopus-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Octopus-CottonCandyBlue.png new file mode 100644 index 0000000000..4c03a8e76c Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Octopus-CottonCandyBlue.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Octopus-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Octopus-CottonCandyPink.png new file mode 100644 index 0000000000..b1490ff2d7 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Octopus-CottonCandyPink.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Octopus-Desert.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Octopus-Desert.png new file mode 100644 index 0000000000..083750a86d Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Octopus-Desert.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Octopus-Golden.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Octopus-Golden.png new file mode 100644 index 0000000000..5af554eb44 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Octopus-Golden.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Octopus-Red.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Octopus-Red.png new file mode 100644 index 0000000000..3dcb1904fe Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Octopus-Red.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Octopus-Shade.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Octopus-Shade.png new file mode 100644 index 0000000000..77879671ce Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Octopus-Shade.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Octopus-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Octopus-Skeleton.png new file mode 100644 index 0000000000..72c47aa849 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Octopus-Skeleton.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Octopus-White.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Octopus-White.png new file mode 100644 index 0000000000..dd63df7d52 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Octopus-White.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Octopus-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Octopus-Zombie.png new file mode 100644 index 0000000000..25a2f7314b Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Octopus-Zombie.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Orca-Base.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Orca-Base.png new file mode 100644 index 0000000000..e38a5c5267 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Orca-Base.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Owl-Base.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Owl-Base.png new file mode 100644 index 0000000000..2245a0f5b9 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Owl-Base.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Owl-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Owl-CottonCandyBlue.png new file mode 100644 index 0000000000..484c6ca692 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Owl-CottonCandyBlue.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Owl-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Owl-CottonCandyPink.png new file mode 100644 index 0000000000..548f1bbf14 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Owl-CottonCandyPink.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Owl-Desert.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Owl-Desert.png new file mode 100644 index 0000000000..73946a7faf Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Owl-Desert.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Owl-Golden.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Owl-Golden.png new file mode 100644 index 0000000000..6834f5640a Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Owl-Golden.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Owl-Red.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Owl-Red.png new file mode 100644 index 0000000000..599dfc0e1f Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Owl-Red.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Owl-Shade.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Owl-Shade.png new file mode 100644 index 0000000000..e80bc271b9 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Owl-Shade.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Owl-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Owl-Skeleton.png new file mode 100644 index 0000000000..7336334dbf Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Owl-Skeleton.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Owl-White.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Owl-White.png new file mode 100644 index 0000000000..7a0f19f5f1 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Owl-White.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Owl-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Owl-Zombie.png new file mode 100644 index 0000000000..14b871a707 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Owl-Zombie.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_PandaCub-Base.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_PandaCub-Base.png new file mode 100644 index 0000000000..70a0204286 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_PandaCub-Base.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_PandaCub-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_PandaCub-CottonCandyBlue.png new file mode 100644 index 0000000000..acfe67aa56 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_PandaCub-CottonCandyBlue.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_PandaCub-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_PandaCub-CottonCandyPink.png new file mode 100644 index 0000000000..6ca07e9c83 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_PandaCub-CottonCandyPink.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_PandaCub-Desert.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_PandaCub-Desert.png new file mode 100644 index 0000000000..8d494b19b7 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_PandaCub-Desert.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_PandaCub-Golden.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_PandaCub-Golden.png new file mode 100644 index 0000000000..2693dde1ad Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_PandaCub-Golden.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_PandaCub-Peppermint.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_PandaCub-Peppermint.png new file mode 100644 index 0000000000..e826ee89b1 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_PandaCub-Peppermint.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_PandaCub-Red.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_PandaCub-Red.png new file mode 100644 index 0000000000..b61901b891 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_PandaCub-Red.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_PandaCub-Shade.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_PandaCub-Shade.png new file mode 100644 index 0000000000..05ca6b66a9 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_PandaCub-Shade.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_PandaCub-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_PandaCub-Skeleton.png new file mode 100644 index 0000000000..51cbc38d11 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_PandaCub-Skeleton.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_PandaCub-Spooky.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_PandaCub-Spooky.png new file mode 100644 index 0000000000..6a6a18dbc2 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_PandaCub-Spooky.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_PandaCub-White.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_PandaCub-White.png new file mode 100644 index 0000000000..11c0a5c685 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_PandaCub-White.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_PandaCub-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_PandaCub-Zombie.png new file mode 100644 index 0000000000..c240f26d22 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_PandaCub-Zombie.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Parrot-Base.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Parrot-Base.png new file mode 100644 index 0000000000..4d3401e05a Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Parrot-Base.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Parrot-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Parrot-CottonCandyBlue.png new file mode 100644 index 0000000000..621e1eced9 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Parrot-CottonCandyBlue.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Parrot-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Parrot-CottonCandyPink.png new file mode 100644 index 0000000000..389d157115 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Parrot-CottonCandyPink.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Parrot-Desert.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Parrot-Desert.png new file mode 100644 index 0000000000..f00870c987 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Parrot-Desert.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Parrot-Golden.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Parrot-Golden.png new file mode 100644 index 0000000000..9fb825815c Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Parrot-Golden.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Parrot-Red.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Parrot-Red.png new file mode 100644 index 0000000000..9a8f62088f Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Parrot-Red.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Parrot-Shade.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Parrot-Shade.png new file mode 100644 index 0000000000..48b687c429 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Parrot-Shade.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Parrot-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Parrot-Skeleton.png new file mode 100644 index 0000000000..20d366820b Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Parrot-Skeleton.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Parrot-White.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Parrot-White.png new file mode 100644 index 0000000000..c08b7962fb Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Parrot-White.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Parrot-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Parrot-Zombie.png new file mode 100644 index 0000000000..e1f2e33bbd Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Parrot-Zombie.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Penguin-Base.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Penguin-Base.png new file mode 100644 index 0000000000..bf2796b9e4 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Penguin-Base.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Penguin-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Penguin-CottonCandyBlue.png new file mode 100644 index 0000000000..5131768934 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Penguin-CottonCandyBlue.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Penguin-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Penguin-CottonCandyPink.png new file mode 100644 index 0000000000..4db9265040 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Penguin-CottonCandyPink.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Penguin-Desert.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Penguin-Desert.png new file mode 100644 index 0000000000..c6cdd3f05f Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Penguin-Desert.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Penguin-Golden.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Penguin-Golden.png new file mode 100644 index 0000000000..918a7c1f3c Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Penguin-Golden.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Penguin-Red.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Penguin-Red.png new file mode 100644 index 0000000000..ef318fcb31 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Penguin-Red.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Penguin-Shade.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Penguin-Shade.png new file mode 100644 index 0000000000..b01113bcfb Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Penguin-Shade.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Penguin-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Penguin-Skeleton.png new file mode 100644 index 0000000000..5c4e1ca5c0 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Penguin-Skeleton.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Penguin-White.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Penguin-White.png new file mode 100644 index 0000000000..a8d014537a Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Penguin-White.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Penguin-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Penguin-Zombie.png new file mode 100644 index 0000000000..2c193386e0 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Penguin-Zombie.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Phoenix-Base.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Phoenix-Base.png new file mode 100644 index 0000000000..9373310922 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Phoenix-Base.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rat-Base.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rat-Base.png new file mode 100644 index 0000000000..4c03dde374 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rat-Base.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rat-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rat-CottonCandyBlue.png new file mode 100644 index 0000000000..6a9a51041a Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rat-CottonCandyBlue.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rat-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rat-CottonCandyPink.png new file mode 100644 index 0000000000..38abd68d8c Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rat-CottonCandyPink.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rat-Desert.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rat-Desert.png new file mode 100644 index 0000000000..59c03b1c1f Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rat-Desert.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rat-Golden.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rat-Golden.png new file mode 100644 index 0000000000..427a044571 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rat-Golden.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rat-Red.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rat-Red.png new file mode 100644 index 0000000000..b8fd0fd035 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rat-Red.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rat-Shade.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rat-Shade.png new file mode 100644 index 0000000000..ddd046e900 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rat-Shade.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rat-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rat-Skeleton.png new file mode 100644 index 0000000000..349fd8639c Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rat-Skeleton.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rat-White.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rat-White.png new file mode 100644 index 0000000000..50575e9f57 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rat-White.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rat-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rat-Zombie.png new file mode 100644 index 0000000000..f8d163b176 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rat-Zombie.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rock-Base.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rock-Base.png new file mode 100644 index 0000000000..aa33a02acd Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rock-Base.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rock-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rock-CottonCandyBlue.png new file mode 100644 index 0000000000..1b3d0edd70 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rock-CottonCandyBlue.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rock-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rock-CottonCandyPink.png new file mode 100644 index 0000000000..72e0b3a811 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rock-CottonCandyPink.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rock-Desert.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rock-Desert.png new file mode 100644 index 0000000000..6ab376a892 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rock-Desert.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rock-Golden.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rock-Golden.png new file mode 100644 index 0000000000..d5a3b0bc33 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rock-Golden.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rock-Red.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rock-Red.png new file mode 100644 index 0000000000..741fcd144d Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rock-Red.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rock-Shade.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rock-Shade.png new file mode 100644 index 0000000000..ac5a7e6d50 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rock-Shade.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rock-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rock-Skeleton.png new file mode 100644 index 0000000000..552bdb264b Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rock-Skeleton.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rock-White.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rock-White.png new file mode 100644 index 0000000000..dd8fa7d045 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rock-White.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rock-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rock-Zombie.png new file mode 100644 index 0000000000..28012fdb88 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rock-Zombie.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rooster-Base.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rooster-Base.png new file mode 100644 index 0000000000..0624cde2ea Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rooster-Base.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rooster-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rooster-CottonCandyBlue.png new file mode 100644 index 0000000000..f5122f05af Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rooster-CottonCandyBlue.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rooster-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rooster-CottonCandyPink.png new file mode 100644 index 0000000000..d5785d5d8b Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rooster-CottonCandyPink.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rooster-Desert.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rooster-Desert.png new file mode 100644 index 0000000000..d295707f05 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rooster-Desert.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rooster-Golden.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rooster-Golden.png new file mode 100644 index 0000000000..79d089be48 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rooster-Golden.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rooster-Red.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rooster-Red.png new file mode 100644 index 0000000000..0fc8fe0d2c Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rooster-Red.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rooster-Shade.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rooster-Shade.png new file mode 100644 index 0000000000..b5054ed528 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rooster-Shade.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rooster-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rooster-Skeleton.png new file mode 100644 index 0000000000..12eced2ef5 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rooster-Skeleton.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rooster-White.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rooster-White.png new file mode 100644 index 0000000000..b4b5cf4d8b Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rooster-White.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rooster-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rooster-Zombie.png new file mode 100644 index 0000000000..a15ea846bc Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rooster-Zombie.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Seahorse-Base.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Seahorse-Base.png new file mode 100644 index 0000000000..d85c2acee5 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Seahorse-Base.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Seahorse-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Seahorse-CottonCandyBlue.png new file mode 100644 index 0000000000..6e8f8c53fe Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Seahorse-CottonCandyBlue.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Seahorse-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Seahorse-CottonCandyPink.png new file mode 100644 index 0000000000..37e96add0b Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Seahorse-CottonCandyPink.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Seahorse-Desert.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Seahorse-Desert.png new file mode 100644 index 0000000000..26cf30f28a Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Seahorse-Desert.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Seahorse-Golden.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Seahorse-Golden.png new file mode 100644 index 0000000000..69eea48ddd Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Seahorse-Golden.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Seahorse-Red.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Seahorse-Red.png new file mode 100644 index 0000000000..5eaa33e0c9 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Seahorse-Red.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Seahorse-Shade.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Seahorse-Shade.png new file mode 100644 index 0000000000..be1944a05c Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Seahorse-Shade.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Seahorse-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Seahorse-Skeleton.png new file mode 100644 index 0000000000..253d5fb891 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Seahorse-Skeleton.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Seahorse-White.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Seahorse-White.png new file mode 100644 index 0000000000..b1f59a8049 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Seahorse-White.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Seahorse-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Seahorse-Zombie.png new file mode 100644 index 0000000000..fd43b38306 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Seahorse-Zombie.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Sheep-Base.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Sheep-Base.png new file mode 100644 index 0000000000..addc577b95 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Sheep-Base.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Sheep-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Sheep-CottonCandyBlue.png new file mode 100644 index 0000000000..c368654ea6 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Sheep-CottonCandyBlue.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Sheep-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Sheep-CottonCandyPink.png new file mode 100644 index 0000000000..e1969c4d6b Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Sheep-CottonCandyPink.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Sheep-Desert.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Sheep-Desert.png new file mode 100644 index 0000000000..dbf127d017 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Sheep-Desert.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Sheep-Golden.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Sheep-Golden.png new file mode 100644 index 0000000000..cc085a27d3 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Sheep-Golden.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Sheep-Red.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Sheep-Red.png new file mode 100644 index 0000000000..0a93f1a160 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Sheep-Red.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Sheep-Shade.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Sheep-Shade.png new file mode 100644 index 0000000000..1c7a02f61a Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Sheep-Shade.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Sheep-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Sheep-Skeleton.png new file mode 100644 index 0000000000..3b29add4d9 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Sheep-Skeleton.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Sheep-White.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Sheep-White.png new file mode 100644 index 0000000000..ad8539b726 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Sheep-White.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Sheep-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Sheep-Zombie.png new file mode 100644 index 0000000000..91ffe6cfbe Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Sheep-Zombie.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Slime-Base.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Slime-Base.png new file mode 100644 index 0000000000..9ef4f54772 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Slime-Base.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Slime-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Slime-CottonCandyBlue.png new file mode 100644 index 0000000000..1b21f0c310 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Slime-CottonCandyBlue.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Slime-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Slime-CottonCandyPink.png new file mode 100644 index 0000000000..791c2e0237 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Slime-CottonCandyPink.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Slime-Desert.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Slime-Desert.png new file mode 100644 index 0000000000..6d69cc709c Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Slime-Desert.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Slime-Golden.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Slime-Golden.png new file mode 100644 index 0000000000..8f9ec4e1dc Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Slime-Golden.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Slime-Red.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Slime-Red.png new file mode 100644 index 0000000000..db6c254d3a Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Slime-Red.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Slime-Shade.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Slime-Shade.png new file mode 100644 index 0000000000..e47eb2c1b5 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Slime-Shade.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Slime-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Slime-Skeleton.png new file mode 100644 index 0000000000..81b032154e Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Slime-Skeleton.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Slime-White.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Slime-White.png new file mode 100644 index 0000000000..9822d64b9b Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Slime-White.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Slime-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Slime-Zombie.png new file mode 100644 index 0000000000..5bf1229c99 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Slime-Zombie.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Snake-Base.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Snake-Base.png new file mode 100644 index 0000000000..a29b8b5292 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Snake-Base.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Snake-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Snake-CottonCandyBlue.png new file mode 100644 index 0000000000..e9a956e4c2 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Snake-CottonCandyBlue.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Snake-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Snake-CottonCandyPink.png new file mode 100644 index 0000000000..d0fde8eabd Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Snake-CottonCandyPink.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Snake-Desert.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Snake-Desert.png new file mode 100644 index 0000000000..af96464f60 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Snake-Desert.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Snake-Golden.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Snake-Golden.png new file mode 100644 index 0000000000..8ba3f92b5b Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Snake-Golden.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Snake-Red.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Snake-Red.png new file mode 100644 index 0000000000..265e49b4ad Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Snake-Red.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Snake-Shade.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Snake-Shade.png new file mode 100644 index 0000000000..5ddd35d974 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Snake-Shade.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Snake-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Snake-Skeleton.png new file mode 100644 index 0000000000..2359ee2677 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Snake-Skeleton.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Snake-White.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Snake-White.png new file mode 100644 index 0000000000..5ed78863ca Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Snake-White.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Snake-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Snake-Zombie.png new file mode 100644 index 0000000000..1d0be885ae Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Snake-Zombie.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Spider-Base.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Spider-Base.png new file mode 100644 index 0000000000..733275fe6a Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Spider-Base.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Spider-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Spider-CottonCandyBlue.png new file mode 100644 index 0000000000..0d29a97d7f Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Spider-CottonCandyBlue.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Spider-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Spider-CottonCandyPink.png new file mode 100644 index 0000000000..b24ecf7264 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Spider-CottonCandyPink.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Spider-Desert.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Spider-Desert.png new file mode 100644 index 0000000000..8d362804cd Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Spider-Desert.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Spider-Golden.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Spider-Golden.png new file mode 100644 index 0000000000..56944097a9 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Spider-Golden.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Spider-Red.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Spider-Red.png new file mode 100644 index 0000000000..54c3b51cb7 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Spider-Red.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Spider-Shade.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Spider-Shade.png new file mode 100644 index 0000000000..f58b1cb7e4 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Spider-Shade.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Spider-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Spider-Skeleton.png new file mode 100644 index 0000000000..b36a858711 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Spider-Skeleton.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Spider-White.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Spider-White.png new file mode 100644 index 0000000000..ec87c2efbf Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Spider-White.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Spider-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Spider-Zombie.png new file mode 100644 index 0000000000..8e505557ae Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Spider-Zombie.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TRex-Base.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TRex-Base.png new file mode 100644 index 0000000000..4c8ef5ac16 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TRex-Base.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TRex-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TRex-CottonCandyBlue.png new file mode 100644 index 0000000000..2c232e3ab6 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TRex-CottonCandyBlue.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TRex-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TRex-CottonCandyPink.png new file mode 100644 index 0000000000..ed365f8e67 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TRex-CottonCandyPink.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TRex-Desert.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TRex-Desert.png new file mode 100644 index 0000000000..36eb4b3a58 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TRex-Desert.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TRex-Golden.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TRex-Golden.png new file mode 100644 index 0000000000..b485f26c45 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TRex-Golden.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TRex-Red.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TRex-Red.png new file mode 100644 index 0000000000..8f028bb6cc Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TRex-Red.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TRex-Shade.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TRex-Shade.png new file mode 100644 index 0000000000..e9af429b47 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TRex-Shade.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TRex-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TRex-Skeleton.png new file mode 100644 index 0000000000..7a8c84d2f4 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TRex-Skeleton.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TRex-White.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TRex-White.png new file mode 100644 index 0000000000..a6c8063b88 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TRex-White.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TRex-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TRex-Zombie.png new file mode 100644 index 0000000000..45b1075b5f Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TRex-Zombie.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TigerCub-Base.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TigerCub-Base.png new file mode 100644 index 0000000000..b0b56acab6 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TigerCub-Base.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TigerCub-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TigerCub-CottonCandyBlue.png new file mode 100644 index 0000000000..0fd2b9936d Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TigerCub-CottonCandyBlue.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TigerCub-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TigerCub-CottonCandyPink.png new file mode 100644 index 0000000000..5c342990c7 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TigerCub-CottonCandyPink.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TigerCub-Desert.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TigerCub-Desert.png new file mode 100644 index 0000000000..91c1e680ba Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TigerCub-Desert.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TigerCub-Golden.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TigerCub-Golden.png new file mode 100644 index 0000000000..3ae9496fbf Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TigerCub-Golden.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TigerCub-Peppermint.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TigerCub-Peppermint.png new file mode 100644 index 0000000000..06d98659f4 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TigerCub-Peppermint.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TigerCub-Red.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TigerCub-Red.png new file mode 100644 index 0000000000..9f00a6e284 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TigerCub-Red.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TigerCub-Shade.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TigerCub-Shade.png new file mode 100644 index 0000000000..7633618fb7 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TigerCub-Shade.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TigerCub-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TigerCub-Skeleton.png new file mode 100644 index 0000000000..3b6455a050 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TigerCub-Skeleton.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TigerCub-Spooky.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TigerCub-Spooky.png new file mode 100644 index 0000000000..7032867167 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TigerCub-Spooky.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TigerCub-White.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TigerCub-White.png new file mode 100644 index 0000000000..5e08027689 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TigerCub-White.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TigerCub-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TigerCub-Zombie.png new file mode 100644 index 0000000000..849222357c Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TigerCub-Zombie.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Turkey-Base.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Turkey-Base.png new file mode 100644 index 0000000000..aaedf47e03 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Turkey-Base.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Whale-Base.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Whale-Base.png new file mode 100644 index 0000000000..25f29406ac Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Whale-Base.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Whale-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Whale-CottonCandyBlue.png new file mode 100644 index 0000000000..9e8766384a Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Whale-CottonCandyBlue.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Whale-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Whale-CottonCandyPink.png new file mode 100644 index 0000000000..c930009c22 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Whale-CottonCandyPink.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Whale-Desert.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Whale-Desert.png new file mode 100644 index 0000000000..0765477f2a Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Whale-Desert.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Whale-Golden.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Whale-Golden.png new file mode 100644 index 0000000000..428e0bdbde Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Whale-Golden.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Whale-Red.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Whale-Red.png new file mode 100644 index 0000000000..14e3760112 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Whale-Red.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Whale-Shade.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Whale-Shade.png new file mode 100644 index 0000000000..df1850b905 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Whale-Shade.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Whale-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Whale-Skeleton.png new file mode 100644 index 0000000000..d6ddc40bec Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Whale-Skeleton.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Whale-White.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Whale-White.png new file mode 100644 index 0000000000..2848899b20 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Whale-White.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Whale-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Whale-Zombie.png new file mode 100644 index 0000000000..b63af6fcb1 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Whale-Zombie.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Wolf-Base.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Wolf-Base.png new file mode 100644 index 0000000000..3195a1845f Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Wolf-Base.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Wolf-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Wolf-CottonCandyBlue.png new file mode 100644 index 0000000000..fdde9d88e0 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Wolf-CottonCandyBlue.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Wolf-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Wolf-CottonCandyPink.png new file mode 100644 index 0000000000..0d3af60fb6 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Wolf-CottonCandyPink.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Wolf-Desert.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Wolf-Desert.png new file mode 100644 index 0000000000..392275fda8 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Wolf-Desert.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Wolf-Golden.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Wolf-Golden.png new file mode 100644 index 0000000000..6b8da62eac Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Wolf-Golden.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Wolf-Peppermint.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Wolf-Peppermint.png new file mode 100644 index 0000000000..71940e0a9a Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Wolf-Peppermint.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Wolf-Red.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Wolf-Red.png new file mode 100644 index 0000000000..1b8388fc6a Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Wolf-Red.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Wolf-Shade.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Wolf-Shade.png new file mode 100644 index 0000000000..a99e48ba2e Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Wolf-Shade.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Wolf-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Wolf-Skeleton.png new file mode 100644 index 0000000000..ae69d8db79 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Wolf-Skeleton.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Wolf-Spooky.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Wolf-Spooky.png new file mode 100644 index 0000000000..cbd75453e4 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Wolf-Spooky.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Wolf-White.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Wolf-White.png new file mode 100644 index 0000000000..815a208580 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Wolf-White.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Wolf-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Wolf-Zombie.png new file mode 100644 index 0000000000..ba58189d2f Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Wolf-Zombie.png differ diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-BearCub-Peppermint.png b/common/img/sprites/spritesmith/stable/pets/Pet-BearCub-Peppermint.png new file mode 100644 index 0000000000..5116e72500 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/pets/Pet-BearCub-Peppermint.png differ diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Cactus-Peppermint.png b/common/img/sprites/spritesmith/stable/pets/Pet-Cactus-Peppermint.png new file mode 100644 index 0000000000..8479a2572f Binary files /dev/null and b/common/img/sprites/spritesmith/stable/pets/Pet-Cactus-Peppermint.png differ diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Dragon-Peppermint.png b/common/img/sprites/spritesmith/stable/pets/Pet-Dragon-Peppermint.png new file mode 100644 index 0000000000..454e79d9f2 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/pets/Pet-Dragon-Peppermint.png differ diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-FlyingPig-Peppermint.png b/common/img/sprites/spritesmith/stable/pets/Pet-FlyingPig-Peppermint.png new file mode 100644 index 0000000000..c6d85bfa9c Binary files /dev/null and b/common/img/sprites/spritesmith/stable/pets/Pet-FlyingPig-Peppermint.png differ diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Fox-Peppermint.png b/common/img/sprites/spritesmith/stable/pets/Pet-Fox-Peppermint.png new file mode 100644 index 0000000000..8fd07b6b94 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/pets/Pet-Fox-Peppermint.png differ diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-LionCub-Peppermint.png b/common/img/sprites/spritesmith/stable/pets/Pet-LionCub-Peppermint.png new file mode 100644 index 0000000000..1d7e378a27 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/pets/Pet-LionCub-Peppermint.png differ diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-PandaCub-Peppermint.png b/common/img/sprites/spritesmith/stable/pets/Pet-PandaCub-Peppermint.png new file mode 100644 index 0000000000..ba87082fbb Binary files /dev/null and b/common/img/sprites/spritesmith/stable/pets/Pet-PandaCub-Peppermint.png differ diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-TigerCub-Peppermint.png b/common/img/sprites/spritesmith/stable/pets/Pet-TigerCub-Peppermint.png new file mode 100644 index 0000000000..866c303d36 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/pets/Pet-TigerCub-Peppermint.png differ diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Wolf-Peppermint.png b/common/img/sprites/spritesmith/stable/pets/Pet-Wolf-Peppermint.png new file mode 100644 index 0000000000..0b62e70e08 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/pets/Pet-Wolf-Peppermint.png differ diff --git a/common/img/sprites/spritesmith/stable/potions/Pet_HatchingPotion_Peppermint.png b/common/img/sprites/spritesmith/stable/potions/Pet_HatchingPotion_Peppermint.png new file mode 100644 index 0000000000..32f926637f Binary files /dev/null and b/common/img/sprites/spritesmith/stable/potions/Pet_HatchingPotion_Peppermint.png differ diff --git a/common/img/sprites/spritesmith_large/promo/promo_android.png b/common/img/sprites/spritesmith_large/promo/promo_android.png new file mode 100644 index 0000000000..75bc0fbd6a Binary files /dev/null and b/common/img/sprites/spritesmith_large/promo/promo_android.png differ diff --git a/common/locales/cs/backgrounds.json b/common/locales/cs/backgrounds.json index 08862ccc7a..61515f27de 100644 --- a/common/locales/cs/backgrounds.json +++ b/common/locales/cs/backgrounds.json @@ -125,5 +125,12 @@ "backgroundNightDunesText": "Night Dunes", "backgroundNightDunesNotes": "Walk peacefully through the Night Dunes.", "backgroundSunsetOasisText": "Sunset Oasis", - "backgroundSunsetOasisNotes": "Bask in the Sunset Oasis." + "backgroundSunsetOasisNotes": "Bask in the Sunset Oasis.", + "backgrounds122015": "SET 19: Released December 2015", + "backgroundAlpineSlopesText": "Alpine Slopes", + "backgroundAlpineSlopesNotes": "Ski on the Alpine Slopes.", + "backgroundSnowySunriseText": "Snowy Sunrise", + "backgroundSnowySunriseNotes": "Gaze at the Snowy Sunrise.", + "backgroundWinterTownText": "Winter Town", + "backgroundWinterTownNotes": "Bustle through a Winter Town." } \ No newline at end of file diff --git a/common/locales/cs/faq.json b/common/locales/cs/faq.json index 45f7b7c487..afc0e7bc22 100644 --- a/common/locales/cs/faq.json +++ b/common/locales/cs/faq.json @@ -2,7 +2,7 @@ "frequentlyAskedQuestions": "Nejčastější otázky", "faqQuestion0": "Jsem zmatený. Kde najdu přehled?", "iosFaqAnswer0": "Nejprve si zadáš nějaký úkol, který chceš splnit (ve škole, v práci, etc.). Až ho splníš a odškrtneš, dostaneš Zkušenostní body a zlato. Zlato se používá na nákup vybavení nebo jiných předmětů a vlastních odměn. Díky zkušenosti budeš získávat vyšší a vyšší úrovně a odemykat obsah, jakým jsou třeba Mazlíčci, Dovednosti, nebo Výpravy! Svou postavu si můžeš upravit v Menu > Upravit postavu.\n\nPár základních rad jak se tu pohybovat: když chceš přidat úkol klikni na (+) v pravém horním rohu. Ťuknutím na již existující úkol ho můžeš měnit, a když s ním pohneš doleva, vymaže se. Můžeš si úkoly řadit pomocí tagů v horním pravém rohu, a rozbalovat a zabalovat seznamy kliknutím na bublinu seznamu.", - "webFaqAnswer0": "Nejprve si zadáš nějaký úkol, který chceš splnit v reálném životě. Až ho splníš a odškrtneš, dostaneš Zkušenostní body a zlato. Zlato se používá na nákup vybavení nebo jiných předmětů a vlastních odměn. Díky zkušenosti budeš získávat vyšší a vyšší úrovně a odemykat obsah, jakým jsou třeba Mazlíčci, Dovednosti, nebo Výpravy! Pro více informací se podívej na wiki, kde je připravený vynikající přehled hry krok po kroku [přímo tady](http://habitica.wikia.com/wiki/Habitica_Wiki).", + "webFaqAnswer0": "First, you'll set up tasks that you want to do in your everyday life. Then, as you complete the tasks in real life and check them off, you'll earn Experience and Gold. Gold is used to buy equipment and some items, as well as custom rewards. Experience causes your character to level up and unlock content such as pets, skills, and quests! For more detail, check out a step-by-step overview of the game at [Help -> Overview for New Users](https://habitica.com/static/overview).", "faqQuestion1": "Jak si přidám úkoly?", "iosFaqAnswer1": "Dobré zvyky (ty s +), jsou věci, které můžeš plnit kolikrát chceš, například jedení zeleniny. Zlozvyky (ty s -) jsou věci, kterým se chceš vyhnout, třeba kousání nehtů. Zvyky s + a - jsou takové věci, kde můžeš udělat dobré či špatné rozhodnutí, jako třeba když jdeš po schodech vs. jízda výtahem. Dobré zvyky tě za splnění odmění Zkušenostmi a zlatem. Zlozvyky ti uberou Zdraví.\n\nDenní úkoly jsou věci, které musíš dělat každý den, jako třeba čištění zubů nebo kontrola emailu. Můžeš si nastavit ve které dny máš plnit které denní úkoly tak, že na ně ťukneš. Pokud naplánovaný Denní úkol nesplníš, odečte se ti přes noc Zdraví. Dávej pozor, aby sis nepřidal moc Denních úkolů najednou!\n\nÚkolníček obsahuje tvoje naplánované úkoly. Když je splníš, přinesou ti Zkušenost a zlato. Za nesplněné úkoly v Úkolníčku nikdy neztratíš Zdraví. Můžeš jim přiřadit datum splnění tím, že na ně ťukneš.", "webFaqAnswer1": "Dobré zvyky (ty s ), jsou věci, které můžeš plnit kolikrát chceš, například jedení zeleniny. Zlozvyky (ty s ) jsou věci, kterým se chceš vyhnout, třeba kousání nehtů. Zvyky s a jsou takové věci, kde můžeš udělat dobré či špatné rozhodnutí, jako třeba když jdeš po schodech vs. jízda výtahem. Dobré zvyky tě za splnění odmění Zkušenostmi a zlatem. Zlozvyky ti uberou Zdraví.\n

\nDenní úkoly jsou věci, které musíš dělat každý den, jako třeba čištění zubů nebo kontrola emailu. Můžeš si nastavit ve které dny máš plnit které denní úkoly tak, že na ně ťukneš. Pokud naplánovaný Denní úkol nesplníš, odečte se ti přes noc Zdraví. Dávej pozor, aby sis nepřidal moc Denních úkolů najednou!\n

\nÚkolníček obsahuje tvoje naplánované úkoly. Když je splníš, přinesou ti Zkušenost a zlato. Za nesplněné úkoly v Úkolníčku nikdy neztratíš Zdraví. Můžeš jim přiřadit datum splnění tím, že na ně ťukneš.", diff --git a/common/locales/cs/gear.json b/common/locales/cs/gear.json index a829678400..9fe754b2e2 100644 --- a/common/locales/cs/gear.json +++ b/common/locales/cs/gear.json @@ -149,15 +149,19 @@ "weaponArmoireRancherLassoText": "Rančerské laso", "weaponArmoireRancherLassoNotes": "Lasa: ideální nástroj na nahánění. Zvyšuje Sílu o <%= str %>, Vnímání o <%= per %> a Inteligenci o <%= int %>. Začarovaná almara: Rančerský set (předmět 3 ze 3).", "weaponArmoireMythmakerSwordText": "Meč tvořičů mýtů", - "weaponArmoireMythmakerSwordNotes": "I když vypadá skromně, tento meč doprovázel mnoho mýtických hrdinů. Zvyšuje Vnímání a Sílu o <%= attrs %> každou. Začarovaná almara: Set zlaté tógy (předmět 3 ze 3)", + "weaponArmoireMythmakerSwordNotes": "Though it may seem humble, this sword has made many mythic heroes. Increases Perception and Strength by <%= attrs %> each. Enchanted Armoire: Golden Toga Set (Item 3 of 3).", "weaponArmoireIronCrookText": "Železná hůl", - "weaponArmoireIronCrookNotes": "Zprudka ukuta z oceli, tato hůl je vynikající k nahánění ovcí. Zvyšuje Vnímání a Sílu o <%= attrs %> každou. Začarovaná almara: Set helmy s rohy (předmět 3 ze 3)", + "weaponArmoireIronCrookNotes": "Fiercely hammered from iron, this iron crook is good at herding sheep. Increases Perception and Strength by <%= attrs %> each. Enchanted Armoire: Horned Iron Set (Item 3 of 3).", "weaponArmoireGoldWingStaffText": "Zlatokřídlá Hůl", "weaponArmoireGoldWingStaffNotes": "Křídla této hole se neustále třepetají a kroutí. Zvyšuje všechny vlastnosti, každou o <%= attrs %>. Začarovaná almara: Nezávislý předmět.", "weaponArmoireBatWandText": "Netopýří hůlka", "weaponArmoireBatWandNotes": "Tato hůlka dokáže přeměnit jakýkoliv úkol v netopýra! Máchni jí a sleduj, jak úkoly odlétají. Zvyšuje Inteligenci o <%= int %> a Vnímání o <%= per %>. Začarovaná almara: Nezávislý předmět.", "weaponArmoireShepherdsCrookText": "Shepherd's Crook", "weaponArmoireShepherdsCrookNotes": "Useful for herding gryphons. Increases Constitution by <%= con %>. Enchanted Armoire: Shepherd Set (Item 1 of 3).", + "weaponArmoireCrystalCrescentStaffText": "Crystal Crescent Staff", + "weaponArmoireCrystalCrescentStaffNotes": "Summon the power of the crescent moon with this shining staff! Increases Intelligence and Strength by <%= attrs %> each. Enchanted Armoire: Crystal Crescent Set (Item 3 of 3).", + "weaponArmoireBlueLongbowText": "Blue Longbow", + "weaponArmoireBlueLongbowNotes": "Ready... Aim... Fire! This bow has great range. Increases Perception by 9, Constitution by 8, and Strength by 7. Enchanted Armoire: Independent Item.", "armor": "zbroj", "armorBase0Text": "Obyčejné oblečení", "armorBase0Notes": "Běžné oblečení. Nenabízí žádný bonus.", @@ -222,7 +226,7 @@ "armorSpecialBirthday2015Text": "Komické párty kostýmy", "armorSpecialBirthday2015Notes": "Vše nejlepší té nejlepší zemi, Habitica! Oblečte Absurdní Party Kostýmy, a oslavte tento báječný den. Neposkytuje žádný bonus.", "armorSpecialGaymerxText": "Zbroj duhového bojovníka", - "armorSpecialGaymerxNotes": "Ku příležitosti oslav sezóny Gay Pride a GaymerX je tato speciální zbroj zdobená zářivým barevným duhovým vzorem! GaymerX je herní veletrh oslavující LGBTQ a hry a je otevřený všem. Koná se v InterContinentalu v centru San Francisca 11.-13. července! Nepřináší žádné výhody.", + "armorSpecialGaymerxNotes": "In celebration of the GaymerX Conference, this special armor is decorated with a radiant, colorful rainbow pattern! GaymerX is a game convention celebrating LGTBQ and gaming and is open to everyone.", "armorSpecialSpringRogueText": "Elegantní kočičí oblek", "armorSpecialSpringRogueNotes": "Bezvadně udržovaný. Přidá <%= per %> bodů k Vnímání. Limitovaná edice 2014 Jarní výbava.", "armorSpecialSpringWarriorText": "Zbroj z jetelové oceli", @@ -309,6 +313,8 @@ "armorMystery201508Notes": "Utíkej rychle jako blesk s tímhle huňatým kostýmem geparda! Nepřináší žádný benefit. Předmět pro předplatitele srpen 2015.", "armorMystery201509Text": "Kostým vlkodlaka", "armorMystery201509Notes": "Tohle JE kostým, že jo? Nepřináší žádný benefit. Předmět pro předplatitele září 2015.", + "armorMystery201511Text": "Wooden Armor", + "armorMystery201511Notes": "Considering this armor was carved directly from a magical log, it's surprisingly comfortable. Confers no benefit. November 2015 Subscriber Item.", "armorMystery301404Text": "Steampunk oblek", "armorMystery301404Notes": "Elegantní a fešácký, joj! Nepřináší žádný benefit. Předmět pro předplatitele únor 3015.", "armorArmoireLunarArmorText": "Uklidňující měsíční brnění", @@ -327,6 +333,8 @@ "armorArmoireShepherdRobesNotes": "The fabric is cool and breathable, perfect for a hot day herding gryphons in the desert. Increases Strength and Perception by <%= attrs %> each. Enchanted Armoire: Shepherd Set (Item 2 of 3).", "armorArmoireRoyalRobesText": "Royal Robes", "armorArmoireRoyalRobesNotes": "Wonderful ruler, rule all day long! Increases Constitution, Intelligence, and Perception by <%= attrs %> each. Enchanted Armoire: Royal Set (Item 3 of 3).", + "armorArmoireCrystalCrescentRobesText": "Crystal Crescent Robes", + "armorArmoireCrystalCrescentRobesNotes": "These magical robes are luminescent at night. Increases Constitution and Perception by <%= attrs %> each. Enchanted Armoire: Crystal Crescent Set (Item 2 of 3).", "headgear": "Pokrývka hlavy", "headBase0Text": "Žádná přilba", "headBase0Notes": "Žádná pokrývka hlavy", @@ -447,7 +455,7 @@ "headSpecialFall2015HealerText": "Klobouk žáby", "headSpecialFall2015HealerNotes": "Tohle je opravdu vážný klobouk nošený jen těmi nejpokročilejšími lektvaráři. Zvyšuje Inteligenci o <%= int %>. limitovaná edice podzimní výbavy 2015.", "headSpecialGaymerxText": "Helma duhového bojovníka", - "headSpecialGaymerxNotes": "Ku příležitosti oslav sezóny Gay Pride a GaymerX je tato speciální helma zdobená zářivým barevným duhovým vzorem! GaymerX je herní veletrh oslavující LGBTQ a hry a je otevřený všem. Koná se v InterContinentalu v centru San Francisca 11.-13. července! Nepřináší žádné výhody.", + "headSpecialGaymerxNotes": "In celebration of the GaymerX Conference, this special helmet is decorated with a radiant, colorful rainbow pattern! GaymerX is a game convention celebrating LGTBQ and gaming and is open to everyone.", "headMystery201402Text": "Okřídlená přilba", "headMystery201402Notes": "Tato okřídlená čelenka propůjčuje svému nositeli rychlost větru! Výbava pro předplatitele únor 2014.", "headMystery201405Text": "Plamen mysli", @@ -470,6 +478,8 @@ "headMystery201508Notes": "Tenhle příjemný klobouk je pořádně huňatý! Nepřináší žádný benefit. Předmět pro předplatitele srpen 2015.", "headMystery201509Text": "Maska vlkodlaka", "headMystery201509Notes": "Tohle JE maska, že jo? Nepřináší žádný benefit. Předmět pro předplatitele září 2015.", + "headMystery201511Text": "Log Crown", + "headMystery201511Notes": "Count the number of rings to learn how old this crown is. Confers no benefit. November 2015 Subscriber Item.", "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", @@ -506,6 +516,8 @@ "headArmoireBlueFloppyHatNotes": "Many spells have been sewn into this simple hat, giving it a brilliant blue color. Increases Constitution, Intelligence, and Perception by <%= attrs %> each. Enchanted Armoire: Independent Item.", "headArmoireShepherdHeaddressText": "Shepherd Headdress", "headArmoireShepherdHeaddressNotes": "Sometimes the gryphons that you herd like to chew on this headdress, but it makes you seem more intelligent nonetheless. Increases Intelligence by <%= int %>. Enchanted Armoire: Shepherd Set (Item 3 of 3).", + "headArmoireCrystalCrescentHatText": "Crystal Crescent Hat", + "headArmoireCrystalCrescentHatNotes": "The design on this hat waxes and wanes with the phases of the moon. Increases Intelligence and Perception by <%= attrs %> each. Enchanted Armoire: Crystal Crescent Set (Item 1 of 3).", "offhand": "štít v ruce", "shieldBase0Text": "Bez štítu v ruce", "shieldBase0Notes": "Bez štítu nebo druhé zbraně.", diff --git a/common/locales/cs/limited.json b/common/locales/cs/limited.json index df60957a3e..1d2b37217c 100644 --- a/common/locales/cs/limited.json +++ b/common/locales/cs/limited.json @@ -21,6 +21,7 @@ "valentineCardAchievementText": "Jůů, se svými přáteli musíš opravdu dobře vycházet! Odeslal jsi anebo jsi přijal <%= cards %> Valentýnských přání.", "polarBear": "Lední medvěd", "turkey": "Krocan", + "gildedTurkey": "Gilded Turkey", "polarBearPup": "Lední medvídě", "jackolantern": "Jack-O-Lantern", "seasonalShop": "Sezónní obchod", diff --git a/common/locales/cs/settings.json b/common/locales/cs/settings.json index ac8a11e98b..4bac2fa03d 100644 --- a/common/locales/cs/settings.json +++ b/common/locales/cs/settings.json @@ -143,5 +143,8 @@ "gemCapExtra": "Strop drahokamů extra:", "mysticHourglasses": "Mystické přesýpací hodiny:", "paypal": "PayPal", - "amazonPayments": "Amazon platby" + "amazonPayments": "Amazon platby", + "timezone": "Time Zone", + "timezoneUTC": "Habitica uses the time zone set on your PC, which is: <%= utc %>", + "timezoneInfo": "If that time zone is wrong, first reload this page using your browser's reload or refresh button to ensure that Habitica has the most recent information. If it is still wrong, adjust the time zone on your PC and then reload this page again.

If you use Habitica on other PCs or mobile devices, the time zone must be the same on them all. If your Dailies have been reseting at the wrong time, repeat this check on all other PCs and on a browser on your mobile devices." } \ No newline at end of file diff --git a/common/locales/cs/tasks.json b/common/locales/cs/tasks.json index 3f77ff774b..251164c84e 100644 --- a/common/locales/cs/tasks.json +++ b/common/locales/cs/tasks.json @@ -88,8 +88,7 @@ "fortifyText": "Posilnění vrátí všechny tvé úkoly do neutrálního (žlutého) stavu, ve kterém byly v okamžiku přidání, a doplní zdraví na maximum. Považuj to za poslední možnou variantu. Červené úkoly poskytují dobrou motivaci ke zlepšení. Ale pokud tě všechna ta červená naplňuje zoufalstvím a začátek každého dne se ukáže jako smrtící, investuj drahokamy a oddechni si.", "sureDelete": "Určitě chceš odstranit tento úkol?", "streakCoins": "Bonus za sérii!", - "pushTaskToTop": "Přesunout úkol na vrchol", - "pushTaskToBottom": "Posunout úkol na spodek", + "pushTaskToTop": "Push task to top. Hold ctrl or cmd to push to bottom.", "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.", "habitHelp1": "Dobré zvyky jsou věci, které děláš často. Získáš za ně Zlaťáky a Zkušenost pokaždé, když klikneš na <%= plusIcon %>.", diff --git a/common/locales/da/backgrounds.json b/common/locales/da/backgrounds.json index 8f222b02f3..b61e7883dc 100644 --- a/common/locales/da/backgrounds.json +++ b/common/locales/da/backgrounds.json @@ -125,5 +125,12 @@ "backgroundNightDunesText": "Night Dunes", "backgroundNightDunesNotes": "Walk peacefully through the Night Dunes.", "backgroundSunsetOasisText": "Sunset Oasis", - "backgroundSunsetOasisNotes": "Bask in the Sunset Oasis." + "backgroundSunsetOasisNotes": "Bask in the Sunset Oasis.", + "backgrounds122015": "SET 19: Released December 2015", + "backgroundAlpineSlopesText": "Alpine Slopes", + "backgroundAlpineSlopesNotes": "Ski on the Alpine Slopes.", + "backgroundSnowySunriseText": "Snowy Sunrise", + "backgroundSnowySunriseNotes": "Gaze at the Snowy Sunrise.", + "backgroundWinterTownText": "Winter Town", + "backgroundWinterTownNotes": "Bustle through a Winter Town." } \ No newline at end of file diff --git a/common/locales/da/faq.json b/common/locales/da/faq.json index fd255d68b4..9144c9eb77 100644 --- a/common/locales/da/faq.json +++ b/common/locales/da/faq.json @@ -2,7 +2,7 @@ "frequentlyAskedQuestions": "Ofte Stillede Spørgsmål", "faqQuestion0": "Jeg er forvirret. Hvor får jeg et overblik?", "iosFaqAnswer0": "First, you'll set up tasks that you want to do in your everyday life. Then, as you complete the tasks in real life and check them off, you'll earn experience and gold. Gold is used to buy equipment and some items, as well as custom rewards. Experience causes your character to level up and unlock content such as Pets, Skills, and Quests! You can customize your character under Menu > Customize Avatar.\n\n Some basic ways to interact: click the (+) in the upper-right-hand corner to add a new task. Tap on an existing task to edit it, and swipe left on a task to delete it. You can sort tasks using Tags in the upper-left-hand corner, and expand and contract checklists by clicking on the checklist bubble.", - "webFaqAnswer0": "First, you'll set up tasks that you want to do in your everyday life. Then, as you complete the tasks in real life and check them off, you'll earn Experience and Gold. Gold is used to buy equipment and some items, as well as custom rewards. Experience causes your character to level up and unlock content such as pets, skills, and quests! For more detail, the wiki has an excellent step-by-step overview of the game [right here](http://habitica.wikia.com/wiki/Habitica_Wiki).", + "webFaqAnswer0": "First, you'll set up tasks that you want to do in your everyday life. Then, as you complete the tasks in real life and check them off, you'll earn Experience and Gold. Gold is used to buy equipment and some items, as well as custom rewards. Experience causes your character to level up and unlock content such as pets, skills, and quests! For more detail, check out a step-by-step overview of the game at [Help -> Overview for New Users](https://habitica.com/static/overview).", "faqQuestion1": "Hvordan opretter jeg mine egne opgaver?", "iosFaqAnswer1": "Good Habits (the ones with a +) are tasks that you can do many times a day, such as eating vegetables. Bad Habits (the ones with a -) are tasks that you should avoid, like biting nails. Habits with a + and a - have a good choice and a bad choice, like taking the stairs vs. taking the elevator. Good Habits award experience and gold. Bad Habits subtract health.\n\n Dailies are tasks that you have to do every day, like brushing your teeth or checking your email. You can adjust the days that a Daily is due by tapping to edit it. If you skip a Daily that is due, your avatar will take damage overnight. Be careful not to add too many Dailies at once!\n\n To-Dos are your To-Do list. Completing a To-Do earns you gold and experience. You never lose health from To-Dos. You can add a due date to a To-Do by tapping to edit.", "webFaqAnswer1": "Good Habits (the ones with a ) are tasks that you can do many times a day, such as eating vegetables. Bad Habits (the ones with a ) are tasks that you should avoid, like biting nails. Habits with a and a have a good choice and a bad choice, like taking the stairs vs. taking the elevator. Good Habits award Experience and Gold. Bad Habits subtract Health.\n

\n Dailies are tasks that you have to do every day, like brushing your teeth or checking your email. You can adjust the days that a Daily is due by clicking the pencil item to edit it. If you skip a Daily that is due, your avatar will take damage overnight. Be careful not to add too many Dailies at once!\n

\n To-Dos are your To-Do list. Completing a To-Do earns you Gold and Experience. You never lose Health from To-Dos. You can add a due date to a To-Do by clicking the pencil icon to edit.", diff --git a/common/locales/da/gear.json b/common/locales/da/gear.json index 6ab066c2f8..182637eb89 100644 --- a/common/locales/da/gear.json +++ b/common/locales/da/gear.json @@ -149,15 +149,19 @@ "weaponArmoireRancherLassoText": "Ranch-ejerens Lasso", "weaponArmoireRancherLassoNotes": "Lassoer: det ideelle værktøj til at drive og indfange kvæg. Øger Styrke med <%= str %>, Opfattelse med <%= per %> og Intelligens med <%= int %>. Fortryllet Klædeskab: Ranch-ejerens Sæt (Genstand 3 af 3).", "weaponArmoireMythmakerSwordText": "Mytemagersværd", - "weaponArmoireMythmakerSwordNotes": "Omend det ser simpelt ud, så har dette sværd skabt mange legendariske helte. Øger Opfattelse og Styrke med <%= attrs %> hver. Fortryllet Klædeskab: Gyldent Togasæt (Genstand 3 af 3).", + "weaponArmoireMythmakerSwordNotes": "Though it may seem humble, this sword has made many mythic heroes. Increases Perception and Strength by <%= attrs %> each. Enchanted Armoire: Golden Toga Set (Item 3 of 3).", "weaponArmoireIronCrookText": "Jernhyrdestav", - "weaponArmoireIronCrookNotes": "Denne heftigt hamrede jernhyrdestav er god til at hyrde får. Øger Opfattelse og Styrke med <%= attrs %> hver. Fortryllet Klædeskab: Hornet Jernsæt (Genstand 3 af 3).", + "weaponArmoireIronCrookNotes": "Fiercely hammered from iron, this iron crook is good at herding sheep. Increases Perception and Strength by <%= attrs %> each. Enchanted Armoire: Horned Iron Set (Item 3 of 3).", "weaponArmoireGoldWingStaffText": "Gylden Vingestav", "weaponArmoireGoldWingStaffNotes": "Vingerne på denne stav flagrer og drejer sig konstant. Øger alle attributter med <%= attrs %> hver. Fortryllet Klædeskab: Ikke en del af et sæt.", "weaponArmoireBatWandText": "Flagermusestav", "weaponArmoireBatWandNotes": "This wand can turn any task into a bat! Wave it about and watch them fly away. Increases Intelligence by <%= int %> and Perception by <%= per %>. Enchanted Armoire: Independent Item.", "weaponArmoireShepherdsCrookText": "Shepherd's Crook", "weaponArmoireShepherdsCrookNotes": "Useful for herding gryphons. Increases Constitution by <%= con %>. Enchanted Armoire: Shepherd Set (Item 1 of 3).", + "weaponArmoireCrystalCrescentStaffText": "Crystal Crescent Staff", + "weaponArmoireCrystalCrescentStaffNotes": "Summon the power of the crescent moon with this shining staff! Increases Intelligence and Strength by <%= attrs %> each. Enchanted Armoire: Crystal Crescent Set (Item 3 of 3).", + "weaponArmoireBlueLongbowText": "Blue Longbow", + "weaponArmoireBlueLongbowNotes": "Ready... Aim... Fire! This bow has great range. Increases Perception by 9, Constitution by 8, and Strength by 7. Enchanted Armoire: Independent Item.", "armor": "rustning", "armorBase0Text": "Almindeligt tøj", "armorBase0Notes": "Helt normalt tøj. Giver ingen bonusser.", @@ -222,7 +226,7 @@ "armorSpecialBirthday2015Text": "Fjollet Festkostume", "armorSpecialBirthday2015Notes": "Tillykke med Fødselsdagen, Habitica! Brug dette Fjollede Festkostume til at fejre denne skønne dag! Giver ingen bonusser.", "armorSpecialGaymerxText": "Regnbuekrigers Rustning", - "armorSpecialGaymerxNotes": "For at fejre Pride-sæsonen og GaymerX er denne specielle rustning dekoreret med en lysende og farverig regnbue! GaymerX er en spil-messe, der fejrer LGBTQ og gaming, og den er åben for alle. Den foregår på InterContinental i San Fransisco 11-13 juli! Giver ingen bonusser.", + "armorSpecialGaymerxNotes": "In celebration of the GaymerX Conference, this special armor is decorated with a radiant, colorful rainbow pattern! GaymerX is a game convention celebrating LGTBQ and gaming and is open to everyone.", "armorSpecialSpringRogueText": "Elegant Kattedragt", "armorSpecialSpringRogueNotes": "Velsoigneret. Øger Opfattelse med <%= per %>. Specielt 2014 Forårsudstyr.", "armorSpecialSpringWarriorText": "Kløverståls-rustning", @@ -309,6 +313,8 @@ "armorMystery201508Notes": "Løb hurtigt som vinden i et blødt Gepardkostume! Giver ingen bonusser. August 2015 Abonnentting.", "armorMystery201509Text": "Varulvskostume", "armorMystery201509Notes": "This IS a costume, right? Confers no benefit. September 2015 Subscriber Item.", + "armorMystery201511Text": "Wooden Armor", + "armorMystery201511Notes": "Considering this armor was carved directly from a magical log, it's surprisingly comfortable. Confers no benefit. November 2015 Subscriber Item.", "armorMystery301404Text": "Steampunk-dragt", "armorMystery301404Notes": "Nydelig og elegant, selvfølgelig! Giver ingen bonusser. Februar 3015 Abonnentting.", "armorArmoireLunarArmorText": "Beroligende Måne-rustning", @@ -327,6 +333,8 @@ "armorArmoireShepherdRobesNotes": "The fabric is cool and breathable, perfect for a hot day herding gryphons in the desert. Increases Strength and Perception by <%= attrs %> each. Enchanted Armoire: Shepherd Set (Item 2 of 3).", "armorArmoireRoyalRobesText": "Royal Robes", "armorArmoireRoyalRobesNotes": "Wonderful ruler, rule all day long! Increases Constitution, Intelligence, and Perception by <%= attrs %> each. Enchanted Armoire: Royal Set (Item 3 of 3).", + "armorArmoireCrystalCrescentRobesText": "Crystal Crescent Robes", + "armorArmoireCrystalCrescentRobesNotes": "These magical robes are luminescent at night. Increases Constitution and Perception by <%= attrs %> each. Enchanted Armoire: Crystal Crescent Set (Item 2 of 3).", "headgear": "hovedbeklædning", "headBase0Text": "Ingen Hjelm", "headBase0Notes": "Ingen hovedbeklædning", @@ -447,7 +455,7 @@ "headSpecialFall2015HealerText": "Frøhat", "headSpecialFall2015HealerNotes": "This is an extremely serious hat that is worthy of only the most advanced potioners. Increases Intelligence by <%= int %>. Limited Edition 2015 Autumn Gear.", "headSpecialGaymerxText": "Regnbuekrigerhjelm", - "headSpecialGaymerxNotes": "For at fejre Pride-sæsonen og GaymerX er denne specielle hjelm dekoreret med en lysende og farverig regnbue! GaymerX er en spil-messe, der fejrer LGBTQ og gaming, og den er åben for alle. Den foregår på InterContinental i San Fransisco 11-13 juli! Giver ingen bonusser.", + "headSpecialGaymerxNotes": "In celebration of the GaymerX Conference, this special helmet is decorated with a radiant, colorful rainbow pattern! GaymerX is a game convention celebrating LGTBQ and gaming and is open to everyone.", "headMystery201402Text": "Bevinget Hjelm", "headMystery201402Notes": "Denne bevingede krone gør bæreren hurtig som vinden! Giver ingen bonusser. Februar 2014 Abonnentting.", "headMystery201405Text": "Sindets Flamme", @@ -470,6 +478,8 @@ "headMystery201508Notes": "Denne rare gepardhat er meget blød. Giver ingen bonusser. August 2015 Abonnentting.", "headMystery201509Text": "Varulvmaske", "headMystery201509Notes": "This IS a mask, right? Confers no benefit. September 2015 Subscriber Item.", + "headMystery201511Text": "Log Crown", + "headMystery201511Notes": "Count the number of rings to learn how old this crown is. Confers no benefit. November 2015 Subscriber Item.", "headMystery301404Text": "Smart Tophat", "headMystery301404Notes": "En smart tophat for de fineste folk! Giver ingen bonusser. Januar 3015 Abonnentting.", "headMystery301405Text": "Simpel Tophat", @@ -506,6 +516,8 @@ "headArmoireBlueFloppyHatNotes": "Many spells have been sewn into this simple hat, giving it a brilliant blue color. Increases Constitution, Intelligence, and Perception by <%= attrs %> each. Enchanted Armoire: Independent Item.", "headArmoireShepherdHeaddressText": "Shepherd Headdress", "headArmoireShepherdHeaddressNotes": "Sometimes the gryphons that you herd like to chew on this headdress, but it makes you seem more intelligent nonetheless. Increases Intelligence by <%= int %>. Enchanted Armoire: Shepherd Set (Item 3 of 3).", + "headArmoireCrystalCrescentHatText": "Crystal Crescent Hat", + "headArmoireCrystalCrescentHatNotes": "The design on this hat waxes and wanes with the phases of the moon. Increases Intelligence and Perception by <%= attrs %> each. Enchanted Armoire: Crystal Crescent Set (Item 1 of 3).", "offhand": "skjoldhånds-udstyr", "shieldBase0Text": "Intet Skjoldhånds-udstyr", "shieldBase0Notes": "Intet skjold eller andet våben.", diff --git a/common/locales/da/limited.json b/common/locales/da/limited.json index 5ee2ed04aa..2b45c400d1 100644 --- a/common/locales/da/limited.json +++ b/common/locales/da/limited.json @@ -21,6 +21,7 @@ "valentineCardAchievementText": "Åååh, du og din ven kan virkelig godt lide hinanden! Sendte eller modtog <%= cards %> Valentinsdagskort.", "polarBear": "Isbjørn", "turkey": "Kalkun", + "gildedTurkey": "Gilded Turkey", "polarBearPup": "Isbjørneunge", "jackolantern": "Græskarlygte", "seasonalShop": "Sæson-marked", diff --git a/common/locales/da/settings.json b/common/locales/da/settings.json index 8ac210d534..17487f05e8 100644 --- a/common/locales/da/settings.json +++ b/common/locales/da/settings.json @@ -143,5 +143,8 @@ "gemCapExtra": "Gem Cap Extra:", "mysticHourglasses": "Mystic Hourglasses:", "paypal": "PayPal", - "amazonPayments": "Amazon Payments" + "amazonPayments": "Amazon Payments", + "timezone": "Time Zone", + "timezoneUTC": "Habitica uses the time zone set on your PC, which is: <%= utc %>", + "timezoneInfo": "If that time zone is wrong, first reload this page using your browser's reload or refresh button to ensure that Habitica has the most recent information. If it is still wrong, adjust the time zone on your PC and then reload this page again.

If you use Habitica on other PCs or mobile devices, the time zone must be the same on them all. If your Dailies have been reseting at the wrong time, repeat this check on all other PCs and on a browser on your mobile devices." } \ No newline at end of file diff --git a/common/locales/da/tasks.json b/common/locales/da/tasks.json index e661b342d1..33906e3955 100644 --- a/common/locales/da/tasks.json +++ b/common/locales/da/tasks.json @@ -88,8 +88,7 @@ "fortifyText": "Forstærk vil returnere alle dine opgaver til en neutral (gul) værdi, som om du lige har tilføjet dem, og give dig fuldt Liv tilbage. Dette er godt hvis alle dine røde opgaver gør spillet for hårdt, eller alle dine blå opgaver gør det for nemt. Hvis du hellere vil starte forfra, så brug Ædelsten og bliv benådiget!", "sureDelete": "Er du sikker på, at du vil slette denne opgave?", "streakCoins": "Stribebonus!", - "pushTaskToTop": "Flyt opgave til toppen", - "pushTaskToBottom": "Flyt opgave til bunden", + "pushTaskToTop": "Push task to top. Hold ctrl or cmd to push to bottom.", "emptyTask": "Indtast først opgavens titel.", "dailiesRestingInInn": "Du slapper af på Kroen. Dine Daglige kan IKKE skade dig, men de vil stadig blive nulstillet hver dag. Hvis du er i gang med en quest, kan du ikke give skade/samle ting før du forlader Kroen, men du kan stadig blive skadet af Bossen, hvis dine gruppemedlemmer ikke udfører deres Daglige.", "habitHelp1": "Gode Vaner er noget du ofte gør. De giver Guld og Erfaring hver gang du klikker på <%= plusIcon %>.", diff --git a/common/locales/de/backgrounds.json b/common/locales/de/backgrounds.json index 357eeb8b3f..1ebcba725a 100644 --- a/common/locales/de/backgrounds.json +++ b/common/locales/de/backgrounds.json @@ -125,5 +125,12 @@ "backgroundNightDunesText": "Nachtdünen", "backgroundNightDunesNotes": "Spaziere friedlich durch die Nachtdünen.", "backgroundSunsetOasisText": "Oase im Abendrot", - "backgroundSunsetOasisNotes": "Sonne in der Oase im Abendrot." + "backgroundSunsetOasisNotes": "Sonne in der Oase im Abendrot.", + "backgrounds122015": "SET 19: Released December 2015", + "backgroundAlpineSlopesText": "Alpine Slopes", + "backgroundAlpineSlopesNotes": "Ski on the Alpine Slopes.", + "backgroundSnowySunriseText": "Snowy Sunrise", + "backgroundSnowySunriseNotes": "Gaze at the Snowy Sunrise.", + "backgroundWinterTownText": "Winter Town", + "backgroundWinterTownNotes": "Bustle through a Winter Town." } \ No newline at end of file diff --git a/common/locales/de/character.json b/common/locales/de/character.json index 0318c222ae..f76fb50546 100644 --- a/common/locales/de/character.json +++ b/common/locales/de/character.json @@ -19,7 +19,7 @@ "bodySlim": "Dünn", "bodyBroad": "Kräftig", "unlockSet": "Set freischalten - <%= cost %>", - "locked": "verschlossen", + "locked": "Stück", "shirts": "Shirts", "specialShirts": "Besondere Shirts", "bodyHead": "Frisuren und Haarfarben", diff --git a/common/locales/de/content.json b/common/locales/de/content.json index 8d7c5738ef..910aa5afed 100644 --- a/common/locales/de/content.json +++ b/common/locales/de/content.json @@ -25,13 +25,13 @@ "dropEggFlyingPigAdjective": "ein launenhafter", "dropEggDragonText": "Drache", "dropEggDragonMountText": "Drache", - "dropEggDragonAdjective": "ein maechtiger", + "dropEggDragonAdjective": "ein mächtiger", "dropEggCactusText": "Kaktus", "dropEggCactusMountText": "Kaktus", "dropEggCactusAdjective": "ein stacheliger", "dropEggBearCubText": "Jungbär", "dropEggBearCubMountText": "Bär", - "dropEggBearCubAdjective": "ein tintiger", + "dropEggBearCubAdjective": "ein knuddeliger", "questEggGryphonText": "Greif", "questEggGryphonMountText": "Greif", "questEggGryphonAdjective": "ein stolzer", @@ -97,10 +97,10 @@ "questEggHorseAdjective": "ein galoppierender", "questEggFrogText": "Frosch", "questEggFrogMountText": "Frosch", - "questEggFrogAdjective": "ein fürstlicher", - "questEggSnakeText": "Schlange", - "questEggSnakeMountText": "Schlange", - "questEggSnakeAdjective": "a slithering", + "questEggFrogAdjective": "ein prinzlicher", + "questEggSnakeText": "Taipan", + "questEggSnakeMountText": "Taipan", + "questEggSnakeAdjective": "ein schlängelnder", "eggNotes": "Finde einen Schlüpftrank, den du über dieses Ei gießen kannst, damit ein <%= eggAdjective(locale) %> <%= eggText(locale) %> schlüpfen kann.", "hatchingPotionBase": "Normaler", "hatchingPotionWhite": "Weißer", diff --git a/common/locales/de/faq.json b/common/locales/de/faq.json index 0e437df849..40049fbe31 100644 --- a/common/locales/de/faq.json +++ b/common/locales/de/faq.json @@ -2,7 +2,7 @@ "frequentlyAskedQuestions": "Häufig gestellte Fragen", "faqQuestion0": "Ich bin verwirrt. Wo bekomme ich einen Überblick?", "iosFaqAnswer0": "Als erstes, erstellst du Aufgaben, die du täglich erledigen möchtest. Wenn du diese Aufgaben erledigt hast, hake sie ab und du erhälst Erfahrung und Gold. Gold wird verwendet, um Ausrüstung und Gegenstände, sowie gewöhnliche Belohnung, zu kaufen. Erfahrung veranlasst deinen Charakter im Level aufzusteigen und entsperrt Inhalte, wie Haustiere, Fähigkeiten und Aufgaben! Du kannst deinen Charakter im Menü > Customize Avatar gestalten. \n\nEinige grundsätzliche Wege zu kommunzieren: klicke das (+) in der oberen rechten Ecke um eine neue Aufgabe hinzuzufügen. Klicke auf eine existierende Aufgabe um sie zu bearbeiten undstreiche darüber um sie zu löschen. Du kannst auch Aufgaben sortieren, indem du die Schilder in der oberen linken Ecke verwendest, sowie das Erweitern und Verkürzen der Checklisten, indem du auf die Checklist Blase klickst.", - "webFaqAnswer0": "Als erstes erstellst du Aufgaben, die du täglich erledigen möchtest. Wenn du diese Aufgaben erledigt hast, hake sie ab und du verdienst Erfahrung und Gold. Gold wird verwendet, um Ausrüstung und Gegenstände sowie gewöhnliche Belohnungen zu kaufen. Erfahrung lässt deinen Charakter im Level aufsteigen und entsperrt Inhalte wie Haustiere, Fähigkeiten und Aufgaben! Für weitere Details hat das Wiki eine Schritt-für-Schritt Anleitung des Spiels [right here] (http://habitica.wikia.com/wiki/Habitica_Wiki).", + "webFaqAnswer0": "First, you'll set up tasks that you want to do in your everyday life. Then, as you complete the tasks in real life and check them off, you'll earn Experience and Gold. Gold is used to buy equipment and some items, as well as custom rewards. Experience causes your character to level up and unlock content such as pets, skills, and quests! For more detail, check out a step-by-step overview of the game at [Help -> Overview for New Users](https://habitica.com/static/overview).", "faqQuestion1": "Wie erstelle ich meine Aufgaben?", "iosFaqAnswer1": "Gute Gewohnheiten (die, die ein + haben) sind Aufgaben, die du mehrmals am Tag wiederholen kannst, wie Gemüse essen. Schlechte Angewohnheiten (die, die ein - haben) sind Aufgaben, die man vermeiden sollte, wie Fingernägel kauen. Gewohnheiten mit einem + und einem - haben eine gute und eine schlechte Seite, wie die Treppe zu nehmen vs den Aufzug zu nehmen. Gute Gewohnheiten gewähren Erfahrung und Gold. Schlechte Gewohnheiten ziehen Gesundheit ab.\n\nDailies sind Aufgaben, die du jeden Tag machen musst, wie die Zähne zu putzen oder deine E-Mails abzurufen. Du kannst die Tage an denen eine Daily fällig ist, anpassen, indem du bearbeiten klickst. Wenn du eine Daily auslässt, die fällig ist, wird deinem Charakter über Nacht Schaden zugefügt. Sei vorsichtig und füge nicht zu viele Dailies auf einmal hinzu. \n\nTo-Dos ist deine Aufgabenliste. Ein To-Do zu erledigen, bringt dir Gold und Erfahrung. Du verlierst niemals Gesundheit bei To-Dos. Du kannst ein Ablaufdatum bei jedem To-Do hinzufügen, indem du bearbeiten klickst.", "webFaqAnswer1": "Gute Gewohnheiten (die, die ein haben) sind Aufgaben, die du mehrmals am Tag wiederholen kannst, wie Gemüse essen. Schlechte Angewohnheiten (die, die ein haben) sind Aufgaben, die man vermeiden sollte, wie Fingernägel kauen. Gewohnheiten mit einem und einem haben eine gute und eine schlechte Seite, wie die Treppe zu nehmen vs den Aufzug zu nehmen. Gute Gewohnheiten gewähren Erfahrung und Gold. Schlechte Gewohnheiten ziehen Gesundheit ab.\n

\nDailies sind Aufgaben, die du jeden Tag machen musst, wie die Zähne zu putzen oder deine E-Mails abzurufen. Du kannst die Tage an denen eine Daily fällig ist, anpassen, indem du bearbeiten klickst. Wenn du eine Daily auslässt, die fällig ist, wird deinem Charakter über Nacht Schaden zugefügt. Sei vorsichtig und füge nicht zu viele Dailies auf einmal hinzu. \n

To-Dos ist deine Aufgabenliste. Ein To-Do zu erledigen, bringt dir Gold und Erfahrung. Du verlierst niemals Gesundheit bei To-Dos. Du kannst ein Ablaufdatum bei jedem To-Do hinzufügen, indem du bearbeiten klickst.", diff --git a/common/locales/de/front.json b/common/locales/de/front.json index 2b7161c6cd..2b320e9f2f 100644 --- a/common/locales/de/front.json +++ b/common/locales/de/front.json @@ -74,7 +74,7 @@ "infhQuote": "[Habitica] 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. [Habitica] hat mich davon geheilt!", - "joinOthers": "Join <%= userCount %> people making it fun to achieve goals!", + "joinOthers": "Schließe dich <%= userCount %> Leuten an, die Spaß dabei haben, ihre Ziele zu erreichen!", "kazuiQuote": "Vor [Habitica] kam ich mit meiner Dissertation nicht weiter und war unzufrieden mit meiner Selbstdisziplin bei Hausarbeiten, Vokabellernen und dem Studium der Go-Theorie. Es hat sich herausgestellt, 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?", @@ -183,10 +183,10 @@ "apps": "Apps", "notifyAndroidApp": "Möchtest du, dass wir dir mitteilen, wenn die Android app fertig ist? Trage dich in unsere E-Mail-Liste ein!", "checkOutIOSApp": "Schau dir unsere neue iOS App an!", - "imagine1": "Imagine if improving your life were as fun as playing a game.", - "landingCopy1": "Advance in the game by completing your real-life tasks.", - "landingCopy2": "Battle monsters with friends to stay accountable to your goals.", - "landingCopy3": "Join over <%= userCount %> people having fun as they improve their lives.", - "alreadyHaveAccount": "I already have an account!", - "getStartedNow": "Get Started Now!" + "imagine1": "Stell dir vor dein Leben zu verbessern wäre so unterhaltsam wie ein Spiel zu spielen.", + "landingCopy1": "Mache Fortschritte im Spiel, indem du deine Aufgaben im echten Leben erledigst.", + "landingCopy2": "Wenn du mit Freunden Monster bekämpfst, bleibst du für das Erreichen deiner Ziele verantwortlich.", + "landingCopy3": "Schließe dich <%= userCount %> Leuten an, die Spaß dabei haben, ihr Leben zu verbessern.", + "alreadyHaveAccount": "Ich habe bereits ein Konto!", + "getStartedNow": "Jetzt loslegen!" } \ No newline at end of file diff --git a/common/locales/de/gear.json b/common/locales/de/gear.json index cb4fac232c..988d404390 100644 --- a/common/locales/de/gear.json +++ b/common/locales/de/gear.json @@ -147,17 +147,21 @@ "weaponArmoireLunarSceptreText": "Besänftigendes Mondzepter", "weaponArmoireLunarSceptreNotes": "Die heilende Kraft dieses Zauberstabs nimmt wie der Mond ab und zu. Erhöht Ausdauer um <%= con %> und Intelligenz um <%= int %>. Verzauberter Schrank: Beruhigendes Mondset (Gegenstand 3 von 3).", "weaponArmoireRancherLassoText": "Viehzüchterlasso", - "weaponArmoireRancherLassoNotes": "Lassos: das ideale Werkzeug zum Einfangen und Zäumen. Erhöht die Stärke um <%= str %>, Wahrnehmung um <%= pro %> und Intelligenz um <%= int %>. Verzauberter Schrank: Viehzüchter Set (Artikel 3 von 3).", + "weaponArmoireRancherLassoNotes": "Lassos: das ideale Werkzeug zum Einfangen und Zäumen. Erhöht Stärke um <%= str %>, Wahrnehmung um <%= per %> und Intelligenz um <%= int %>. Verzauberter Schrank: Viehzüchter Set (Gegenstand 3 von 3).", "weaponArmoireMythmakerSwordText": "Sagenumwobenes Schwert", - "weaponArmoireMythmakerSwordNotes": "Obwohl es möglicherweise unbedeutend aussieht, hat dieses Schwert viele Kämpfer zu mytische Helden gemacht. Erhöht Wahrnehmung und Stärke jeweils um <%= attrs %>. Verzauberter Schrank: Goldenes Toga Set (Gegenstand 3 von 3)", + "weaponArmoireMythmakerSwordNotes": "Though it may seem humble, this sword has made many mythic heroes. Increases Perception and Strength by <%= attrs %> each. Enchanted Armoire: Golden Toga Set (Item 3 of 3).", "weaponArmoireIronCrookText": "Eiserner Hirtenstab", - "weaponArmoireIronCrookNotes": "Dieser mit Leidenschaft gehämmerte eiserne Hirtenstab ist nützlich zum Schafe hüten. Erhöht Wahrnehmung und Stärke jeweils um <%= attrs %>. Verzauberter Schrank: Gehörntes Eisenset (Gegenstand 3 von 3)", + "weaponArmoireIronCrookNotes": "Fiercely hammered from iron, this iron crook is good at herding sheep. Increases Perception and Strength by <%= attrs %> each. Enchanted Armoire: Horned Iron Set (Item 3 of 3).", "weaponArmoireGoldWingStaffText": "Goldener geflügelter Stab", "weaponArmoireGoldWingStaffNotes": "Die Flügel dieses Stabes flattern und drehen sich ständig. Erhöht alle Attribute um <%= attrs %>. Verzauberter Schrank: Unabhängiger Gegenstand.", "weaponArmoireBatWandText": "Fledermaus Zauberstab", "weaponArmoireBatWandNotes": "Dieser Zauberstab kann jede Aufgabe in eine Fledermaus verwandeln. Schwinge ihn und schau zu wie sie davon fliegen. Erhöht Intelligenz um <%= int %> und Wahrnehmung um <%= per %>. Verzauberter Schrank: Unabhängiger Gegenstand. ", "weaponArmoireShepherdsCrookText": "Hirtenstab", "weaponArmoireShepherdsCrookNotes": "Nützlich um Greife zu hüten. Erhöht Ausdauer um <%= con %>. Verzauberter Schrank: Hirten-Set (Gegenstand 1 von 3)", + "weaponArmoireCrystalCrescentStaffText": "Crystal Crescent Staff", + "weaponArmoireCrystalCrescentStaffNotes": "Summon the power of the crescent moon with this shining staff! Increases Intelligence and Strength by <%= attrs %> each. Enchanted Armoire: Crystal Crescent Set (Item 3 of 3).", + "weaponArmoireBlueLongbowText": "Blue Longbow", + "weaponArmoireBlueLongbowNotes": "Ready... Aim... Fire! This bow has great range. Increases Perception by 9, Constitution by 8, and Strength by 7. Enchanted Armoire: Independent Item.", "armor": "Rüstung", "armorBase0Text": "Schlichte Kleidung", "armorBase0Notes": "Gewöhnliches Kleidungsstück. Gewährt keinen Bonus zu Attributen.", @@ -222,7 +226,7 @@ "armorSpecialBirthday2015Text": "Alberne Party Roben", "armorSpecialBirthday2015Notes": "Alles Gute zum Geburtstag, Habitica! Trage diese albernen Party Roben um diesen wundervollen Tag zu feiern. Sie geben keinen Attributbonus.", "armorSpecialGaymerxText": "Regenbogenkriegerrüstung", - "armorSpecialGaymerxNotes": "Dieser besondere Helm ist zur Feier der Pride-Zeit und GaymerX mit einem strahlenden, bunten Regenbogen verziert! GaymerX ist eine Game Convention, die LGBTQ und Gaming feiert und an der jeder teilnehmen kann. Sie findet im InterContinental in der Stadtmitte von San Francisco vom 11.-13. Juli statt. Kein Attributbonus.", + "armorSpecialGaymerxNotes": "In celebration of the GaymerX Conference, this special armor is decorated with a radiant, colorful rainbow pattern! GaymerX is a game convention celebrating LGTBQ and gaming and is open to everyone.", "armorSpecialSpringRogueText": "Geschmeidiger Katzenanzug", "armorSpecialSpringRogueNotes": "Perfekt gepflegt. Erhöht Wahrnehmung um <%= per %>. Limited Edition 2014 Frühlings-Ausrüstung.", "armorSpecialSpringWarriorText": "Hartkleerüstung", @@ -309,6 +313,8 @@ "armorMystery201508Notes": "Sei schnell wie der Blitz im flauschigen Geparden Kostüm! Gewährt keinen Attributbonus. Abonnentengegenstand August 2015", "armorMystery201509Text": "Werwolfverkleidung", "armorMystery201509Notes": "Das IST doch ein Kostüm, nicht wahr? Kein Attributbonus. September 2015 Abonnenten-Gegenstand.", + "armorMystery201511Text": "Wooden Armor", + "armorMystery201511Notes": "Considering this armor was carved directly from a magical log, it's surprisingly comfortable. Confers no benefit. November 2015 Subscriber Item.", "armorMystery301404Text": "Steampunkanzug", "armorMystery301404Notes": "Adrett und schneidig, hoho! Februar 3015 Abonennten-Gegenstand. Kein Attributbonus.", "armorArmoireLunarArmorText": "Beruhigende Mondrüstung", @@ -327,6 +333,8 @@ "armorArmoireShepherdRobesNotes": "Der Stoff ist kühl und atmungsaktiv, perfekt um an heißen Tagen Greife in der Wüste zu hüten. Erhöht Stärke und Wahrnehmung um je <%= attrs %>. Verzauberter Schrank: Hirten-Set (Gegenstand 2 von 3).", "armorArmoireRoyalRobesText": "Königliche Gewänder", "armorArmoireRoyalRobesNotes": "Wundervoller Herrscher, herrsche den ganzen Tag! Erhöht Ausdauer, intelligenz und Wahrnehmung um je <%= attrs %>. Verzauberter Schrank: Königsset (Gegenstand 3 von 3).", + "armorArmoireCrystalCrescentRobesText": "Crystal Crescent Robes", + "armorArmoireCrystalCrescentRobesNotes": "These magical robes are luminescent at night. Increases Constitution and Perception by <%= attrs %> each. Enchanted Armoire: Crystal Crescent Set (Item 2 of 3).", "headgear": "Kopfschutz", "headBase0Text": "Kein Helm.", "headBase0Notes": "Keine Kopfbedeckung.", @@ -447,7 +455,7 @@ "headSpecialFall2015HealerText": "Froschhut", "headSpecialFall2015HealerNotes": "Das ist ein sehr ernster Hut, dass würdig den meisten erweiterten Zaubertranksmachern ist. Es erhöht Intelligeny von <%= int %>. Limited Edition 2015 Herbst Ausrüstung.", "headSpecialGaymerxText": "Regenbogenkriegerhelm", - "headSpecialGaymerxNotes": "Dieser besondere Helm ist zur Feier der Pride-Zeit und GaymerX mit einem strahlenden, bunten Regenbogen verziert! GaymerX ist eine Game Convention, die LGBTQ und Gaming feiert und an der jeder teilnehmen kann. Sie findet im InterContinental in der Stadtmitte von SanFrancisco vom 11.-13. Juli statt. Kein Attributbonus.", + "headSpecialGaymerxNotes": "In celebration of the GaymerX Conference, this special helmet is decorated with a radiant, colorful rainbow pattern! GaymerX is a game convention celebrating LGTBQ and gaming and is open to everyone.", "headMystery201402Text": "Geflügelter Helm", "headMystery201402Notes": "Dieser geflügelte Helm verleiht seinem Träger die Geschwindigkeit des Windes. Kein Attributbonus. Februar 2014 Abonnenten-Gegenstand.", "headMystery201405Text": "Flamme des Geistes", @@ -470,6 +478,8 @@ "headMystery201508Notes": "Dieser Gepardenhut ist sehr flauschig! Gewährt keinen Attributbonus. Abonnentengegenstand August 2015", "headMystery201509Text": "Werwolfmaske", "headMystery201509Notes": "Das IST doch eine Maske, nicht wahr? Kein Attributbonus. September 2015 Abonnenten-Gegenstand.", + "headMystery201511Text": "Log Crown", + "headMystery201511Notes": "Count the number of rings to learn how old this crown is. Confers no benefit. November 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", @@ -506,6 +516,8 @@ "headArmoireBlueFloppyHatNotes": "Viele Zaubersprüche wurden auf diesen Hut gewirkt, um ihm seine strahlend blaue Farbe zu geben. Erhöht Ausdauer, Intelligenz und Wahrnehmung um jeweils <%= attrs %>. Verzauberter Schrank: Unabhängiger Gegenstand", "headArmoireShepherdHeaddressText": "Kopfschmuck des Hirten", "headArmoireShepherdHeaddressNotes": "Manchmal lieben die Greifen, die du hütest, es auf dieser Kopfbedeckung herumzukauen, aber es scheint sie nichtsdestotrotz intelligenter zu machen. Erhöht Intelligenz um <%= int %>. Verzauberter Schrank: Hirten-Set (Gegenstand 3 von 3)", + "headArmoireCrystalCrescentHatText": "Crystal Crescent Hat", + "headArmoireCrystalCrescentHatNotes": "The design on this hat waxes and wanes with the phases of the moon. Increases Intelligence and Perception by <%= attrs %> each. Enchanted Armoire: Crystal Crescent Set (Item 1 of 3).", "offhand": "Schildhand-Gegenstand", "shieldBase0Text": "Keine Schildhand-Ausrüstung", "shieldBase0Notes": "Kein Schild oder keine zweite Waffe.", diff --git a/common/locales/de/generic.json b/common/locales/de/generic.json index 7309418ce6..26fc617ee8 100644 --- a/common/locales/de/generic.json +++ b/common/locales/de/generic.json @@ -69,9 +69,9 @@ "habiticaDayPluralText": "Hat <%= number %> Namenstage gefeiert! Danke, dass Du so ein toller Nutzer bist!", "achievementDilatory": "Retter von Dilatory", "achievementDilatoryText": "Hat beim 2014 Summer Splash Event dabei geholfen, den Schreckensdrachen von Dilatory zu besiegen!", - "costumeContest": "Costume Contestant", - "costumeContestText": "Participated in the Habitoween Costume Contest. See some of the entries on the Habitica blog!", - "costumeContestTextPlural": "Participated in <%= number %> Habitoween Costume Contests. See some of the entries on the Habitica blog!", + "costumeContest": "Kostümwettbewerbsteilnehmer", + "costumeContestText": "Hat am Habitoween Kostümwettbewerb teilgenommen. Schau einige Einträge im Habitica Blog an!", + "costumeContestTextPlural": "Hat an <%= number %> Habitoween Kostümwettbewerben teilgenommen. Schau einige Einträge im Habitica Blog an!", "memberSince": "- Teilnehmer seit", "lastLoggedIn": "- Zuletzt eingeloggt", "notPorted": "Dieses Feature wurde noch nicht von der ursprünglichen Seite geportet.", @@ -139,13 +139,13 @@ "streakAchievement": "Du hast einen Strähnen-Erfolg erzielt!", "firstStreakAchievement": "21-Tage Strähne", "streakAchievementCount": "<%= streaks %> 21-Tage Strähnen", - "twentyOneDays": "You've completed your Daily for 21 days in a row!", - "dontBreakStreak": "Amazing job. Don't break the streak!", - "dontStop": "Don't Stop Now!", - "levelUpShare": "I leveled up in Habitica by improving my real-life habits!", - "questUnlockShare": "I unlocked a new quest in Habitica!", - "hatchPetShare": "I hatched a new pet by completing my real-life tasks!", - "raisePetShare": "I raised a pet into a mount by completing my real-life tasks!", - "wonChallengeShare": "I won a challenge in Habitica!", - "achievementShare": "I earned a new achievement in Habitica!" + "twentyOneDays": "Du hast deine tägliche Aufgabe an 21 aufeinander folgenden Tagen erledigt!", + "dontBreakStreak": "Erstaunliche Leistung. Unterbrich die Strähne nicht!", + "dontStop": "Jetzt nicht aufhören!", + "levelUpShare": "Ich habe in Habitica ein neues Level erreicht, indem ich meine Gewohnheiten verbessert habe!", + "questUnlockShare": "Ich habe ein neues Quest in Habitica freigeschaltet!", + "hatchPetShare": "Ich habe ein neues Haustier ausgebrütet, indem ich meine Aufgaben im echten Leben erledigt habe!", + "raisePetShare": "Ich habe ein Haustier zu einem Reittier großgezogen, indem ich meine Aufgaben im echten Leben erledigt habe!", + "wonChallengeShare": "Ich habe in Habitica einen Wettbewerb gewonnen!", + "achievementShare": "Ich habe in Habitica einen neuen Erfolg verdient!" } \ No newline at end of file diff --git a/common/locales/de/groups.json b/common/locales/de/groups.json index 5e3f648a11..8ef4cb2b75 100644 --- a/common/locales/de/groups.json +++ b/common/locales/de/groups.json @@ -147,5 +147,5 @@ "partyChatEmpty": "Dein Gruppenchat ist leer. Tippe eine Nachricht in der Box und beginne mit dem Chat.", "guildChatEmpty": "Dieser Gildenchat ist leer. Gib eine Nachricht ein und beginne mit dem Chat.", "possessiveParty": "<%= name %>s Gruppe", - "requestAcceptGuidelines": "If you would like to post messages in the Tavern or any party or guild chat, please first read our <%= linkStart %>Community Guidelines<%= linkEnd %> and then click the button below to indicate that you accept them." + "requestAcceptGuidelines": "Wenn du Nachrichten in der Schenke oder in irgendeinem Gruppen- oder Gilden-Chat posten willst, bitte lies zuerst unsere <%= linkStart %>Community-Richtlinien<%= linkEnd %>. Klicke danach unten auf den Button, um sie zu akzeptieren." } \ No newline at end of file diff --git a/common/locales/de/limited.json b/common/locales/de/limited.json index 227616732b..c56dbca3cb 100644 --- a/common/locales/de/limited.json +++ b/common/locales/de/limited.json @@ -21,6 +21,7 @@ "valentineCardAchievementText": "Ohh, deine Freunde und du, ihr müsst euch ja wirklich gern haben. Du hast insgesamt <%= cards %> Valentinstagskarten gesendet und bekommen.", "polarBear": "Eisbär", "turkey": "Truthahn", + "gildedTurkey": "Gilded Turkey", "polarBearPup": "Eisbärenjunges", "jackolantern": "Halloweenkürbis", "seasonalShop": "Saisonaler Shop", diff --git a/common/locales/de/noscript.json b/common/locales/de/noscript.json index 6057268ef2..8b5b0a84c8 100644 --- a/common/locales/de/noscript.json +++ b/common/locales/de/noscript.json @@ -1,6 +1,6 @@ { - "jsDisabledHeading": "Alas! Your browser doesn't have JavaScript enabled", - "jsDisabledHeadingFull": "Alas! Your browser doesn't have JavaScript enabled and without it, Habitica can't work properly", - "jsDisabledText": "Habitica can't properly display the site without it!", - "jsDisabledLink": "Please enable JavaScript to continue!" + "jsDisabledHeading": "Oh je! Dein Browser erlaubt kein JavaScript", + "jsDisabledHeadingFull": "Oh je! Dein Browser erlaubt kein JavaScript und ohne dieses funktioniert Habitica nicht richtig", + "jsDisabledText": "Habitica kann die Seite sonst nicht richtig darstellen!", + "jsDisabledLink": "Bitte erlaube JavaScript um fortzufahren!" } \ No newline at end of file diff --git a/common/locales/de/pets.json b/common/locales/de/pets.json index 1179f267d8..593cb09fb1 100644 --- a/common/locales/de/pets.json +++ b/common/locales/de/pets.json @@ -9,7 +9,7 @@ "questMounts": "Quest Reittiere", "magicMounts": "Magische Reittiere", "rareMounts": "Seltene Reittiere", - "etherealLion": "Ethärischer Löwe", + "etherealLion": "Ätherischer Löwe", "veteranWolf": "Veteranwolf", "veteranTiger": "Veteranentiger", "cerberusPup": "Zerberuswelpe", @@ -64,8 +64,8 @@ "earnedCompanion": "Durch deine Produktivität hast du einen neuen Begleiter erhalten. Füttere ihn, damit er wächst.", "feedPet": "'Verfüttere <%= article %> <%= text %> an <%= name %>?", "useSaddle": "Einen magischen Sattel auf <%= pet %> anwenden?", - "raisedPet": "You grew a <%= pet %>!", - "earnedSteed": "By completing your tasks, you've earned a faithful steed!", + "raisedPet": "Du hast einen <%= pet %> aufgezogen!", + "earnedSteed": "Durch das Erfüllen deiner Aufgaben hast du ein treues Reittier verdient!", "rideNow": "Jetzt reiten", "rideLater": "Später reiten", "petName": "<%= potion %> <%= egg %>", diff --git a/common/locales/de/quests.json b/common/locales/de/quests.json index 1e65eceb7e..80038272bf 100644 --- a/common/locales/de/quests.json +++ b/common/locales/de/quests.json @@ -25,7 +25,7 @@ "rejected": "Abgelehnt", "pending": "Überlegt noch", "questStart": "Sobald alle Mitglieder die Einladung entweder angenommen oder abgelehnt haben beginnt die Quest. Nur diejenigen, die die Einladung \"angenommen\" haben können an der Quest teilnehmen und die Belohnungen kassieren. Wenn Mitglieder zu lange überlegen (inaktiv?), kannst Du die Quest ohne sie starten indem Du auf \"Beginnen\" klickst. Der Quest-Besitzer kann die Quest auch abbrechen und die Questrolle zurückerhalten indem er \"Abbrechen\" klickt.", - "questStartBroken": "Once all members have either accepted or rejected, the quest begins... Only those that clicked \"accept\" will be able to participate in the quest and receive the drops... If members are pending too long (inactive?), the quest owner can start the quest without them by clicking \"Begin\"... The quest owner can also cancel the quest and regain the quest scroll by clicking \"Cancel\"...", + "questStartBroken": "Sobald alle Mitglieder die Einladung entweder angenommen oder abgelehnt haben beginnt das Quest... Nur diejenigen, die die Einladung \"angenommen\" haben können an dem Quest teilnehmen und die Belohnungen kassieren... Wenn Mitglieder zu lange überlegen (inaktiv?), kannst Du das Quest ohne sie starten indem Du auf \"Beginnen\" klickst... Der Quest-Besitzer kann die Quest auch abbrechen und die Questrolle zurückerhalten indem er \"Abbrechen\" klickt...", "begin": "Beginnen", "bossHP": "Boss Lebenspunkte", "bossStrength": "Boss Stärke", @@ -36,10 +36,10 @@ "itemsToCollect": "Zu sammelnde Gegenstände", "bossDmg1": "Jede erledigte tägliche Aufgabe und Aufgabe und jede positive Gewohnheit fügt dem Boss Schaden zu. Mit röteren 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 sorge 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.", - "bossDmg1Broken": "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)...", + "bossDmg1Broken": "Jede erledigte tägliche und einmalige Aufgabe und jede positive Gewohnheit fügt dem Boss Schaden zu... Mit röteren 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 sorge 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)...", "bossDmg2Broken": "Nur Teilnehmer kämpfen gegen den Boss und erhalten ihren Anteil an der Beute.", - "tavernBossInfo": "Complete Dailies and To-Dos and score positive Habits to damage the World Boss! Incomplete Dailies fill the Exhaust Strike Bar. When the Exhaust 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 not resting in the Inn will have their tasks tallied.", - "tavernBossInfoBroken": "Complete Dailies and To-Dos and score positive Habits to damage the World Boss... Incomplete Dailies fill the Exhaust Strike Bar... When the Exhaust 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 not resting in the Inn will have their tasks tallied...", + "tavernBossInfo": "Erledige tägliche und einmalige Aufgaben und punkte mit guten Gewohnheiten, um dem Weltboss zu schaden! Unerledigte tägliche Aufgaben füllen die Erschöpfungsschlagleiste. Wenn sie voll ist, greift der Weltboss einen NPC an. Ein Weltboss wird niemals einzelnen Spielern oder Accounts auf irgendeine Weise schaden. Nur die Aufgaben aktiver Accounts, welche sich nicht im Gasthaus erholen, werden aufsummiert.", + "tavernBossInfoBroken": "Erledige tägliche und einmalige Aufgaben und punkte mit guten Gewohnheiten, um dem Weltboss zu schaden... Unerledigte tägliche Aufgaben füllen die Erschöpfungsschlagleiste... Wenn sie voll ist, greift der Weltboss einen NPC an... Ein Weltboss wird niemals einzelnen Spielern oder Accounts auf irgendeine Weise schaden... Nur die Aufgaben aktiver Accounts, welche sich nicht im Gasthaus erholen, werden aufsummiert...", "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.", "bossColl2": "Nur Teilnehmer können Gegenstände sammeln und erhalten ihren Anteil an der Beute.", "bossColl1Broken": "Im Gegenstände zu sammeln müssen positive Aufgaben abgeschlossen werden... Quest Gegenstände erhält man genau wie normale Gegenstände; Egal welche du kannst sie nicht vor dem nächsten Tag sehen.\nthen everything you've found will be tallied up and contributed to the pile...", @@ -77,6 +77,6 @@ "startQuest": "Quest starten", "whichQuestStart": "Welche Quest willst Du starten?", "getMoreQuests": "Erhalte mehr Quests", - "unlockedAQuest": "You unlocked a quest!", - "leveledUpReceivedQuest": "You leveled up to Level <%= level %> and received a quest scroll!" + "unlockedAQuest": "Du hast ein Quest freigeschaltet!", + "leveledUpReceivedQuest": "Du hast Level <%= level %> erreicht und eine Questschriftrolle erhalten!" } \ No newline at end of file diff --git a/common/locales/de/questscontent.json b/common/locales/de/questscontent.json index d840696328..926ee2082f 100644 --- a/common/locales/de/questscontent.json +++ b/common/locales/de/questscontent.json @@ -10,10 +10,10 @@ "questEvilSanta2CollectTracks": "Spuren", "questEvilSanta2CollectBranches": "Zerbrochene Zweige", "questEvilSanta2DropBearCubPolarPet": "Eisbär (Haustier)", - "questGryphonText": "Der Feurige Greif", + "questGryphonText": "Der Feuergreif", "questGryphonNotes": "Der große Herr aller Bestien, baconsaur, kommt zu deiner Gruppe, denn er sucht nach Hilfe. \"Abenteurer, bitte, ihr müsst mir helfen! Mein preisgekrönter Greif ist ausgebrochen und terrorisiert nun Habit City! Wenn ihr sie aufhaltet, kann ich euch mit einigen von ihren Eiern belohnen!\"", "questGryphonCompletion": "Das mächtige Tier schleicht besiegt zu seinem Meister zurück. \"Ich bin beeindruckt! Gut gemacht, Abenteurer!\" ruft baconsaur, \"Bitte nehmt ein paar Greifeneier als Dank an. Ich bin sicher, Ihr werdet Euch gut um sie kümmern!\"", - "questGryphonBoss": "Feuriger Greif", + "questGryphonBoss": "Feuergreif", "questGryphonDropGryphonEgg": "Greif (Ei)", "questGryphonUnlockText": "Ermöglicht den Kauf von Greifeneiern auf dem Marktplatz", "questHedgehogText": "Das Igelmonster", @@ -112,13 +112,13 @@ "questEggHuntCollectPlainEgg": "Einfache Eier", "questEggHuntDropPlainEgg": "Einfaches Ei", "questDilatoryText": "Der Schreckensdrache von Dilatory", - "questDilatoryNotes": "

Wir hätten die Warnungen beachten sollen.


Dunkle, glänzende Augen. Uralte Schuppen. Ein riesiger Kiefer, und blitzende Zähne. Wir haben etwas schreckliches aus der Meeresspalte erweckt: den Schreckensdrachen von Dilatory! Schreiende Habiticaner flohen in alle Richtungen, als er sich aus dem Meer erhob und sein entsetzlich langer Hals hunderte Meter aus dem Wasser ragte und Fenster mit seinem durchdringenden Gebrüll zersplitterte.


\"Das muss es sein, was Dilatory hinuntergezogen hat!\" schreit Lemoness. \"Es war nicht das Gewicht der vernachlässigten Aufgaben - die dunkelroten täglichen Aufgaben haben nur seine Aufmerksamkeit auf sich gezogen!\"


\"Er ist voller magischer Energie!\" ruft @Baconsaur. \"Um so lang überlebt zu haben, muss er sich selbst heilen können! Wie können wir ihn besiegen?\"


Na, genauso wie wir alle Monster besiegen - mit Produktivität! Schnell, Habitica, vereint euch, erschlagt eure Aufgaben und wir alle werden dieses Monster gemeinsam bekämpfen. (Es ist nicht nötig, dafür frühere Quests aufzugeben - wir glauben an eure Fähigkeit zum Doppelschlag!) Er wird uns nicht einzeln angreifen, aber je mehr tägliche Aufgaben wir auslassen, desto höher ist das Risiko, dass wir seinen Vernachlässigungsschlag auslösen - und es gefällt mir gar nicht, wie es die Taverne anschaut....

", + "questDilatoryNotes": "

Wir hätten die Warnungen beachten sollen.


Dunkle, glänzende Augen. Uralte Schuppen. Ein riesiger Kiefer, und blitzende Zähne. Wir haben etwas Schreckliches aus der Meeresspalte erweckt: den Schreckensdrachen von Dilatory! Schreiende Habiticaner flohen in alle Richtungen, als er sich aus dem Meer erhob und sein entsetzlich langer Hals hunderte Meter aus dem Wasser ragte und Fenster mit seinem durchdringenden Gebrüll zersplitterte.


\"Das muss es sein, was Dilatory hinuntergezogen hat!\" schreit Lemoness. \"Es war nicht das Gewicht der vernachlässigten Aufgaben - die dunkelroten täglichen Aufgaben haben nur seine Aufmerksamkeit auf sich gezogen!\"


\"Er ist voller magischer Energie!\" ruft @Baconsaur. \"Um so lang überlebt zu haben, muss er sich selbst heilen können! Wie können wir ihn besiegen?\"


Na, genauso wie wir alle Monster besiegen - mit Produktivität! Schnell, Habitica, vereint euch, erschlagt eure Aufgaben und wir alle werden dieses Monster gemeinsam bekämpfen. (Es ist nicht nötig, dafür frühere Quests aufzugeben - wir glauben an eure Fähigkeit zum Doppelschlag!) Er wird uns nicht einzeln angreifen, aber je mehr tägliche Aufgaben wir auslassen, desto höher ist das Risiko, dass wir seinen Vernachlässigungsschlag auslösen - und es gefällt mir gar nicht, wie er das Gasthaus anschaut....

", "questDilatoryBoss": "Der Schreckensdrache von Dilatory", "questDilatoryBossRageTitle": "Vernachlässigungsschlag", "questDilatoryBossRageDescription": "Wenn sich dieser Balken gefüllt hat, dann wird der schreckliche Drache von Dilatory großes Unheil über Habitica bringen.", "questDilatoryDropMantisShrimpPet": "Fangschreckenkrebs (Haustier)", "questDilatoryDropMantisShrimpMount": "Fangschreckenkrebs (Reittier)", - "questDilatoryBossRageTavern": "Schreckensdrache attackiert mit VERNACHLÄSSIGUNGSSCHLAG!'\n\nOje! Obwohl wir unser Bestes gegeben haben, sind uns ein paar tägliche Aufgaben entwischt und ihre dunkelrote Farbe hat den Zorn des Drachen angezogen! Mit seiner entsetzlichen Vernachlässigungsschlag-Attacke hat er die Taverne dem Erdboden gleichgemacht! Glücklicherweise haben wir in einer benachbarten Stadt ein Gasthaus aufgebaut, sodass ihr euch weiterhin am Ufer unterhalten könnt... aber der arme Barkeeper Daniel musste gerade zusehen, wie sein geliebtes Gebäude um ihn zusammenstürzt! \n\nIch hoffe, das Biest greift nicht noch einmal an!", + "questDilatoryBossRageTavern": "Schreckensdrache attackiert mit VERNACHLÄSSIGUNGSSCHLAG!'\n\nOje! Obwohl wir unser Bestes gegeben haben, sind uns ein paar tägliche Aufgaben entwischt und ihre dunkelrote Farbe hat den Zorn des Drachen angezogen! Mit seiner entsetzlichen Vernachlässigungsschlag-Attacke hat er das Gasthaus dem Erdboden gleichgemacht! Glücklicherweise haben wir in einer benachbarten Stadt eine Herberge aufgebaut, sodass ihr euch weiterhin am Ufer unterhalten könnt... aber der arme Barkeeper Daniel musste gerade zusehen, wie sein geliebtes Gebäude um ihn zusammenstürzt! \n\nIch hoffe, das Biest greift nicht noch einmal an!", "questDilatoryBossRageStables": "'Schreckensdrache attackiert mit VERNACHLÄSSIGUNGSSCHLAG!'\n\nOh nein! Wir haben schon wieder zu viele unserer täglichen Aufgaben nicht erledigt. Der Drache hat seinen Vernachlässigungsschlag gegen Matt und die Ställe losgelassen! Die Haustiere sind in alle Richtungen geflohen. Glücklicherweise scheinen Deine alle sicher zu sein!\n\nArmes Habitica! Ich hoffe, das passiert nicht noch mal. Beeil dich und erledige alle Deine Aufgaben!", "questDilatoryBossRageMarket": "'Schreckensdrache attackiert mit VERNACHLÄSSIGUNGSSCHLAG!'\n\nAhhh!! Der Laden von Alex dem Händler wurde gerade vom Vernachlässigungsschlag des Drachen in tausend Stücke geschlagen! Aber es scheint, als würden wir das Biest langsam mürbe machen. Ich bezweifle, dass es genug Kraft für einen weiteren Schlag hat. \n\nAlso verzage nicht, Habitica! Lasst uns dieses Biest von unseren Küsten vertreiben!", "questDilatoryCompletion": "'Der Sieg über den Schreckensdrachen von Dilatory'\n\nWir haben es geschafft! Der Schreckensdrachen bricht mit einem allerletzten Gebrüll zusammen und schwimmt weit, weit fort. Gruppen jubelnder Habiticaner stehen an den Küsten! Wir haben Matt, Daniel und Alex gefunden, ihre Gebäude wieder aufzubauen. Aber was ist das? \n\n'Die Bürger kehren zurück!'\n\nJetzt wo der Drache geflohen ist, steigen im Meer tausende glitzernde Farben auf. Es ist ein Regenbogenschwarm von Fangschreckenkrebsen.. und zwischen ihnen, hunderte von Wassermenschen! \n\n\"Wir sind die verlorenen Bürger von Dilatory!\" erklärt ihr Anführer, Manta. \"Als Dilatory sank, verwandelten uns die Fangschreckenkrebse mit einem Zauberspruch in Wassermenschen, sodass wir überleben konnten. Aber in seinem Zorn fing uns der Schreckensdrache alle in der dunklen Meeresspalte. Wir waren dort hunderte Jahre gefangen - aber jetzt sind wir endlich frei und können unsere Stadt wieder aufbauen! \n\n\"Als Dankeschön,\" sagt @Ottl, \"Bitte nimm dieses Fangschreckenkrebs-Haustier, dieses Fangschreckenkrebs-Reittier und EXP, Gold und unsere ewige Dankbarkeit an!\"\n\n'Belohnungen'\n* Fangschreckenkrebs-Haustier\n* Fangschreckenkrebs-Reittier\n* Schokolade, blaue Zuckerwatte, pinke Zuckerwatte, Fisch, Honig, Fleisch, Milch, Kartoffel, verdorbenes Fleisch, Erdbeere", @@ -191,10 +191,10 @@ "questBunnyCompletion": "Von einem letzten Schlag getroffen sinkt das Killerkaninchen 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 Du Dich 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": "Ermöglicht den Kauf von Haseneier auf dem Marktplatz", - "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.", + "questSlimeText": "Der Glibberkö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 Glibberkö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": "Glibberkönig", + "questSlimeCompletion": "Mit einem letzten Mopstoß stößt Du den Glibberkö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": "Ermöglicht den Kauf von Schleim Eier auf dem Marktplatz", "questSheepText": "Der Donnerbock", diff --git a/common/locales/de/rebirth.json b/common/locales/de/rebirth.json index 87daac4bb7..b1a797495b 100644 --- a/common/locales/de/rebirth.json +++ b/common/locales/de/rebirth.json @@ -16,7 +16,7 @@ "rebirthEarnAchievement": "Du erhältst den Erfolg für das Beginnen eines neuen Abenteuers!", "beReborn": "Werde wiedergeboren", "rebirthAchievement": "Du hast ein neues Abenteuer begonnen! Das ist Wiedergeburt Nummer <%= number %> für Dich, Dein höchstes jemals erreichtes Level ist <%= level %>. Um diesen Erfolg zu stapeln, beginne Dein nächstes Abenteuer wenn Du ein noch höheres Level erreicht hast!", - "rebirthAchievement100": "You've begun a new adventure! This is Rebirth <%= number %> for you, and the highest Level you've attained is 100 or higher. To stack this Achievement, begin your next new adventure when you've reached at least 100!", + "rebirthAchievement100": "Du hast ein neues Abenteuer begonnen! Das ist deine <%= number %> Wiedergeburt. Dein höchstes jemals erreichtes Level ist 100 oder mehr. Um diesen Erfolg zu stapeln, beginne Dein nächstes Abenteuer wenn Du mindestens Level 100 erreicht hast!", "rebirthBegan": "Hat ein neues Abenteuer begonnen", "rebirthText": "Hat <%= rebirths %> neue Abenteuer begonnen", "rebirthOrb": "Hat eine Sphäre der Wiedergeburt verwendet nachdem er folgendes Level erreicht hatte:", diff --git a/common/locales/de/settings.json b/common/locales/de/settings.json index c36917a379..9c50a992d4 100644 --- a/common/locales/de/settings.json +++ b/common/locales/de/settings.json @@ -15,10 +15,10 @@ "startAdvCollapsed": "Erweiterte Optionen standartmäßig verdecken", "startAdvCollapsedPop": "Mit dieser Option werden die erweiterten Optionen verdeckt, wenn Du eine Aufgabe das erste mal bearbeitest.", "dontShowAgain": "Nicht mehr anzeigen", - "suppressLevelUpModal": "Don't show popup when gaining a level", - "suppressHatchPetModal": "Don't show popup when hatching a pet", - "suppressRaisePetModal": "Don't show popup when raising a pet into a mount", - "suppressStreakModal": "Don't show popup when attaining a Streak achievement", + "suppressLevelUpModal": "Beim Levelaufstieg kein Popup anzeigen", + "suppressHatchPetModal": "Beim Schlüpfen eines Haustiers kein Popup anzeigen", + "suppressRaisePetModal": "Beim Heranwachsen eines Haustiers zum Reittier kein Popup anzeigen", + "suppressStreakModal": "Beim Erreichen eines Strähnenerfolges kein Popup anzeigen", "showTour": "Anleitung anzeigen", "restartTour": "Startet die Einleitungs Tour, die Du als erstes auf Habitica gesehen hast, neu.", "showBailey": "Bailey anzeigen", @@ -93,7 +93,7 @@ "loginNameDescription2": "Benutzer->Profil", "loginNameDescription3": "um den Namen, der bei Deinem Avatar und bei Deinen Chat Nachrichten steht zu ändern.", "emailNotifications": "Email Benachrichtigungen", - "wonChallenge": "You won a Challenge!", + "wonChallenge": "Du hast einen Wettbewerb gewonnen!", "newPM": "Du hast eine private Nachricht erhalten", "giftedGems": "Verschenkte Edelsteine", "giftedGemsInfo": "<%= amount %> Edelsteine - von <%= name %>", @@ -133,15 +133,18 @@ "enabled": "Aktivieren", "webhookURL": "Webhook URL", "add": "Hinzufügen", - "buyGemsGoldCap": "Cap raised to <%= amount %>", + "buyGemsGoldCap": "Obergrenze wurde auf <%= amount %> angehoben", "mysticHourglass": "<%= amount %> mystische Sanduhr", "mysticHourglassText": "Mystische Sanduhren erlauben dir ein Überraschungsgegenstandsset früherer Monate zu kaufen.", - "purchasedPlanId": "Recurring $<%= price %> each <%= months %> Month(s) (<%= plan %>)", - "purchasedPlanExtraMonths": "You have <%= months %> months of subscription credit.", + "purchasedPlanId": "Alle <%= months %> Monat(e) wiederkehrender Preis: <%= price %>$ (<%= plan %>)", + "purchasedPlanExtraMonths": "Du hast noch ein Abonnementguthaben von <%= months %> Monaten.", "consecutiveSubscription": "Fortlaufendes Abonnement", "consecutiveMonths": "Aufeinanderfolgende Monate:", - "gemCapExtra": "Gem Cap Extra:", + "gemCapExtra": "Zusätzliche Erhöhung der Edelsteingrenze:", "mysticHourglasses": "Mystische Stundengläser", "paypal": "PayPal", - "amazonPayments": "Amazon-Zahlungen" + "amazonPayments": "Amazon-Zahlungen", + "timezone": "Time Zone", + "timezoneUTC": "Habitica uses the time zone set on your PC, which is: <%= utc %>", + "timezoneInfo": "If that time zone is wrong, first reload this page using your browser's reload or refresh button to ensure that Habitica has the most recent information. If it is still wrong, adjust the time zone on your PC and then reload this page again.

If you use Habitica on other PCs or mobile devices, the time zone must be the same on them all. If your Dailies have been reseting at the wrong time, repeat this check on all other PCs and on a browser on your mobile devices." } \ No newline at end of file diff --git a/common/locales/de/tasks.json b/common/locales/de/tasks.json index e04ff4d9f7..a48a5ec9ca 100644 --- a/common/locales/de/tasks.json +++ b/common/locales/de/tasks.json @@ -88,8 +88,7 @@ "fortifyText": "Stärken werden wieder alle ihre Aufgaben zu einer neutralen (gelb), Status, als hätten Sie gerade hinzugefügt haben, und oben Ihre Gesundheit aus zu voll. Das ist toll, wenn alle ihre roten Aufgaben machen das Spiel zu schwer ist, oder alle Ihre blauen Aufgaben machen das Spiel zu einfach. Wenn der Start frische Sounds viel mehr Motivation, verbringen die Edelsteine und fangen einen Aufschub!", "sureDelete": "Bist Du sicher, dass Du diese Aufgabe löschen möchtest?", "streakCoins": "Strähnen Bonus!", - "pushTaskToTop": "Aufgabe nach oben verschieben", - "pushTaskToBottom": "Aufgabe nach unten verschieben", + "pushTaskToTop": "Push task to top. Hold ctrl or cmd to push to bottom.", "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.", "habitHelp1": "Gute Gewohnheiten sind Aktivitäten, die du oft machen sollst. Sie gewähren Gold und Erfahrung immer wenn du auf <%= plusIcon %> klickst.", diff --git a/common/locales/en/backgrounds.json b/common/locales/en/backgrounds.json index c10b7cb2bb..96b6ec76e1 100644 --- a/common/locales/en/backgrounds.json +++ b/common/locales/en/backgrounds.json @@ -143,6 +143,14 @@ "backgroundNightDunesText": "Night Dunes", "backgroundNightDunesNotes": "Walk peacefully through the Night Dunes.", "backgroundSunsetOasisText": "Sunset Oasis", - "backgroundSunsetOasisNotes": "Bask in the Sunset Oasis." + "backgroundSunsetOasisNotes": "Bask in the Sunset Oasis.", + + "backgrounds122015": "SET 19: Released December 2015", + "backgroundAlpineSlopesText": "Alpine Slopes", + "backgroundAlpineSlopesNotes": "Ski on the Alpine Slopes.", + "backgroundSnowySunriseText": "Snowy Sunrise", + "backgroundSnowySunriseNotes": "Gaze at the Snowy Sunrise.", + "backgroundWinterTownText": "Winter Town", + "backgroundWinterTownNotes": "Bustle through a Winter Town." } diff --git a/common/locales/en/content.json b/common/locales/en/content.json index 1e782bd6b0..11e53ade50 100644 --- a/common/locales/en/content.json +++ b/common/locales/en/content.json @@ -156,6 +156,7 @@ "hatchingPotionCottonCandyBlue": "Cotton Candy Blue", "hatchingPotionGolden": "Golden", "hatchingPotionSpooky": "Spooky", + "hatchingPotionPeppermint": "Peppermint", "hatchingPotionNotes": "Pour this on an egg, and it will hatch as a <%= potText(locale) %> pet.", "premiumPotionAddlNotes": "Not usable on quest pet eggs.", diff --git a/common/locales/en/faq.json b/common/locales/en/faq.json index 4ff20f018d..f473a3ac8d 100644 --- a/common/locales/en/faq.json +++ b/common/locales/en/faq.json @@ -3,7 +3,7 @@ "faqQuestion0": "I'm confused. Where do I get an overview?", "iosFaqAnswer0": "First, you'll set up tasks that you want to do in your everyday life. Then, as you complete the tasks in real life and check them off, you'll earn experience and gold. Gold is used to buy equipment and some items, as well as custom rewards. Experience causes your character to level up and unlock content such as Pets, Skills, and Quests! You can customize your character under Menu > Customize Avatar.\n\n Some basic ways to interact: click the (+) in the upper-right-hand corner to add a new task. Tap on an existing task to edit it, and swipe left on a task to delete it. You can sort tasks using Tags in the upper-left-hand corner, and expand and contract checklists by clicking on the checklist bubble.", - "webFaqAnswer0": "First, you'll set up tasks that you want to do in your everyday life. Then, as you complete the tasks in real life and check them off, you'll earn Experience and Gold. Gold is used to buy equipment and some items, as well as custom rewards. Experience causes your character to level up and unlock content such as pets, skills, and quests! For more detail, the wiki has an excellent step-by-step overview of the game [right here](http://habitica.wikia.com/wiki/Habitica_Wiki).", + "webFaqAnswer0": "First, you'll set up tasks that you want to do in your everyday life. Then, as you complete the tasks in real life and check them off, you'll earn Experience and Gold. Gold is used to buy equipment and some items, as well as custom rewards. Experience causes your character to level up and unlock content such as pets, skills, and quests! For more detail, check out a step-by-step overview of the game at [Help -> Overview for New Users](https://habitica.com/static/overview).", "faqQuestion1": "How do I set up my tasks?", "iosFaqAnswer1": "Good Habits (the ones with a +) are tasks that you can do many times a day, such as eating vegetables. Bad Habits (the ones with a -) are tasks that you should avoid, like biting nails. Habits with a + and a - have a good choice and a bad choice, like taking the stairs vs. taking the elevator. Good Habits award experience and gold. Bad Habits subtract health.\n\n Dailies are tasks that you have to do every day, like brushing your teeth or checking your email. You can adjust the days that a Daily is due by tapping to edit it. If you skip a Daily that is due, your avatar will take damage overnight. Be careful not to add too many Dailies at once!\n\n To-Dos are your To-Do list. Completing a To-Do earns you gold and experience. You never lose health from To-Dos. You can add a due date to a To-Do by tapping to edit.", diff --git a/common/locales/en/front.json b/common/locales/en/front.json index 5738e14df2..b979acce77 100644 --- a/common/locales/en/front.json +++ b/common/locales/en/front.json @@ -181,8 +181,7 @@ "marketingInquiries": "Marketing/Social Media Inquiries", "tweet": "Tweet", "apps": "Apps", - "notifyAndroidApp": "Want us to notify you when the Android app is ready? Sign up for this mailing list!", - "checkOutIOSApp": "Check out our new iOS App!", + "checkOutMobileApps": "Check out our mobile apps!", "imagine1": "Imagine if improving your life were as fun as playing a game.", "landingCopy1": "Advance in the game by completing your real-life tasks.", "landingCopy2": "Battle monsters with friends to stay accountable to your goals.", diff --git a/common/locales/en/gear.json b/common/locales/en/gear.json index 7807aa9622..4cac2804d0 100644 --- a/common/locales/en/gear.json +++ b/common/locales/en/gear.json @@ -165,15 +165,19 @@ "weaponArmoireRancherLassoText": "Rancher Lasso", "weaponArmoireRancherLassoNotes": "Lassos: the ideal tool for rounding up and wrangling. Increases Strength by <%= str %>, Perception by <%= per %>, and Intelligence by <%= int %>. Enchanted Armoire: Rancher Set (Item 3 of 3).", "weaponArmoireMythmakerSwordText": "Mythmaker Sword", - "weaponArmoireMythmakerSwordNotes": "Though it may seem humble, this sword has made many mythic heroes. Increases Perception and Strength by <%= attrs %> each. Enchanted Armoire: Golden Toga Set (Item 3 of 3)", + "weaponArmoireMythmakerSwordNotes": "Though it may seem humble, this sword has made many mythic heroes. Increases Perception and Strength by <%= attrs %> each. Enchanted Armoire: Golden Toga Set (Item 3 of 3).", "weaponArmoireIronCrookText": "Iron Crook", - "weaponArmoireIronCrookNotes": "Fiercely hammered from iron, this iron crook is good at herding sheep. Increases Perception and Strength by <%= attrs %> each. Enchanted Armoire: Horned Iron Set (Item 3 of 3)", + "weaponArmoireIronCrookNotes": "Fiercely hammered from iron, this iron crook is good at herding sheep. Increases Perception and Strength by <%= attrs %> each. Enchanted Armoire: Horned Iron Set (Item 3 of 3).", "weaponArmoireGoldWingStaffText": "Gold Wing Staff", "weaponArmoireGoldWingStaffNotes": "The wings on this staff constantly flutter and twist. Increases all attributes by <%= attrs %> each. Enchanted Armoire: Independent Item.", "weaponArmoireBatWandText": "Bat Wand", "weaponArmoireBatWandNotes": "This wand can turn any task into a bat! Wave it about and watch them fly away. Increases Intelligence by <%= int %> and Perception by <%= per %>. Enchanted Armoire: Independent Item.", "weaponArmoireShepherdsCrookText": "Shepherd's Crook", "weaponArmoireShepherdsCrookNotes": "Useful for herding gryphons. Increases Constitution by <%= con %>. Enchanted Armoire: Shepherd Set (Item 1 of 3).", + "weaponArmoireCrystalCrescentStaffText": "Crystal Crescent Staff", + "weaponArmoireCrystalCrescentStaffNotes": "Summon the power of the crescent moon with this shining staff! Increases Intelligence and Strength by <%= attrs %> each. Enchanted Armoire: Crystal Crescent Set (Item 3 of 3).", + "weaponArmoireBlueLongbowText": "Blue Longbow", + "weaponArmoireBlueLongbowNotes": "Ready... Aim... Fire! This bow has great range. Increases Perception by 9, Constitution by 8, and Strength by 7. Enchanted Armoire: Independent Item.", "armor": "armor", @@ -247,7 +251,7 @@ "armorSpecialBirthday2015Notes": "Happy Birthday, Habitica! Wear these Silly Party Robes to celebrate this wonderful day. Confers no benefit.", "armorSpecialGaymerxText": "Rainbow Warrior Armor", - "armorSpecialGaymerxNotes": "In celebration of pride season and GaymerX, this special armor is decorated with a radiant, colorful rainbow pattern! GaymerX is a game convention celebrating LGBTQ and gaming and is open to everyone. It takes place at the InterContinental in downtown San Francisco on July 11-13! Confers no benefit.", + "armorSpecialGaymerxNotes": "In celebration of the GaymerX Conference, this special armor is decorated with a radiant, colorful rainbow pattern! GaymerX is a game convention celebrating LGTBQ and gaming and is open to everyone.", "armorSpecialSpringRogueText": "Sleek Cat Suit", "armorSpecialSpringRogueNotes": "Impeccably groomed. Increases Perception by <%= per %>. Limited Edition 2014 Spring Gear.", @@ -363,6 +367,8 @@ "armorArmoireShepherdRobesNotes": "The fabric is cool and breathable, perfect for a hot day herding gryphons in the desert. Increases Strength and Perception by <%= attrs %> each. Enchanted Armoire: Shepherd Set (Item 2 of 3).", "armorArmoireRoyalRobesText": "Royal Robes", "armorArmoireRoyalRobesNotes": "Wonderful ruler, rule all day long! Increases Constitution, Intelligence, and Perception by <%= attrs %> each. Enchanted Armoire: Royal Set (Item 3 of 3).", + "armorArmoireCrystalCrescentRobesText": "Crystal Crescent Robes", + "armorArmoireCrystalCrescentRobesNotes": "These magical robes are luminescent at night. Increases Constitution and Perception by <%= attrs %> each. Enchanted Armoire: Crystal Crescent Set (Item 2 of 3).", "headgear": "headgear", @@ -499,7 +505,7 @@ "headSpecialFall2015HealerNotes": "This is an extremely serious hat that is worthy of only the most advanced potioners. Increases Intelligence by <%= int %>. Limited Edition 2015 Autumn Gear.", "headSpecialGaymerxText": "Rainbow Warrior Helm", - "headSpecialGaymerxNotes": "In celebration of pride season and GaymerX, this special helmet is decorated with a radiant, colorful rainbow pattern! GaymerX is a game convention celebrating LGBTQ and gaming and is open to everyone. It takes place at the InterContinental in downtown San Francisco on July 11-13! Confers no benefit.", + "headSpecialGaymerxNotes": "In celebration of the GaymerX Conference, this special helmet is decorated with a radiant, colorful rainbow pattern! GaymerX is a game convention celebrating LGTBQ and gaming and is open to everyone.", "headMystery201402Text": "Winged Helm", "headMystery201402Notes": "This winged circlet imbues the wearer with the speed of the wind! Confers no benefit. February 2014 Subscriber Item.", @@ -562,6 +568,8 @@ "headArmoireBlueFloppyHatNotes": "Many spells have been sewn into this simple hat, giving it a brilliant blue color. Increases Constitution, Intelligence, and Perception by <%= attrs %> each. Enchanted Armoire: Independent Item.", "headArmoireShepherdHeaddressText": "Shepherd Headdress", "headArmoireShepherdHeaddressNotes": "Sometimes the gryphons that you herd like to chew on this headdress, but it makes you seem more intelligent nonetheless. Increases Intelligence by <%= int %>. Enchanted Armoire: Shepherd Set (Item 3 of 3).", + "headArmoireCrystalCrescentHatText": "Crystal Crescent Hat", + "headArmoireCrystalCrescentHatNotes": "The design on this hat waxes and wanes with the phases of the moon. Increases Intelligence and Perception by <%= attrs %> each. Enchanted Armoire: Crystal Crescent Set (Item 1 of 3).", "offhand": "shield-hand item", diff --git a/common/locales/en/limited.json b/common/locales/en/limited.json index f7d97038f8..c5d51954b9 100644 --- a/common/locales/en/limited.json +++ b/common/locales/en/limited.json @@ -62,5 +62,6 @@ "witchyWizardSet": "Witchy Wizard (Mage)", "mummyMedicSet": "Mummy Medic (Healer)", "vampireSmiterSet": "Vampire Smiter (Rogue)", - "fallEventAvailability": "Available until October 31" + "fallEventAvailability": "Available until October 31", + "winterEventAvailability": "Available until December 31" } diff --git a/common/locales/en/messages.json b/common/locales/en/messages.json index f0c720339c..1c8ce5dcd8 100644 --- a/common/locales/en/messages.json +++ b/common/locales/en/messages.json @@ -13,13 +13,14 @@ "messageDontEnjoyFood": "<%= egg %> eats the <%= foodText %> but doesn't seem to enjoy it.", "messageBought": "Bought <%= itemText %>", "messageEquipped": " <%= itemText %> equipped.", - "messageUnEquipped": "<%= itemText %> un-equipped.", + "messageUnEquipped": "<%= itemText %> unequipped.", "messageMissingEggPotion": "You're missing either that egg or that potion", "messageInvalidEggPotionCombo": "You can't hatch Quest Pet Eggs with Magic Hatching Potions! Try a different egg.", "messageAlreadyPet": "You already have that pet. Try hatching a different combination!", "messageHatched": "Your egg hatched! Visit your stable to equip your pet.", "messageNotEnoughGold": "Not Enough Gold", - "messageTwoHandled": "<%= gearText %> is two handed", + "messageTwoHandedEquip": "Wielding <%= twoHandedText %> takes two hands, so <%= offHandedText %> has been unequipped.", + "messageTwoHandedUnequip": "Wielding <%= twoHandedText %> takes two hands, so it was unequipped when you armed yourself with <%= offHandedText %>.", "messageDropFood": "You've found <%= dropArticle %><%= dropText %>! <%= dropNotes %>", "messageDropEgg": "You've found a <%= dropText %> Egg! <%= dropNotes %>", "messageDropPotion": "You've found a <%= dropText %> Hatching Potion! <%= dropNotes %>", diff --git a/common/locales/en/tasks.json b/common/locales/en/tasks.json index f40797789b..66cca5774f 100644 --- a/common/locales/en/tasks.json +++ b/common/locales/en/tasks.json @@ -54,7 +54,7 @@ "complete": "Done", "dated": "Dated", "due": "Due", - "notDue": "Not Due", + "notDue": "Not Due", "grey": "Grey", "score": "Score", "rewards": "Rewards", @@ -88,8 +88,7 @@ "fortifyText": "Fortify will return all your tasks to a neutral (yellow) state, as if you'd just added them, and top your Health off to full. This is great if all your red tasks are making the game too hard, or all your blue tasks are making the game too easy. If starting fresh sounds much more motivating, spend the Gems and catch a reprieve!", "sureDelete": "Are you sure you want to delete this task?", "streakCoins": "Streak Bonus!", - "pushTaskToTop": "Push task to top", - "pushTaskToBottom": "Push task to bottom", + "pushTaskToTop": "Push task to top. Hold ctrl or cmd to push to bottom.", "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.", "habitHelp1": "Good Habits are things that you do often. They award Gold and Experience every time you click the <%= plusIcon %>.", diff --git a/common/locales/en@pirate/backgrounds.json b/common/locales/en@pirate/backgrounds.json index 7105887d7e..c677633e9c 100644 --- a/common/locales/en@pirate/backgrounds.json +++ b/common/locales/en@pirate/backgrounds.json @@ -106,17 +106,17 @@ "backgroundTwinklyPartyLightsText": "Twinkly Party Lights", "backgroundTwinklyPartyLightsNotes": "Dance under Twinkly Party Lights!", "backgrounds092015": "SET 16: Released September 2015", - "backgroundMarketText": "Habitica Market", - "backgroundMarketNotes": "Shop in the Habitica Market.", - "backgroundStableText": "Habitica Stable", - "backgroundStableNotes": "Tend mounts in the Habitica Stable.", - "backgroundTavernText": "Habitica Tavern", - "backgroundTavernNotes": "Visit the Habitica Tavern.", + "backgroundMarketText": "Ye Olde Habitica Marketplace", + "backgroundMarketNotes": "Get shoppin' in Ye Olde Habitica Marketplace.", + "backgroundStableText": "Ye Olde Habitica Stable", + "backgroundStableNotes": "Care for ye 'orses in Ye Olde Habitica Stable", + "backgroundTavernText": "Ye Olde Habitica Tavern", + "backgroundTavernNotes": "Get plundered in Ye Olde Habitica Tavern.", "backgrounds102015": "SET 17: Released October 2015", - "backgroundHarvestMoonText": "Harvest Moon", - "backgroundHarvestMoonNotes": "Cackle under the Harvest Moon.", - "backgroundSlimySwampText": "Slimy Swamp", - "backgroundSlimySwampNotes": "Slog through a Slimy Swamp.", + "backgroundHarvestMoonText": "'Arvest Moon", + "backgroundHarvestMoonNotes": "Laugh ya head off below the 'Arvest Moon", + "backgroundSlimySwampText": "Sticky Swamp", + "backgroundSlimySwampNotes": "Be wadin' through a Sticky Swamp", "backgroundSwarmingDarknessText": "Swarming Darkness", "backgroundSwarmingDarknessNotes": "Shiver in the Swarming Darkness.", "backgrounds112015": "SET 18: Released November 2015", @@ -125,5 +125,12 @@ "backgroundNightDunesText": "Night Dunes", "backgroundNightDunesNotes": "Walk peacefully through the Night Dunes.", "backgroundSunsetOasisText": "Sunset Oasis", - "backgroundSunsetOasisNotes": "Bask in the Sunset Oasis." + "backgroundSunsetOasisNotes": "Bask in the Sunset Oasis.", + "backgrounds122015": "SET 19: Released December 2015", + "backgroundAlpineSlopesText": "Alpine Slopes", + "backgroundAlpineSlopesNotes": "Ski on the Alpine Slopes.", + "backgroundSnowySunriseText": "Snowy Sunrise", + "backgroundSnowySunriseNotes": "Gaze at the Snowy Sunrise.", + "backgroundWinterTownText": "Winter Town", + "backgroundWinterTownNotes": "Bustle through a Winter Town." } \ No newline at end of file diff --git a/common/locales/en@pirate/faq.json b/common/locales/en@pirate/faq.json index 7d9909a0fd..3c7dd0f073 100644 --- a/common/locales/en@pirate/faq.json +++ b/common/locales/en@pirate/faq.json @@ -2,7 +2,7 @@ "frequentlyAskedQuestions": "Frequently Asked Riddles", "faqQuestion0": "I be confused. Where do I get an o'erview?", "iosFaqAnswer0": "First, ye'll set up tasks that ye wants t' do in yer everyday life. Then, as ye complete th' tasks in real life 'n check them off, ye'll earn experience 'n gold. Gold be used t' buy equipment 'n some items, as well as custom rewards. Experience causes yer character t' level up 'n unlock content such as Pets, Skills, 'n Quests! Ye can customize yer character under Menu > Customize Avatar. Some basic ways t' interact: jab th' (+) in th' upper-right-hand corner t' add a new task. Tap on an existin' task t' edit it, 'n swipe left on a task t' scuttle it. Ye can sort tasks usin' Tags in th' upper-left-hand corner, 'n expand 'n contract checklists by jabbin' on th' checklist bubble.", - "webFaqAnswer0": "First, you'll set up tasks that you want to do in your everyday life. Then, as you complete the tasks in real life and check them off, you'll earn Experience and Gold. Gold is used to buy equipment and some items, as well as custom rewards. Experience causes your character to level up and unlock content such as pets, skills, and quests! For more detail, the wiki has an excellent step-by-step overview of the game [right here](http://habitica.wikia.com/wiki/Habitica_Wiki).", + "webFaqAnswer0": "First, you'll set up tasks that you want to do in your everyday life. Then, as you complete the tasks in real life and check them off, you'll earn Experience and Gold. Gold is used to buy equipment and some items, as well as custom rewards. Experience causes your character to level up and unlock content such as pets, skills, and quests! For more detail, check out a step-by-step overview of the game at [Help -> Overview for New Users](https://habitica.com/static/overview).", "faqQuestion1": "How do I set up my tasks?", "iosFaqAnswer1": "Good Habits (the ones with a +) are tasks that you can do many times a day, such as eating vegetables. Bad Habits (the ones with a -) are tasks that you should avoid, like biting nails. Habits with a + and a - have a good choice and a bad choice, like taking the stairs vs. taking the elevator. Good Habits award experience and gold. Bad Habits subtract health.\n\n Dailies are tasks that you have to do every day, like brushing your teeth or checking your email. You can adjust the days that a Daily is due by tapping to edit it. If you skip a Daily that is due, your avatar will take damage overnight. Be careful not to add too many Dailies at once!\n\n To-Dos are your To-Do list. Completing a To-Do earns you gold and experience. You never lose health from To-Dos. You can add a due date to a To-Do by tapping to edit.", "webFaqAnswer1": "Good Habits (the ones with a ) are tasks that you can do many times a day, such as eating vegetables. Bad Habits (the ones with a ) are tasks that you should avoid, like biting nails. Habits with a and a have a good choice and a bad choice, like taking the stairs vs. taking the elevator. Good Habits award Experience and Gold. Bad Habits subtract Health.\n

\n Dailies are tasks that you have to do every day, like brushing your teeth or checking your email. You can adjust the days that a Daily is due by clicking the pencil item to edit it. If you skip a Daily that is due, your avatar will take damage overnight. Be careful not to add too many Dailies at once!\n

\n To-Dos are your To-Do list. Completing a To-Do earns you Gold and Experience. You never lose Health from To-Dos. You can add a due date to a To-Do by clicking the pencil icon to edit.", diff --git a/common/locales/en@pirate/gear.json b/common/locales/en@pirate/gear.json index 1c9744b09b..bab74dbed0 100644 --- a/common/locales/en@pirate/gear.json +++ b/common/locales/en@pirate/gear.json @@ -149,15 +149,19 @@ "weaponArmoireRancherLassoText": "Rancher Lasso", "weaponArmoireRancherLassoNotes": "Lassos: the ideal tool for rounding up and wrangling. Increases Strength by <%= str %>, Perception by <%= per %>, and Intelligence by <%= int %>. Enchanted Armoire: Rancher Set (Item 3 of 3).", "weaponArmoireMythmakerSwordText": "Mythmaker Sword", - "weaponArmoireMythmakerSwordNotes": "Though it may seem humble, this sword has made many mythic heroes. Increases Perception an' Strength by <%= attrs %> each. Enchanted Armoire: Golden Toga Set (Item 3 o' 3)", + "weaponArmoireMythmakerSwordNotes": "Though it may seem humble, this sword has made many mythic heroes. Increases Perception and Strength by <%= attrs %> each. Enchanted Armoire: Golden Toga Set (Item 3 of 3).", "weaponArmoireIronCrookText": "Iron Crook", - "weaponArmoireIronCrookNotes": "Fiercely hammered from iron, this iron crook be good at herding sheep. Increases Perception an' Strength by <%= attrs %> each. Enchanted Armoire: Horned Iron Set (Item 3 o' 3)", + "weaponArmoireIronCrookNotes": "Fiercely hammered from iron, this iron crook is good at herding sheep. Increases Perception and Strength by <%= attrs %> each. Enchanted Armoire: Horned Iron Set (Item 3 of 3).", "weaponArmoireGoldWingStaffText": "Gold Wing Staff", "weaponArmoireGoldWingStaffNotes": "The wings on this staff constantly flutter and twist. Increases all attributes by <%= attrs %> each. Enchanted Armoire: Independent Item.", "weaponArmoireBatWandText": "Bat Wand", "weaponArmoireBatWandNotes": "This wand can turn any task into a bat! Wave it about and watch them fly away. Increases Intelligence by <%= int %> and Perception by <%= per %>. Enchanted Armoire: Independent Item.", "weaponArmoireShepherdsCrookText": "Shepherd's Crook", "weaponArmoireShepherdsCrookNotes": "Useful for herding gryphons. Increases Constitution by <%= con %>. Enchanted Armoire: Shepherd Set (Item 1 of 3).", + "weaponArmoireCrystalCrescentStaffText": "Crystal Crescent Staff", + "weaponArmoireCrystalCrescentStaffNotes": "Summon the power of the crescent moon with this shining staff! Increases Intelligence and Strength by <%= attrs %> each. Enchanted Armoire: Crystal Crescent Set (Item 3 of 3).", + "weaponArmoireBlueLongbowText": "Blue Longbow", + "weaponArmoireBlueLongbowNotes": "Ready... Aim... Fire! This bow has great range. Increases Perception by 9, Constitution by 8, and Strength by 7. Enchanted Armoire: Independent Item.", "armor": "armor", "armorBase0Text": "Plain Slops", "armorBase0Notes": "Ordinary slops. Don't benefit ye.", @@ -222,7 +226,7 @@ "armorSpecialBirthday2015Text": "Silly Party Robes", "armorSpecialBirthday2015Notes": "Happy Birthday, Habitica! Wear these Silly Party Robes t' celebrate this wonderful day. Don't benefit ye.", "armorSpecialGaymerxText": "Rainbow Warrior Armor", - "armorSpecialGaymerxNotes": "In celebration o' pride season an' GaymerX, this special armor be decorated with a radiant, colorful rainbow pattern! GaymerX be a game convention celebratin' LGBTQ and gamin' an' be open t' everyone. It takes place at th' InterContinental in downtown San Francisco on July 11-13! Don't benefit ye.", + "armorSpecialGaymerxNotes": "In celebration of the GaymerX Conference, this special armor is decorated with a radiant, colorful rainbow pattern! GaymerX is a game convention celebrating LGTBQ and gaming and is open to everyone.", "armorSpecialSpringRogueText": "Sleek Cat Suit", "armorSpecialSpringRogueNotes": "Impeccably groomed. Increases Perception by <%= per %>. Limited Edition 2014 Spring Gear.", "armorSpecialSpringWarriorText": "Clover-steel Armor", @@ -309,6 +313,8 @@ "armorMystery201508Notes": "Run fast as a flash in the fluffy Cheetah Costume! Confers no benefit. August 2015 Subscriber Item.", "armorMystery201509Text": "Werewolf Costume", "armorMystery201509Notes": "This IS a costume, right? Confers no benefit. September 2015 Subscriber Item.", + "armorMystery201511Text": "Wooden Armor", + "armorMystery201511Notes": "Considering this armor was carved directly from a magical log, it's surprisingly comfortable. Confers no benefit. November 2015 Subscriber Item.", "armorMystery301404Text": "Steampunk Suit", "armorMystery301404Notes": "Dapper an' dashing, wot! Don't benefit ye. February 3015 Subscriber Item.", "armorArmoireLunarArmorText": "Soothin' Lunar Armor", @@ -327,6 +333,8 @@ "armorArmoireShepherdRobesNotes": "The fabric is cool and breathable, perfect for a hot day herding gryphons in the desert. Increases Strength and Perception by <%= attrs %> each. Enchanted Armoire: Shepherd Set (Item 2 of 3).", "armorArmoireRoyalRobesText": "Royal Robes", "armorArmoireRoyalRobesNotes": "Wonderful ruler, rule all day long! Increases Constitution, Intelligence, and Perception by <%= attrs %> each. Enchanted Armoire: Royal Set (Item 3 of 3).", + "armorArmoireCrystalCrescentRobesText": "Crystal Crescent Robes", + "armorArmoireCrystalCrescentRobesNotes": "These magical robes are luminescent at night. Increases Constitution and Perception by <%= attrs %> each. Enchanted Armoire: Crystal Crescent Set (Item 2 of 3).", "headgear": "headgear", "headBase0Text": "No Helm", "headBase0Notes": "No headgear.", @@ -447,7 +455,7 @@ "headSpecialFall2015HealerText": "Hat of Frog", "headSpecialFall2015HealerNotes": "This is an extremely serious hat that is worthy of only the most advanced potioners. Increases Intelligence by <%= int %>. Limited Edition 2015 Autumn Gear.", "headSpecialGaymerxText": "Rainbow Warrior Helm", - "headSpecialGaymerxNotes": "In celebration o' pride season an' GaymerX, this special helmet be decorated with a radiant, colorful rainbow pattern! GaymerX be a game convention celebrating LGBTQ an' gaming an' be open to everyone. It takes place at the InterContinental in downtown San Francisco on July 11-13! Don't benefit ye.", + "headSpecialGaymerxNotes": "In celebration of the GaymerX Conference, this special helmet is decorated with a radiant, colorful rainbow pattern! GaymerX is a game convention celebrating LGTBQ and gaming and is open to everyone.", "headMystery201402Text": "Winged Helm", "headMystery201402Notes": "This winged circlet imbues the wearer with th' speed o' th' wind! Don't benefit ye. February 2014 Subscriber Item.", "headMystery201405Text": "Flame o' Mind", @@ -470,6 +478,8 @@ "headMystery201508Notes": "This cozy cheetah hat is very fuzzy! Confers no benefit. August 2015 Subscriber Item.", "headMystery201509Text": "Werewolf Mask", "headMystery201509Notes": "This IS a mask, right? Confers no benefit. September 2015 Subscriber Item.", + "headMystery201511Text": "Log Crown", + "headMystery201511Notes": "Count the number of rings to learn how old this crown is. Confers no benefit. November 2015 Subscriber Item.", "headMystery301404Text": "Fancy Top Hat", "headMystery301404Notes": "A fancy top hat fer th' finest o' gentlefolk! January 3015 Subscriber Item. Don't benefit ye.", "headMystery301405Text": "Basic Top Hat", @@ -506,6 +516,8 @@ "headArmoireBlueFloppyHatNotes": "Many spells have been sewn into this simple hat, giving it a brilliant blue color. Increases Constitution, Intelligence, and Perception by <%= attrs %> each. Enchanted Armoire: Independent Item.", "headArmoireShepherdHeaddressText": "Shepherd Headdress", "headArmoireShepherdHeaddressNotes": "Sometimes the gryphons that you herd like to chew on this headdress, but it makes you seem more intelligent nonetheless. Increases Intelligence by <%= int %>. Enchanted Armoire: Shepherd Set (Item 3 of 3).", + "headArmoireCrystalCrescentHatText": "Crystal Crescent Hat", + "headArmoireCrystalCrescentHatNotes": "The design on this hat waxes and wanes with the phases of the moon. Increases Intelligence and Perception by <%= attrs %> each. Enchanted Armoire: Crystal Crescent Set (Item 1 of 3).", "offhand": "shield-hand item", "shieldBase0Text": "No Shield-Hand Equipment", "shieldBase0Notes": "No shield or second weapon.", diff --git a/common/locales/en@pirate/limited.json b/common/locales/en@pirate/limited.json index 7465b6f5dc..c06e09fabe 100644 --- a/common/locales/en@pirate/limited.json +++ b/common/locales/en@pirate/limited.json @@ -21,6 +21,7 @@ "valentineCardAchievementText": "Aww, ye an' yer friend must really care about each other! Sent or received <%= cards %> Valentine's Day cards.", "polarBear": "Polar Bear", "turkey": "Turkey", + "gildedTurkey": "Gilded Turkey", "polarBearPup": "Polar Bear Cub", "jackolantern": "Jack-O-Lantern", "seasonalShop": "Seasonal Shop", diff --git a/common/locales/en@pirate/settings.json b/common/locales/en@pirate/settings.json index 1c1d05826b..e1d7c6f984 100644 --- a/common/locales/en@pirate/settings.json +++ b/common/locales/en@pirate/settings.json @@ -143,5 +143,8 @@ "gemCapExtra": "Gem Cap Extra:", "mysticHourglasses": "Mystic Hourglasses:", "paypal": "PayPal", - "amazonPayments": "Amazon Payments" + "amazonPayments": "Amazon Payments", + "timezone": "Time Zone", + "timezoneUTC": "Habitica uses the time zone set on your PC, which is: <%= utc %>", + "timezoneInfo": "If that time zone is wrong, first reload this page using your browser's reload or refresh button to ensure that Habitica has the most recent information. If it is still wrong, adjust the time zone on your PC and then reload this page again.

If you use Habitica on other PCs or mobile devices, the time zone must be the same on them all. If your Dailies have been reseting at the wrong time, repeat this check on all other PCs and on a browser on your mobile devices." } \ No newline at end of file diff --git a/common/locales/en@pirate/tasks.json b/common/locales/en@pirate/tasks.json index caa3d0ed7e..8435059711 100644 --- a/common/locales/en@pirate/tasks.json +++ b/common/locales/en@pirate/tasks.json @@ -7,7 +7,7 @@ "addsingle": "Ard' Single", "habits": "Habits", "newHabit": "New Habit", - "newHabitBulk": "New Habits (one per line)", + "newHabitBulk": "New Habits (one a line)", "yellowred": "Weak", "greenblue": "Strong", "edit": "Edit", @@ -78,9 +78,9 @@ "streakSingular": "Streaker", "streakSingularText": "Has performed a 21-day streak on a Daily", "perfectName": "Perfect Days", - "perfectText": "Completed all active Dailies on <%= perfects %> days. With this achievement you get a +level/2 buff to all attributes for the next day. Levels greater than 100 don't have any additional effects on buffs.", + "perfectText": "Done all ye Dailies on <%= perfects %> days. When ya got this achievement, ye be gettin' a +level/2 buff to all ya attributes for the next day. Levels that be greater than 100 won't be gettin' any more effects to their buffs.", "perfectSingular": "Perfect Day", - "perfectSingularText": "Completed all active Dailies in one day. With this achievement you get a +level/2 buff to all attributes for the next day. Levels greater than 100 don't have any additional effects on buffs.", + "perfectSingularText": "Done all ye Dailies for one day. When ya got this achievement, ye be gettin' a +level/2 buff to all ya attributes for the next day. Levels that be greater than 100 won't be gettin' any more effects to their buffs.", "streakerAchievement": "Ye have attained th' \"Streaker\" Achievement! th' 21-day mark be a milestone fer habit formation. ye can continue to stack 'tis Achievement fer every additional 21 days, on 'tis Daily or any other!", "fortifyName": "Fortify Potion", "fortifyPop": "Return all tasks t' neutral value (yellow color), 'n restore all lost Health.", @@ -88,8 +88,7 @@ "fortifyText": "Fortify will return all yer tasks t' a neutral (yellow) state, as if ye'd jus' added 'em, an' top yer Health off t' full. This is great if all yer red tasks be makin' th' game too hard, or all yer blue tasks be making th' game too easy. If startin' fresh sounds much more motivatin', spend th' Gems an' catch a reprieve!", "sureDelete": "Arrr ye sure ye want t' delete this task?", "streakCoins": "Streak Bonus!", - "pushTaskToTop": "Push task to top", - "pushTaskToBottom": "Push task t' bottom", + "pushTaskToTop": "Push task to top. Hold ctrl or cmd to push to bottom.", "emptyTask": "Enter t' task's title first.", "dailiesRestingInInn": "Yo'rg Restin' in t' Inn! Your Dailies will NOT hurt you tonight, but they WILL still refresh every day. If yo'rge in a quest, you won't deal damage/collect items until you check out o' t' Inn, but you can still be injured by a Boss if your Party lads skip their own Dailies.", "habitHelp1": "Good Habits are things that ye do often. They award Gold an' Experience every time ye click th' <%= plusIcon %>.", diff --git a/common/locales/en_GB/backgrounds.json b/common/locales/en_GB/backgrounds.json index 16f8180308..0c3fcdb70a 100644 --- a/common/locales/en_GB/backgrounds.json +++ b/common/locales/en_GB/backgrounds.json @@ -125,5 +125,12 @@ "backgroundNightDunesText": "Night Dunes", "backgroundNightDunesNotes": "Walk peacefully through the Night Dunes.", "backgroundSunsetOasisText": "Sunset Oasis", - "backgroundSunsetOasisNotes": "Bask in the Sunset Oasis." + "backgroundSunsetOasisNotes": "Bask in the Sunset Oasis.", + "backgrounds122015": "SET 19: Released December 2015", + "backgroundAlpineSlopesText": "Alpine Slopes", + "backgroundAlpineSlopesNotes": "Ski on the Alpine Slopes.", + "backgroundSnowySunriseText": "Snowy Sunrise", + "backgroundSnowySunriseNotes": "Gaze at the Snowy Sunrise.", + "backgroundWinterTownText": "Winter Town", + "backgroundWinterTownNotes": "Bustle through a Winter Town." } \ No newline at end of file diff --git a/common/locales/en_GB/faq.json b/common/locales/en_GB/faq.json index 6a48aa4fef..dd90ea0d99 100644 --- a/common/locales/en_GB/faq.json +++ b/common/locales/en_GB/faq.json @@ -2,7 +2,7 @@ "frequentlyAskedQuestions": "Frequently Asked Questions", "faqQuestion0": "I'm confused. Where do I get an overview?", "iosFaqAnswer0": "First, you'll set up tasks that you want to do in your everyday life. Then, as you complete the tasks in real life and check them off, you'll earn experience and gold. Gold is used to buy equipment and some items, as well as custom rewards. Experience causes your character to level up and unlock content such as Pets, Skills, and Quests! You can customise your character under Menu > Customise Avatar.\n\n Some basic ways to interact: click the (+) in the upper-right-hand corner to add a new task. Tap on an existing task to edit it, and swipe left on a task to delete it. You can sort tasks using Tags in the upper-left-hand corner, and expand and contract checklists by clicking on the checklist bubble.", - "webFaqAnswer0": "First, you'll set up tasks that you want to do in your everyday life. Then, as you complete the tasks in real life and check them off, you'll earn Experience and Gold. Gold is used to buy equipment and some items, as well as custom rewards. Experience causes your character to level up and unlock content such as pets, skills, and quests! For more detail, the wiki has an excellent step-by-step overview of the game [right here](http://habitica.wikia.com/wiki/Habitica_Wiki).", + "webFaqAnswer0": "First, you'll set up tasks that you want to do in your everyday life. Then, as you complete the tasks in real life and check them off, you'll earn Experience and Gold. Gold is used to buy equipment and some items, as well as custom rewards. Experience causes your character to level up and unlock content such as pets, skills, and quests! For more detail, check out a step-by-step overview of the game at [Help -> Overview for New Users](https://habitica.com/static/overview).", "faqQuestion1": "How do I set up my tasks?", "iosFaqAnswer1": "Good Habits (the ones with a +) are tasks that you can do many times a day, such as eating vegetables. Bad Habits (the ones with a -) are tasks that you should avoid, like biting nails. Habits with a + and a - have a good choice and a bad choice, like taking the stairs vs. taking the lift. Good Habits award experience and gold. Bad Habits subtract health.\n\n Dailies are tasks that you have to do every day, like brushing your teeth or checking your email. You can adjust the days that a Daily is due by tapping to edit it. If you skip a Daily that is due, your avatar will take damage overnight. Be careful not to add too many Dailies at once!\n\n To-Dos are your To-Do list. Completing a To-Do earns you gold and experience. You never lose health from To-Dos. You can add a due date to a To-Do by tapping to edit.", "webFaqAnswer1": "Good Habits (the ones with a ) are tasks that you can do many times a day, such as eating vegetables. Bad Habits (the ones with a ) are tasks that you should avoid, like biting nails. Habits with a and a have a good choice and a bad choice, like taking the stairs vs. taking the lift. Good Habits award Experience and Gold. Bad Habits subtract Health.\n

\n Dailies are tasks that you have to do every day, like brushing your teeth or checking your email. You can adjust the days that a Daily is due by clicking the pencil item to edit it. If you skip a Daily that is due, your avatar will take damage overnight. Be careful not to add too many Dailies at once!\n

\n To-Dos are your To-Do list. Completing a To-Do earns you Gold and Experience. You never lose Health from To-Dos. You can add a due date to a To-Do by clicking the pencil icon to edit.", diff --git a/common/locales/en_GB/gear.json b/common/locales/en_GB/gear.json index 3d42c0b8f9..8ffa7bf4cf 100644 --- a/common/locales/en_GB/gear.json +++ b/common/locales/en_GB/gear.json @@ -149,15 +149,19 @@ "weaponArmoireRancherLassoText": "Rancher Lasso", "weaponArmoireRancherLassoNotes": "Lassos: the ideal tool for rounding up and wrangling. Increases Strength by <%= str %>, Perception by <%= per %>, and Intelligence by <%= int %>. Enchanted Armoire: Rancher Set (Item 3 of 3).", "weaponArmoireMythmakerSwordText": "Mythmaker Sword", - "weaponArmoireMythmakerSwordNotes": "Though it may seem humble, this sword has made many mythic heroes. Increases Perception and Strength by <%= attrs %> each. Enchanted Armoire: Golden Toga Set (Item 3 of 3)", + "weaponArmoireMythmakerSwordNotes": "Though it may seem humble, this sword has made many mythic heroes. Increases Perception and Strength by <%= attrs %> each. Enchanted Armoire: Golden Toga Set (Item 3 of 3).", "weaponArmoireIronCrookText": "Iron Crook", - "weaponArmoireIronCrookNotes": "Fiercely hammered from iron, this iron crook is good at herding sheep. Increases Perception and Strength by <%= attrs %> each. Enchanted Armoire: Horned Iron Set (Item 3 of 3)", + "weaponArmoireIronCrookNotes": "Fiercely hammered from iron, this iron crook is good at herding sheep. Increases Perception and Strength by <%= attrs %> each. Enchanted Armoire: Horned Iron Set (Item 3 of 3).", "weaponArmoireGoldWingStaffText": "Gold Wing Staff", "weaponArmoireGoldWingStaffNotes": "The wings on this staff constantly flutter and twist. Increases all attributes by <%= attrs %> each. Enchanted Armoire: Independent Item.", "weaponArmoireBatWandText": "Bat Wand", "weaponArmoireBatWandNotes": "This wand can turn any task into a bat! Wave it about and watch them fly away. Increases Intelligence by <%= int %> and Perception by <%= per %>. Enchanted Armoire: Independent Item.", "weaponArmoireShepherdsCrookText": "Shepherd's Crook", "weaponArmoireShepherdsCrookNotes": "Useful for herding gryphons. Increases Constitution by <%= con %>. Enchanted Armoire: Shepherd Set (Item 1 of 3).", + "weaponArmoireCrystalCrescentStaffText": "Crystal Crescent Staff", + "weaponArmoireCrystalCrescentStaffNotes": "Summon the power of the crescent moon with this shining staff! Increases Intelligence and Strength by <%= attrs %> each. Enchanted Armoire: Crystal Crescent Set (Item 3 of 3).", + "weaponArmoireBlueLongbowText": "Blue Longbow", + "weaponArmoireBlueLongbowNotes": "Ready... Aim... Fire! This bow has great range. Increases Perception by 9, Constitution by 8, and Strength by 7. Enchanted Armoire: Independent Item.", "armor": "armour", "armorBase0Text": "Plain Clothing", "armorBase0Notes": "Ordinary clothing. Confers no benefit.", @@ -222,7 +226,7 @@ "armorSpecialBirthday2015Text": "Silly Party Robes", "armorSpecialBirthday2015Notes": "Happy Birthday, Habitica! Wear these Silly Party Robes to celebrate this wonderful day. Confers no benefit.", "armorSpecialGaymerxText": "Rainbow Warrior Armour", - "armorSpecialGaymerxNotes": "In celebration of pride season and GaymerX, this special armour is decorated with a radiant, colourful rainbow pattern! GaymerX is a game convention celebrating LGBTQ and gaming and is open to everyone. It takes place at the InterContinental in downtown San Francisco on July 11-13! Confers no benefit.", + "armorSpecialGaymerxNotes": "In celebration of the GaymerX Conference, this special armor is decorated with a radiant, colorful rainbow pattern! GaymerX is a game convention celebrating LGTBQ and gaming and is open to everyone.", "armorSpecialSpringRogueText": "Sleek Cat Suit", "armorSpecialSpringRogueNotes": "Impeccably groomed. Increases Perception by <%= per %>. Limited Edition 2014 Spring Gear.", "armorSpecialSpringWarriorText": "Clover-steel Armour", @@ -309,6 +313,8 @@ "armorMystery201508Notes": "Run fast as a flash in the fluffy Cheetah Costume! Confers no benefit. August 2015 Subscriber Item.", "armorMystery201509Text": "Werewolf Costume", "armorMystery201509Notes": "This IS a costume, right? Confers no benefit. September 2015 Subscriber Item.", + "armorMystery201511Text": "Wooden Armor", + "armorMystery201511Notes": "Considering this armor was carved directly from a magical log, it's surprisingly comfortable. Confers no benefit. November 2015 Subscriber Item.", "armorMystery301404Text": "Steampunk Suit", "armorMystery301404Notes": "Dapper and dashing, wot! Confers no benefit. February 3015 Subscriber Item.", "armorArmoireLunarArmorText": "Soothing Lunar Armour", @@ -327,6 +333,8 @@ "armorArmoireShepherdRobesNotes": "The fabric is cool and breathable, perfect for a hot day herding gryphons in the desert. Increases Strength and Perception by <%= attrs %> each. Enchanted Armoire: Shepherd Set (Item 2 of 3).", "armorArmoireRoyalRobesText": "Royal Robes", "armorArmoireRoyalRobesNotes": "Wonderful ruler, rule all day long! Increases Constitution, Intelligence, and Perception by <%= attrs %> each. Enchanted Armoire: Royal Set (Item 3 of 3).", + "armorArmoireCrystalCrescentRobesText": "Crystal Crescent Robes", + "armorArmoireCrystalCrescentRobesNotes": "These magical robes are luminescent at night. Increases Constitution and Perception by <%= attrs %> each. Enchanted Armoire: Crystal Crescent Set (Item 2 of 3).", "headgear": "headgear", "headBase0Text": "No Helm", "headBase0Notes": "No headgear.", @@ -447,7 +455,7 @@ "headSpecialFall2015HealerText": "Hat of Frog", "headSpecialFall2015HealerNotes": "This is an extremely serious hat that is worthy of only the most advanced potioners. Increases Intelligence by <%= int %>. Limited Edition 2015 Autumn Gear.", "headSpecialGaymerxText": "Rainbow Warrior Helm", - "headSpecialGaymerxNotes": "In celebration of pride season and GaymerX, this special helmet is decorated with a radiant, colourful rainbow pattern! GaymerX is a game convention celebrating LGBTQ and gaming and is open to everyone. It takes place at the InterContinental in downtown San Francisco on July 11-13! Confers no benefit.", + "headSpecialGaymerxNotes": "In celebration of the GaymerX Conference, this special helmet is decorated with a radiant, colorful rainbow pattern! GaymerX is a game convention celebrating LGTBQ and gaming and is open to everyone.", "headMystery201402Text": "Winged Helm", "headMystery201402Notes": "This winged circlet imbues the wearer with the speed of the wind! Confers no benefit. February 2014 Subscriber Item.", "headMystery201405Text": "Flame of Mind", @@ -470,6 +478,8 @@ "headMystery201508Notes": "This cozy cheetah hat is very fuzzy! Confers no benefit. August 2015 Subscriber Item.", "headMystery201509Text": "Werewolf Mask", "headMystery201509Notes": "This IS a mask, right? Confers no benefit. September 2015 Subscriber Item.", + "headMystery201511Text": "Log Crown", + "headMystery201511Notes": "Count the number of rings to learn how old this crown is. Confers no benefit. November 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", @@ -506,6 +516,8 @@ "headArmoireBlueFloppyHatNotes": "Many spells have been sewn into this simple hat, giving it a brilliant blue color. Increases Constitution, Intelligence, and Perception by <%= attrs %> each. Enchanted Armoire: Independent Item.", "headArmoireShepherdHeaddressText": "Shepherd Headdress", "headArmoireShepherdHeaddressNotes": "Sometimes the gryphons that you herd like to chew on this headdress, but it makes you seem more intelligent nonetheless. Increases Intelligence by <%= int %>. Enchanted Armoire: Shepherd Set (Item 3 of 3).", + "headArmoireCrystalCrescentHatText": "Crystal Crescent Hat", + "headArmoireCrystalCrescentHatNotes": "The design on this hat waxes and wanes with the phases of the moon. Increases Intelligence and Perception by <%= attrs %> each. Enchanted Armoire: Crystal Crescent Set (Item 1 of 3).", "offhand": "shield-hand item", "shieldBase0Text": "No Shield-Hand Equipment", "shieldBase0Notes": "No shield or second weapon.", diff --git a/common/locales/en_GB/groups.json b/common/locales/en_GB/groups.json index 970e905b6e..014da6ceba 100644 --- a/common/locales/en_GB/groups.json +++ b/common/locales/en_GB/groups.json @@ -147,5 +147,5 @@ "partyChatEmpty": "Your party chat is empty! Type a message in the box above to start chatting.", "guildChatEmpty": "This guild's chat is empty! Type a message in the box above to start chatting.", "possessiveParty": "<%= name %>'s Party", - "requestAcceptGuidelines": "If you would like to post messages in the Tavern or any party or guild chat, please first read our <%= linkStart %>Community Guidelines<%= linkEnd %> and then click the button below to indicate that you accept them." + "requestAcceptGuidelines": "If you would like to post messages in the Tavern or any party or guild chat, please first read our <%= linkStart %>Communit Guidelines<%= linkEnd %> and then click the button below to indicate that you accept them." } \ No newline at end of file diff --git a/common/locales/en_GB/limited.json b/common/locales/en_GB/limited.json index 278dfd7f68..93bd65a79a 100644 --- a/common/locales/en_GB/limited.json +++ b/common/locales/en_GB/limited.json @@ -21,6 +21,7 @@ "valentineCardAchievementText": "Aww, you and your friend must really care about each other! Sent or received <%= cards %> Valentine's Day cards.", "polarBear": "Polar Bear", "turkey": "Turkey", + "gildedTurkey": "Gilded Turkey", "polarBearPup": "Polar Bear Cub", "jackolantern": "Jack-O-Lantern", "seasonalShop": "Seasonal Shop", diff --git a/common/locales/en_GB/npc.json b/common/locales/en_GB/npc.json index c70fc41568..629eebb5e0 100644 --- a/common/locales/en_GB/npc.json +++ b/common/locales/en_GB/npc.json @@ -60,7 +60,7 @@ "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 3, 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 Habitica are honoured. Whether through code, art, music, writing, or even just helpfulness, they have earned Gems, exclusive equipment, and prestigious titles. You can contribute to Habitica, 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.", + "tourPetsPage": "This is the Stable! After level 3, 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 3, 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 3.) 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!", diff --git a/common/locales/en_GB/settings.json b/common/locales/en_GB/settings.json index e0b3e1ec7a..543cc6636f 100644 --- a/common/locales/en_GB/settings.json +++ b/common/locales/en_GB/settings.json @@ -143,5 +143,8 @@ "gemCapExtra": "Gem Cap Extra:", "mysticHourglasses": "Mystic Hourglasses:", "paypal": "PayPal", - "amazonPayments": "Amazon Payments" + "amazonPayments": "Amazon Payments", + "timezone": "Time Zone", + "timezoneUTC": "Habitica uses the time zone set on your PC, which is: <%= utc %>", + "timezoneInfo": "If that time zone is wrong, first reload this page using your browser's reload or refresh button to ensure that Habitica has the most recent information. If it is still wrong, adjust the time zone on your PC and then reload this page again.

If you use Habitica on other PCs or mobile devices, the time zone must be the same on them all. If your Dailies have been reseting at the wrong time, repeat this check on all other PCs and on a browser on your mobile devices." } \ No newline at end of file diff --git a/common/locales/en_GB/tasks.json b/common/locales/en_GB/tasks.json index e8015169b1..48029f8f32 100644 --- a/common/locales/en_GB/tasks.json +++ b/common/locales/en_GB/tasks.json @@ -88,8 +88,7 @@ "fortifyText": "Fortify will return all your tasks to a neutral (yellow) state, as if you'd just added them, and top your Health off to full. This is great if all your red tasks are making the game too hard or all your blue tasks are making the game too easy. If starting fresh sounds much more motivating, spend the Gems and catch a reprieve!", "sureDelete": "Are you sure you want to delete this task?", "streakCoins": "Streak Bonus!", - "pushTaskToTop": "Push task to top", - "pushTaskToBottom": "Push task to bottom", + "pushTaskToTop": "Push task to top. Hold ctrl or cmd to push to bottom.", "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.", "habitHelp1": "Good Habits are things that you do often. They award Gold and Experience every time you click the <%= plusIcon %>.", diff --git a/common/locales/es/backgrounds.json b/common/locales/es/backgrounds.json index 5334af6eae..977cb05153 100644 --- a/common/locales/es/backgrounds.json +++ b/common/locales/es/backgrounds.json @@ -125,5 +125,12 @@ "backgroundNightDunesText": "Dunas de Noche", "backgroundNightDunesNotes": "Camina tranquilamente a través de las Dunas de noche ", "backgroundSunsetOasisText": "Puesta en el Oasis", - "backgroundSunsetOasisNotes": "Toma sol en la Puesta del Oasis" + "backgroundSunsetOasisNotes": "Toma sol en la Puesta del Oasis", + "backgrounds122015": "SET 19: Released December 2015", + "backgroundAlpineSlopesText": "Alpine Slopes", + "backgroundAlpineSlopesNotes": "Ski on the Alpine Slopes.", + "backgroundSnowySunriseText": "Snowy Sunrise", + "backgroundSnowySunriseNotes": "Gaze at the Snowy Sunrise.", + "backgroundWinterTownText": "Winter Town", + "backgroundWinterTownNotes": "Bustle through a Winter Town." } \ No newline at end of file diff --git a/common/locales/es/content.json b/common/locales/es/content.json index 6ae4363505..af6eb06d84 100644 --- a/common/locales/es/content.json +++ b/common/locales/es/content.json @@ -84,7 +84,7 @@ "questEggSheepMountText": "Oveja", "questEggSheepAdjective": "una lanuda", "questEggCuttlefishText": "Calamar", - "questEggCuttlefishMountText": "Cuttlefish", + "questEggCuttlefishMountText": "Calamar", "questEggCuttlefishAdjective": "a cuddly", "questEggWhaleText": "Ballena", "questEggWhaleMountText": "Ballena", @@ -101,7 +101,7 @@ "questEggSnakeText": "Serpiente", "questEggSnakeMountText": "Serpiente", "questEggSnakeAdjective": "a slithering", - "eggNotes": "Find a hatching potion to pour on this egg, and it will hatch into <%= eggAdjective(locale) %> <%= eggText(locale) %>.", + "eggNotes": "Encuentra una poción de eclosión para verter en este huevo y eclosionará en <%= eggAdjective(locale) %> <%= eggText(locale) %>.", "hatchingPotionBase": "Base", "hatchingPotionWhite": "Blanco", "hatchingPotionDesert": "del Desierto", diff --git a/common/locales/es/faq.json b/common/locales/es/faq.json index 3afd5a1a19..57b2f04d72 100644 --- a/common/locales/es/faq.json +++ b/common/locales/es/faq.json @@ -2,7 +2,7 @@ "frequentlyAskedQuestions": "Preguntas frecuentes", "faqQuestion0": "No entiendo nada, ¿dónde hay un resumen?", "iosFaqAnswer0": "Primero, tienes que añadir las tareas que quieras realizar en tu día a día. Entonces, a medida que cumplas esas tareas en la vida real y las marques como completadas, ganarás experiencia y oro. El oro sirve para comprar equipos y otros objetos, y para obtener recompensas que puedes personalizar. La experiencia hace que tu personaje suba de nivel y desbloquee contenidos como mascotas, habilidades y misiones. Puedes cambiar el aspecto de tu personaje en Menú > Personalizar avatar.\n\nEstas son las acciones básicas: haz clic en el signo más (+) de la esquina superior derecha para añadir una tarea. Si quieres editar una tarea, pulsa en ella. Para eliminarla, desliza el dedo hacia la izquierda sobre ella. Puedes filtrar las tareas por etiquetas en la esquina superior izquierda, y expandir o contraer listas pulsando en el icono de fracción.", - "webFaqAnswer0": "Primero, tienes que añadir las tareas que quieras realizar en tu día a día. Entonces, a medida que cumplas esas tareas en la vida real y las marques como completadas, ganarás experiencia y oro. El oro sirve para comprar equipos y otros objetos, y para obtener recompensas que puedes personalizar. La experiencia hace que tu personaje suba de nivel y desbloquee contenidos como mascotas, habilidades y misiones. Si quieres saber más detalles, la wiki tiene un buen resumen del juego, paso por paso, [aquí](http://habitica.wikia.com/wiki/Habitica_Wiki).", + "webFaqAnswer0": "First, you'll set up tasks that you want to do in your everyday life. Then, as you complete the tasks in real life and check them off, you'll earn Experience and Gold. Gold is used to buy equipment and some items, as well as custom rewards. Experience causes your character to level up and unlock content such as pets, skills, and quests! For more detail, check out a step-by-step overview of the game at [Help -> Overview for New Users](https://habitica.com/static/overview).", "faqQuestion1": "¿Cómo puedo establecer mis tareas?", "iosFaqAnswer1": "Good Habits (the ones with a +) are tasks that you can do many times a day, such as eating vegetables. Bad Habits (the ones with a -) are tasks that you should avoid, like biting nails. Habits with a + and a - have a good choice and a bad choice, like taking the stairs vs. taking the elevator. Good Habits award experience and gold. Bad Habits subtract health.\n\n Dailies are tasks that you have to do every day, like brushing your teeth or checking your email. You can adjust the days that a Daily is due by tapping to edit it. If you skip a Daily that is due, your avatar will take damage overnight. Be careful not to add too many Dailies at once!\n\n To-Dos are your To-Do list. Completing a To-Do earns you gold and experience. You never lose health from To-Dos. You can add a due date to a To-Do by tapping to edit.", "webFaqAnswer1": "Los Buenos Hábitos (aquellos con un ) son tareas que puede realizar varias veces al día, como por ejemplo, comer vegetales. Los Malos Hábitos (aquellos con un ) son tareas que debería evitar, como por ejemplo, morderse las uñas. Los Hábitos con un y un ofrecen una buena y una mala elección, como subir por las escaleras en oposición a usar el ascensor. Los Buenos Hábitos otorgan Experiencia y Oro. Los Malos Hábitos restan Salud.\n

\nLas Diarias son tareas que debe realizar cada día, como por ejemplo lavarse los dientes o revisar el correo electrónico. Puede ajustar los días en los que debe realizar una Diaria haciendo click en el lápiz para editar la tarea. Si se salta una Daria que está aún pendiente, su avatar recibirá daño durante la noche. ¡Tenga cuidado de no añadir demasiadas Diarias al mismo tiempo!\n

\nLas Tareas Pendientes son su lista de cosas por hacer. Completar una Tarea Pendiente le hará ganar Oro y Experiencia. Nunca perderás Salud por no completar las Tareas Pendientes. Puede incluir una fecha límite a una Tarea Pendiente haciendo click en el icono del lápiz para editarla.", diff --git a/common/locales/es/gear.json b/common/locales/es/gear.json index d548b7dcc1..bfde844fb5 100644 --- a/common/locales/es/gear.json +++ b/common/locales/es/gear.json @@ -149,15 +149,19 @@ "weaponArmoireRancherLassoText": "Lazo de ranchero", "weaponArmoireRancherLassoNotes": "El lazo, la herramienta perfecta para rodear a la gente y pelearse con ella. Suma <%= str %> de fuerza, <%= per %> de percepción y <%= int %> de inteligencia. Ropero Encantado: conjunto de ranchero (artículo 3 de 3).", "weaponArmoireMythmakerSwordText": "Espada de creador de mitos", - "weaponArmoireMythmakerSwordNotes": "Por humilde que pueda parecer, esta espada ha dado lugar a numerosos héroes míticos. Suma <%= attrs %> de percepción y <%= attrs %> de fuerza. Ropero Encantado: conjunto de toga dorada (artículo 3 de 3).", + "weaponArmoireMythmakerSwordNotes": "Though it may seem humble, this sword has made many mythic heroes. Increases Perception and Strength by <%= attrs %> each. Enchanted Armoire: Golden Toga Set (Item 3 of 3).", "weaponArmoireIronCrookText": "Cayado de hierro", - "weaponArmoireIronCrookNotes": "Moldeado con fiereza a golpe de martillo, este cayado de hierro es muy útil para arrear a las ovejas. Suma <%= attrs %> de percepción y <%= attrs %> de fuerza. Ropero Encantado: conjunto de hierro enastado (artículo 3 de 3).", + "weaponArmoireIronCrookNotes": "Fiercely hammered from iron, this iron crook is good at herding sheep. Increases Perception and Strength by <%= attrs %> each. Enchanted Armoire: Horned Iron Set (Item 3 of 3).", "weaponArmoireGoldWingStaffText": "Báculo de Alas de Oro", "weaponArmoireGoldWingStaffNotes": "Este báculo bate sus alas y las gira continuamente. Suma <%= attrs %> a todos los atributos. Ropero Encantado: artículo independiente.", "weaponArmoireBatWandText": "Varita de Murciélago", "weaponArmoireBatWandNotes": "This wand can turn any task into a bat! Wave it about and watch them fly away. Increases Intelligence by <%= int %> and Perception by <%= per %>. Enchanted Armoire: Independent Item.", "weaponArmoireShepherdsCrookText": "Shepherd's Crook", "weaponArmoireShepherdsCrookNotes": "Useful for herding gryphons. Increases Constitution by <%= con %>. Enchanted Armoire: Shepherd Set (Item 1 of 3).", + "weaponArmoireCrystalCrescentStaffText": "Crystal Crescent Staff", + "weaponArmoireCrystalCrescentStaffNotes": "Summon the power of the crescent moon with this shining staff! Increases Intelligence and Strength by <%= attrs %> each. Enchanted Armoire: Crystal Crescent Set (Item 3 of 3).", + "weaponArmoireBlueLongbowText": "Blue Longbow", + "weaponArmoireBlueLongbowNotes": "Ready... Aim... Fire! This bow has great range. Increases Perception by 9, Constitution by 8, and Strength by 7. Enchanted Armoire: Independent Item.", "armor": "armadura", "armorBase0Text": "Ropa normal", "armorBase0Notes": "Ropa normal. No otorga ningún beneficio.", @@ -222,7 +226,7 @@ "armorSpecialBirthday2015Text": "Ropa Ridícula de Fiesta", "armorSpecialBirthday2015Notes": "¡Feliz Cumpleaños, Habitica! Vístete con esta Ropa Ridícula de Fiesta para celebrar este maravilloso día. No confiere ningún beneficio.", "armorSpecialGaymerxText": "Armadura de Guerrero del Arco Iris", - "armorSpecialGaymerxNotes": "¡Con motivo de la temporada del orgullo y de GaymerX, este armadura especial está decorada con un radiante y colorido arco iris! GaymerX es una convención dedicada a los videojuegos y al colectivo LGBTQ, está abierta a todo el mundo y tiene lugar en el InterContinental, en el centro de San Francisco, del 11 al 13 de julio. Esta armadura no proporciona ningún beneficio.", + "armorSpecialGaymerxNotes": "In celebration of the GaymerX Conference, this special armor is decorated with a radiant, colorful rainbow pattern! GaymerX is a game convention celebrating LGTBQ and gaming and is open to everyone.", "armorSpecialSpringRogueText": "Traje Elegante de Gato", "armorSpecialSpringRogueNotes": "Impecablemente cuidado. Aumenta la percepción en <%= per %>. Equipo de Primavera Edición Limitada 2014.", "armorSpecialSpringWarriorText": "Armadura de Acero de Trébol.", @@ -309,6 +313,8 @@ "armorMystery201508Notes": "Corre como el rayo con este disfraz de guepardo tan mullidito. No aporta ningún beneficio. Artículo de suscriptor de agosto del 2015.", "armorMystery201509Text": "Disfraz de Hombre lobo", "armorMystery201509Notes": "This IS a costume, right? Confers no benefit. September 2015 Subscriber Item.", + "armorMystery201511Text": "Wooden Armor", + "armorMystery201511Notes": "Considering this armor was carved directly from a magical log, it's surprisingly comfortable. Confers no benefit. November 2015 Subscriber Item.", "armorMystery301404Text": "Traje Steampunk", "armorMystery301404Notes": "¡Sofisticado y elegante! No otorga ningún beneficio. Artículo de suscriptor de febrero 3015.", "armorArmoireLunarArmorText": "Armadura lunar reconfortante", @@ -327,6 +333,8 @@ "armorArmoireShepherdRobesNotes": "The fabric is cool and breathable, perfect for a hot day herding gryphons in the desert. Increases Strength and Perception by <%= attrs %> each. Enchanted Armoire: Shepherd Set (Item 2 of 3).", "armorArmoireRoyalRobesText": "Royal Robes", "armorArmoireRoyalRobesNotes": "Wonderful ruler, rule all day long! Increases Constitution, Intelligence, and Perception by <%= attrs %> each. Enchanted Armoire: Royal Set (Item 3 of 3).", + "armorArmoireCrystalCrescentRobesText": "Crystal Crescent Robes", + "armorArmoireCrystalCrescentRobesNotes": "These magical robes are luminescent at night. Increases Constitution and Perception by <%= attrs %> each. Enchanted Armoire: Crystal Crescent Set (Item 2 of 3).", "headgear": "cubrecabeza", "headBase0Text": "Sin casco", "headBase0Notes": "Sin equipo de cabeza.", @@ -447,7 +455,7 @@ "headSpecialFall2015HealerText": "Hat of Frog", "headSpecialFall2015HealerNotes": "This is an extremely serious hat that is worthy of only the most advanced potioners. Increases Intelligence by <%= int %>. Limited Edition 2015 Autumn Gear.", "headSpecialGaymerxText": "Casco de Guerrero de Arco Iris", - "headSpecialGaymerxNotes": "¡Con motivo de la temporada del orgullo y de GaymerX, este armadura especial está decorada con un radiante y colorido arco iris! GaymerX es una convención dedicada a los videojuegos y al colectivo LGBTQ, está abierta a todo el mundo y tiene lugar en el InterContinental, en el centro de San Francisco, el 11-13 de julio. Esta armadura no proporciona ningún beneficio.", + "headSpecialGaymerxNotes": "In celebration of the GaymerX Conference, this special helmet is decorated with a radiant, colorful rainbow pattern! GaymerX is a game convention celebrating LGTBQ and gaming and is open to everyone.", "headMystery201402Text": "Casco alado", "headMystery201402Notes": "¡Esta diadema alada imbuye a su portador con la velocidad del viento! No confiere ningún beneficio. Equipo de suscriptor Febrero 2014.", "headMystery201405Text": "Llama de Mente", @@ -470,6 +478,8 @@ "headMystery201508Notes": "¡Mira qué rizado y calentito es este gorro de guepardo! No aporta ningún beneficio. Artículo de suscriptor de agosto del 2015.", "headMystery201509Text": "Máscara de Hombre lobo", "headMystery201509Notes": "This IS a mask, right? Confers no benefit. September 2015 Subscriber Item.", + "headMystery201511Text": "Log Crown", + "headMystery201511Notes": "Count the number of rings to learn how old this crown is. Confers no benefit. November 2015 Subscriber Item.", "headMystery301404Text": "Sombrero de copa sofisticado", "headMystery301404Notes": "¡Un sofisticado sombrero de copa solo para los más refinados caballeros! No otorga ningún beneficio. Artículo de Suscriptor de Enero del 3015", "headMystery301405Text": "Sombrero de copa básico", @@ -506,6 +516,8 @@ "headArmoireBlueFloppyHatNotes": "Many spells have been sewn into this simple hat, giving it a brilliant blue color. Increases Constitution, Intelligence, and Perception by <%= attrs %> each. Enchanted Armoire: Independent Item.", "headArmoireShepherdHeaddressText": "Shepherd Headdress", "headArmoireShepherdHeaddressNotes": "Sometimes the gryphons that you herd like to chew on this headdress, but it makes you seem more intelligent nonetheless. Increases Intelligence by <%= int %>. Enchanted Armoire: Shepherd Set (Item 3 of 3).", + "headArmoireCrystalCrescentHatText": "Crystal Crescent Hat", + "headArmoireCrystalCrescentHatNotes": "The design on this hat waxes and wanes with the phases of the moon. Increases Intelligence and Perception by <%= attrs %> each. Enchanted Armoire: Crystal Crescent Set (Item 1 of 3).", "offhand": "objeto para la mano del escudo", "shieldBase0Text": "Sin equipamiento en la mano del escudo", "shieldBase0Notes": "Sin escudo o arma secundaria.", diff --git a/common/locales/es/limited.json b/common/locales/es/limited.json index f64726d558..c83ff6be9a 100644 --- a/common/locales/es/limited.json +++ b/common/locales/es/limited.json @@ -21,6 +21,7 @@ "valentineCardAchievementText": "Oh, ¡tú y tu amigo debéis preocuparos mucho el uno por el otro! <%= cards %> Tarjetas del Día de San Valentín Enviadas o Recibidas.", "polarBear": "Oso Polar", "turkey": "Pavo", + "gildedTurkey": "Gilded Turkey", "polarBearPup": "Cachorro de Oso Polar", "jackolantern": "Calabaza de Halloween", "seasonalShop": "Tienda Estacional", diff --git a/common/locales/es/messages.json b/common/locales/es/messages.json index 6141b279b0..391000b864 100644 --- a/common/locales/es/messages.json +++ b/common/locales/es/messages.json @@ -5,7 +5,7 @@ "messageTagNotFound": "Etiqueta no encontrada.", "messagePetNotFound": ":pet no encontrada en user.items.pets", "messageFoodNotFound": ":food no encontrada en user.items.food", - "messageNotAvailable": "This item is not currently available for purchase.", + "messageNotAvailable": "Este artículo no está actualmente disponible para su compra.", "messageCannotFeedPet": "No se puede alimentar a esta mascota.", "messageAlreadyMount": "Ya tienes esa montura. Intenta alimentar a otra mascota.", "messageEvolve": "Has dominado a <%= egg %>, ¡vamos a dar una vuelta!", @@ -32,23 +32,23 @@ "armoireFood": "<%= image %> Hurgas en el Ropero y encuentras <%= dropArticle %><%= dropText %>. ¿Qué hace eso aquí?", "armoireExp": "Luchas con el Ropero y ganas Experiencia. ¡Toma eso!", "messageInsufficientGems": "No hay suficientes gemas!", - "messageAuthPasswordMustMatch": ":password and :confirmPassword don't match", + "messageAuthPasswordMustMatch": "Las contraseñas no coinciden.", "messageAuthCredentialsRequired": ":username, :email, :password, :confirmPassword required", "messageAuthUsernameTaken": "El nombre de usuario ya está en uso", "messageAuthEmailTaken": "El correo electrónico ya está en uso", "messageAuthNoUserFound": "No se encontró el usuario.", - "messageAuthMustBeLoggedIn": "You must be logged in.", + "messageAuthMustBeLoggedIn": "Debes estar identificado.", "messageAuthMustIncludeTokens": "You must include a token and uid (user id) in your request", - "messageGroupNotFound": "Group not found or you don't have access.", + "messageGroupNotFound": "Grupo no encontrado o no tienes acceso.", "messageGroupAlreadyInParty": "Already in a party, try refreshing.", - "messageGroupOnlyLeaderCanUpdate": "Only the group leader can update the group!", - "messageGroupRequiresInvite": "Can't join a group you're not invited to.", - "messageGroupCannotRemoveSelf": "You cannot remove yourself!", - "messageGroupChatBlankMessage": "You cannot send a blank message", + "messageGroupOnlyLeaderCanUpdate": "¡Sólo el líder del grupo puede actualizar el grupo!", + "messageGroupRequiresInvite": "No puedes entrar en un grupo al que no has sido invitado.", + "messageGroupCannotRemoveSelf": "¡No puedes eliminarte a ti mismo!", + "messageGroupChatBlankMessage": "No puedes enviar un mensaje en blanco", "messageGroupChatLikeOwnMessage": "Can't like your own message. Don't be that person.", - "messageGroupChatFlagOwnMessage": "Can't report your own message.", - "messageGroupChatFlagAlreadyReported": "You have already reported this message", - "messageGroupChatNotFound": "Message not found!", + "messageGroupChatFlagOwnMessage": "No puedes reportar tu propio mensaje.", + "messageGroupChatFlagAlreadyReported": "Has reportado este mensaje", + "messageGroupChatNotFound": "¡Mensaje no encontrado!", "messageGroupChatAdminClearFlagCount": "Only an admin can clear the flag count!", "messageUserOperationProtected": "path `<%= operation %>` was not saved, as it's a protected path.", "messageUserOperationNotFound": "<%= operation %> operation not found" diff --git a/common/locales/es/quests.json b/common/locales/es/quests.json index 6b80a2f4d5..2d184f6113 100644 --- a/common/locales/es/quests.json +++ b/common/locales/es/quests.json @@ -13,7 +13,7 @@ "youReceived": "Has recibido", "dropQuestCongrats": "¡Enhorabuena por haber conseguido este pergamino de misión! Puedes invitar a tu grupo para empezar ya con la misión o volver cuando quieras a Inventario > Misiones.", "questSend": "Si haces clic en «Invitar», se enviará una invitación a los miembros de tu grupo. Cuando todos los miembros la hayan aceptado o rechazado, empezará la misión. Puedes consultar el estado en Social > Grupo.", - "questSendBroken": "Clicking \"Invite\" will send an invitation to your party members... When all members have accepted or denied, the quest begins... See status under Social > Party...", + "questSendBroken": "Si haces clic en \"invitar\" se enviará una invitación a los miembros de tu grupo. Cuando todos los miembros la hayan aceptado o rechazado empezará la misión. Puedes consultar el estado en Social > Grupo...", "inviteParty": "Invitar al grupo a la misión", "questInvitation": "Invitación a Misión:", "questInvitationTitle": "Invitación a Misión", diff --git a/common/locales/es/settings.json b/common/locales/es/settings.json index 431be93719..5de90640eb 100644 --- a/common/locales/es/settings.json +++ b/common/locales/es/settings.json @@ -143,5 +143,8 @@ "gemCapExtra": "Gem Cap Extra:", "mysticHourglasses": "Mystic Hourglasses:", "paypal": "PayPal", - "amazonPayments": "Amazon Payments" + "amazonPayments": "Amazon Payments", + "timezone": "Time Zone", + "timezoneUTC": "Habitica uses the time zone set on your PC, which is: <%= utc %>", + "timezoneInfo": "If that time zone is wrong, first reload this page using your browser's reload or refresh button to ensure that Habitica has the most recent information. If it is still wrong, adjust the time zone on your PC and then reload this page again.

If you use Habitica on other PCs or mobile devices, the time zone must be the same on them all. If your Dailies have been reseting at the wrong time, repeat this check on all other PCs and on a browser on your mobile devices." } \ No newline at end of file diff --git a/common/locales/es/tasks.json b/common/locales/es/tasks.json index aac4b25c35..0dfe482a6b 100644 --- a/common/locales/es/tasks.json +++ b/common/locales/es/tasks.json @@ -88,8 +88,7 @@ "fortifyText": "Fortalecer devolverá todas tus tareas a un estado neutral (amarillo), como si las acabaras de añadir, y rellena tu Salud al máximo. Esto es genial si tus tareas rojas están haciendo el juego demasiado duro, o tus tareas azules lo están haciendo demasiado fácil. Si empezar de cero te suena mucho más motivante, ¡gasta las Gemas y pilla un indulto!", "sureDelete": "¿Estás seguro de que quieres eliminar esta tarea?", "streakCoins": "¡Bonus de Racha!", - "pushTaskToTop": "Desplazar tarea al inicio", - "pushTaskToBottom": "Desplazar tarea hacia abajo", + "pushTaskToTop": "Push task to top. Hold ctrl or cmd to push to bottom.", "emptyTask": "Introduzca primero el título de la Tarea", "dailiesRestingInInn": "¡Estás descansando en la Posada! Tus tareas Diarias NO te harán daño esta noche, pero se refrescarán cada día. Si estás en una misión, no sufrirás daño ni conseguirás objetos hasta que salgas de la Posada, pero sí puedes ser herido por un Jefe si tus compañeros de Grupo se saltan sus tareas Diarias.", "habitHelp1": "Los Hábitos Buenos son cosas que haces a menudo. Te conceden Oro y Experiencia cada vez que haces clic en el <%= plusIcon %>.", diff --git a/common/locales/es_419/backgrounds.json b/common/locales/es_419/backgrounds.json index a81ee93326..3c07cd3026 100644 --- a/common/locales/es_419/backgrounds.json +++ b/common/locales/es_419/backgrounds.json @@ -125,5 +125,12 @@ "backgroundNightDunesText": "Dunas Nocturnas", "backgroundNightDunesNotes": "Camina pacíficamente atravesando las Dunas Nocturnas.", "backgroundSunsetOasisText": "Oasis en el Ocaso", - "backgroundSunsetOasisNotes": "Disfruta de un Oasis en el Ocaso." + "backgroundSunsetOasisNotes": "Disfruta de un Oasis en el Ocaso.", + "backgrounds122015": "SET 19: Released December 2015", + "backgroundAlpineSlopesText": "Alpine Slopes", + "backgroundAlpineSlopesNotes": "Ski on the Alpine Slopes.", + "backgroundSnowySunriseText": "Snowy Sunrise", + "backgroundSnowySunriseNotes": "Gaze at the Snowy Sunrise.", + "backgroundWinterTownText": "Winter Town", + "backgroundWinterTownNotes": "Bustle through a Winter Town." } \ No newline at end of file diff --git a/common/locales/es_419/faq.json b/common/locales/es_419/faq.json index f6a7b7dbce..6968bab71e 100644 --- a/common/locales/es_419/faq.json +++ b/common/locales/es_419/faq.json @@ -2,7 +2,7 @@ "frequentlyAskedQuestions": "Preguntas frecuentes", "faqQuestion0": "Estoy confundido. ¿Dónde puedo ver una síntesis?", "iosFaqAnswer0": "Primero crea las tareas que piensas hacer en tu día a día Luego, a medida completes las tareas en la vida real, marca la casilla correspondiente, esto te dará oro y experiencia. El oro sirve para comprar equipamiento e Items, asi como también, recompensas personalizadas. El ganar experiencia, hará que tu personaje suba de nivel y puedas desbloquear contenido como Mascotas, Habilidades y Misiones! Puedes personalizar tu personaje en el menu Usuario > Avatar.\n\nAlgunas datos para ir empezando: Cliquea el (+) en el borde superior derecho para agregar tareas nuevas. Pulsa en una tarea existente para editarla y arrástrala hacia la izquierda si deseas borrarla. Puedes ordenar tus tareas usando Etiquetas en el borde superior izquierdo asi como también puedes contraer las listas de control cliqueando en la burbuja que se encuentra a su lado.", - "webFaqAnswer0": "Primero crea las tareas que piensas hacer en tu día a día Luego, a medida completes las tareas en la vida real, marca la casilla correspondiente, esto te dará oro y experiencia. El oro sirve para comprar equipamiento e Items, asi como también, recompensas personalizadas. El ganar experiencia, hará que tu personaje suba de nivel y puedas desbloquear contenido como Mascotas, Habilidades y Misiones! Para mas detalle, la wiki posee un excelente tutorial paso por paso sobre el juego [Aqui Mismo](http://habitica.wikia.com/wiki/Habitica_Wiki).", + "webFaqAnswer0": "First, you'll set up tasks that you want to do in your everyday life. Then, as you complete the tasks in real life and check them off, you'll earn Experience and Gold. Gold is used to buy equipment and some items, as well as custom rewards. Experience causes your character to level up and unlock content such as pets, skills, and quests! For more detail, check out a step-by-step overview of the game at [Help -> Overview for New Users](https://habitica.com/static/overview).", "faqQuestion1": "¿Cómo creo mis tareas?", "iosFaqAnswer1": "Buenos hábitos (los que tienen un signo +) son tareas que puedes hacer varias veces durante el día, tal como comer vegetales. Malos hábitos (los que tienen un signo -) son tareas que deberías evitar, como comerte las uñas. Hábitos con un signo + y un signo - te dejan una buena opción y una mala opción, como subir las escaleras vs. tomar el ascensor. Los buenos hábitos te recompensan con experiencia y oro. Los malos hábitos te quitan salud.", "webFaqAnswer1": "Buenos hábitos (los que tienen un signo ) son tareas que puedes hacer varias veces durante el día, tal como comer vegetales. Malos hábitos (los que tienen un signo ) son tareas que deberías evitar, como comerte las uñas. Hábitos con un signo y un signo te dejan una buena opción y una mala opción, como subir las escaleras vs. tomar el ascensor. Los buenos hábitos te recompensan con experiencia y oro. Los malos hábitos te quitan salud.\n

\nLas tareas diarias son tareas que tienes que hacer todos los días, como cepillarte los dientes o revisar tu correo. Puedes ajustar los días en que las Tareas Diarias vencen al haciendo click en el lápiz para editarla. Si dejas de hacer una Tarea Diaria el día que vence, tu avatar recibirá daño durante la noche. ¡Ten cuidado de no añadir demasiadas Tareas Diarias a la vez!\n

\nPendientes son tu lista de cosas por hacer. Completar un Pendiente te hace ganar oro y experiencia. Nunca pierdes salud a causa de un Pendiente. Puedes añadir una fecha de vencimiento a un Pendiente haciendo click en el lápiz para editarlo.", @@ -10,7 +10,7 @@ "iosFaqAnswer2": "The wiki has four lists of sample tasks to use as inspiration:\n

\n * [Sample Habits](http://habitica.wikia.com/wiki/Sample_Habits)\n * [Sample Dailies](http://habitica.wikia.com/wiki/Sample_Dailies)\n * [Sample To-Dos](http://habitica.wikia.com/wiki/Sample_To-Dos)\n * [Sample Custom Rewards](http://habitica.wikia.com/wiki/Sample_Custom_Rewards)", "webFaqAnswer2": "The wiki has four lists of sample tasks to use as inspiration:\n * [Sample Habits](http://habitica.wikia.com/wiki/Sample_Habits)\n * [Sample Dailies](http://habitica.wikia.com/wiki/Sample_Dailies)\n * [Sample To-Dos](http://habitica.wikia.com/wiki/Sample_To-Dos)\n * [Sample Custom Rewards](http://habitica.wikia.com/wiki/Sample_Custom_Rewards)", "faqQuestion3": "¿Por qué mis tareas cambian de color?", - "iosFaqAnswer3": "Your tasks change color based on how well you are currently accomplishing them! Each new task starts out as a neutral yellow. Perform Dailies or positive Habits more frequently and they move toward blue. Miss a Daily or give in to a bad Habit and the task moves toward red. The redder a task, the more rewards it will give you, but if it's a Daily or bad Habit, the more it will hurt you! This helps motivate you to complete the tasks that are giving you trouble.", + "iosFaqAnswer3": "Tu tareas cambian colores dependiendo de como si las realizes actualmente. Cada nueva tarea comenza como un neutro amarillo. Realizar diarias o hábitos positivos con más frecuencia y moven al azul. Faltar una diaria o rendirse al malo hábito y la tarea move al rojo. ", "webFaqAnswer3": "Your tasks change color based on how well you are currently accomplishing them! Each new task starts out as a neutral yellow. Perform Dailies or positive Habits more frequently and they move toward blue. Miss a Daily or give in to a bad Habit and the task moves toward red. The redder a task, the more rewards it will give you, but if it’s a Daily or bad Habit, the more it will hurt you! This helps motivate you to complete the tasks that are giving you trouble.", "faqQuestion4": "¿Por qué mi avatar perdió puntos de vida y cómo los puedo recuperar?", "iosFaqAnswer4": "There are several things that can cause you to take damage. First, if you left Dailies incomplete overnight, they will damage you. Second, if you tap a bad Habit, it will damage you. Finally, if you are in a Boss Battle with your Party and one of your Party mates did not complete all their Dailies, the Boss will attack you.\n\n The main way to heal is to gain a level, which restores all your health. You can also buy a Health Potion with gold from the Rewards column. Plus, at level 10 or above, you can choose to become a Healer, and then you will learn healing skills. If you are in a Party with a Healer, they can heal you as well.", diff --git a/common/locales/es_419/gear.json b/common/locales/es_419/gear.json index 5cc9e5a8c8..29a938c2f7 100644 --- a/common/locales/es_419/gear.json +++ b/common/locales/es_419/gear.json @@ -115,17 +115,17 @@ "weaponSpecialSpring2015WarriorText": "Garrote de hueso", "weaponSpecialSpring2015WarriorNotes": "Es una auténtica Clava de hueso para auténticos perritos feroces y definitivamente no es un mordedor que te han dado los Hechiceros de las estaciones porque, ¿quién es un buen perrito? ¿Quiéeen es un buen perrito? ¡Eres tú! ¡¡Tú eres un buen perrito!! Aumenta la Fuerza por <%= str %>. Equipamiento de edición limitada de primavera 2015.", "weaponSpecialSpring2015MageText": "Varita mágica", - "weaponSpecialSpring2015MageNotes": "Conjure up a carrot for yourself with this fancy wand. Increases Intelligence by <%= int %> and Perception by <%= per %>. Limited Edition 2015 Spring Gear.", + "weaponSpecialSpring2015MageNotes": "Conjura una zanahoria para ti con esta lujosa varita. Incrementa la Inteligencia en <%= int %> y Percepción en <%= per %>. Equipamiento de edición limitada de verano 2015", "weaponSpecialSpring2015HealerText": "Sonaja de gato", "weaponSpecialSpring2015HealerNotes": "Cuando lo agitas, hace un chasquido fascinante que mantendría a CUALQUIERA entretenido durante horas. Aumenta la Inteligencia por <%= int %>. Equipamiento de edición limitada de primavera 2015.", "weaponSpecialSummer2015RogueText": "Coral de fuego", - "weaponSpecialSummer2015RogueNotes": "This relative of fire coral has the ability to propel its venom through the water. Increases Strength by <%= str %>. Limited Edition 2015 Summer Gear.", + "weaponSpecialSummer2015RogueNotes": "Este coral de fuego tiene la habilidad de expulsar veneno a través del agua. Incrementa Fuerza en <%= str %>. Equipamiento de edición limitada de verano 2015", "weaponSpecialSummer2015WarriorText": "Pez Espada del Sol", - "weaponSpecialSummer2015WarriorNotes": "The Sun Swordfish is a fearsome weapon, provided that it can be induced to stop wriggling. Increases Strength by <%= str %>. Limited Edition 2015 Summer Gear.", + "weaponSpecialSummer2015WarriorNotes": "El pez espada solar es una temible arma, siempre y cuando puedas hacer que deje de ondularse. Incrementa Fuerza en <%= str %>. Equipamiento de edición limitada de verano 2015", "weaponSpecialSummer2015MageText": "Báculo de Adivino", - "weaponSpecialSummer2015MageNotes": "Hidden power glimmers in the jewels of this staff. Increases Intelligence by <%= int %> and Perception by <%= per %>. Limited Edition 2015 Summer Gear.", + "weaponSpecialSummer2015MageNotes": "Poder oculto emana de las joyas de este báculo. Incrementa Inteligencia en <%= int %> y Percepción en <%= per %>. Equipamiento de edición limitada de verano 2015.", "weaponSpecialSummer2015HealerText": "Varita de las Ondas", - "weaponSpecialSummer2015HealerNotes": "Cures seasickness and sea sickness! Increases Intelligence by <%= int %>. Limited Edition 2015 Summer Gear.", + "weaponSpecialSummer2015HealerNotes": "Cura el mareo y el Mar ..¡Eo! Incrementa la Inteligencia por <%= int %>.Equipamiento de edición limitada de verano 2015.", "weaponSpecialFall2015RogueText": "Bati-Batalla Ax", "weaponSpecialFall2015RogueNotes": "Fearsome To-Dos cower before the flapping of this ax. Increases Strength by <%= str %>. Limited Edition 2015 Autumn Gear.", "weaponSpecialFall2015WarriorText": "Tablón de madera", @@ -149,15 +149,19 @@ "weaponArmoireRancherLassoText": "Lazo Ranchero", "weaponArmoireRancherLassoNotes": "Lassos: the ideal tool for rounding up and wrangling. Increases Strength by <%= str %>, Perception by <%= per %>, and Intelligence by <%= int %>. Enchanted Armoire: Rancher Set (Item 3 of 3).", "weaponArmoireMythmakerSwordText": "Espada del Creador de Mitos", - "weaponArmoireMythmakerSwordNotes": "Though it may seem humble, this sword has made many mythic heroes. Increases Perception and Strength by <%= attrs %> each. Enchanted Armoire: Golden Toga Set (Item 3 of 3)", + "weaponArmoireMythmakerSwordNotes": "Though it may seem humble, this sword has made many mythic heroes. Increases Perception and Strength by <%= attrs %> each. Enchanted Armoire: Golden Toga Set (Item 3 of 3).", "weaponArmoireIronCrookText": "Báculo de Hierro", - "weaponArmoireIronCrookNotes": "Fiercely hammered from iron, this iron crook is good at herding sheep. Increases Perception and Strength by <%= attrs %> each. Enchanted Armoire: Horned Iron Set (Item 3 of 3)", + "weaponArmoireIronCrookNotes": "Fiercely hammered from iron, this iron crook is good at herding sheep. Increases Perception and Strength by <%= attrs %> each. Enchanted Armoire: Horned Iron Set (Item 3 of 3).", "weaponArmoireGoldWingStaffText": "Báculo Ala de Oro", "weaponArmoireGoldWingStaffNotes": "The wings on this staff constantly flutter and twist. Increases all attributes by <%= attrs %> each. Enchanted Armoire: Independent Item.", "weaponArmoireBatWandText": "Varita de Murciélago", "weaponArmoireBatWandNotes": "This wand can turn any task into a bat! Wave it about and watch them fly away. Increases Intelligence by <%= int %> and Perception by <%= per %>. Enchanted Armoire: Independent Item.", "weaponArmoireShepherdsCrookText": "Cayado de Pastor", "weaponArmoireShepherdsCrookNotes": "Useful for herding gryphons. Increases Constitution by <%= con %>. Enchanted Armoire: Shepherd Set (Item 1 of 3).", + "weaponArmoireCrystalCrescentStaffText": "Crystal Crescent Staff", + "weaponArmoireCrystalCrescentStaffNotes": "Summon the power of the crescent moon with this shining staff! Increases Intelligence and Strength by <%= attrs %> each. Enchanted Armoire: Crystal Crescent Set (Item 3 of 3).", + "weaponArmoireBlueLongbowText": "Blue Longbow", + "weaponArmoireBlueLongbowNotes": "Ready... Aim... Fire! This bow has great range. Increases Perception by 9, Constitution by 8, and Strength by 7. Enchanted Armoire: Independent Item.", "armor": "armadura", "armorBase0Text": "Ropa simple", "armorBase0Notes": "Ropa simple. No otorga ningún beneficio.", @@ -222,7 +226,7 @@ "armorSpecialBirthday2015Text": "Túnicas de fiesta ridículas", "armorSpecialBirthday2015Notes": "¡Feliz Cumpleaños, Habitica! Usa estas rídiculas túnicas de fiesta para celebrar este maravilloso día. No otorga ningún beneficio", "armorSpecialGaymerxText": "Armadura del guerrero arco iris", - "armorSpecialGaymerxNotes": "Con motivo de la celebración de la temporada del pride y GaymerX, ¡esta armadura especial está decorada con un radiante y colorido estampado de arco iris! GaymerX es una convención de juegos que celebra LGBTQ y los video juegos y está abierta para todos. ¡Tiene lugar en el InterContinental en el centro de San Francisco del 11-13 de julio! No otorga ningún beneficio.", + "armorSpecialGaymerxNotes": "In celebration of the GaymerX Conference, this special armor is decorated with a radiant, colorful rainbow pattern! GaymerX is a game convention celebrating LGTBQ and gaming and is open to everyone.", "armorSpecialSpringRogueText": "Traje de gato elegante", "armorSpecialSpringRogueNotes": "Impecablemente limpio. Incrementa la Percepción por <%= per %>. Equipamiento de edición limitada de primavera 2014.", "armorSpecialSpringWarriorText": "Armadura trébol de acero", @@ -309,6 +313,8 @@ "armorMystery201508Notes": "Run fast as a flash in the fluffy Cheetah Costume! Confers no benefit. August 2015 Subscriber Item.", "armorMystery201509Text": "Disfraz de Hombre Lobo", "armorMystery201509Notes": "Este es un disfraz, vale? No otorga ningún beneficio. Artículo de suscriptor Septiembre de 2015.", + "armorMystery201511Text": "Wooden Armor", + "armorMystery201511Notes": "Considering this armor was carved directly from a magical log, it's surprisingly comfortable. Confers no benefit. November 2015 Subscriber Item.", "armorMystery301404Text": "Traje steampunk", "armorMystery301404Notes": "¡Sofisticado y elegante, oh no! No otorga ningún beneficio. Artículo de suscriptor de febrero 3015.", "armorArmoireLunarArmorText": "Armadura Lunar Tranquilizadora", @@ -327,6 +333,8 @@ "armorArmoireShepherdRobesNotes": "The fabric is cool and breathable, perfect for a hot day herding gryphons in the desert. Increases Strength and Perception by <%= attrs %> each. Enchanted Armoire: Shepherd Set (Item 2 of 3).", "armorArmoireRoyalRobesText": "Túnica Real", "armorArmoireRoyalRobesNotes": "Wonderful ruler, rule all day long! Increases Constitution, Intelligence, and Perception by <%= attrs %> each. Enchanted Armoire: Royal Set (Item 3 of 3).", + "armorArmoireCrystalCrescentRobesText": "Crystal Crescent Robes", + "armorArmoireCrystalCrescentRobesNotes": "These magical robes are luminescent at night. Increases Constitution and Perception by <%= attrs %> each. Enchanted Armoire: Crystal Crescent Set (Item 2 of 3).", "headgear": "protector de cabeza", "headBase0Text": "Sin yelmo", "headBase0Notes": "Sin protector de cabeza.", @@ -447,7 +455,7 @@ "headSpecialFall2015HealerText": "Sombrero de Sapo", "headSpecialFall2015HealerNotes": "This is an extremely serious hat that is worthy of only the most advanced potioners. Increases Intelligence by <%= int %>. Limited Edition 2015 Autumn Gear.", "headSpecialGaymerxText": "Yelmo de guerrero arco iris", - "headSpecialGaymerxNotes": "Con motivo de la celebración de la temporada del orgullo y GaymerX, este casco especial está decorado con un radiante y colorido estampado de arco iris. GaymerX es una convención de juegos que celebra LGBTQ y los video juegos y está abierta para todos. ¡Tiene lugar en el InterContinental en el centro de San Francisco del 11-13 de julio! No otorga ningún beneficio.", + "headSpecialGaymerxNotes": "In celebration of the GaymerX Conference, this special helmet is decorated with a radiant, colorful rainbow pattern! GaymerX is a game convention celebrating LGTBQ and gaming and is open to everyone.", "headMystery201402Text": "Yelmo alado", "headMystery201402Notes": "¡Esta diadema alada imbuye a quien la usa con la velocidad del viento! No otorga ningún beneficio. Artículo de suscriptor de febrero 2014.", "headMystery201405Text": "Llama de la mente", @@ -470,6 +478,8 @@ "headMystery201508Notes": "This cozy cheetah hat is very fuzzy! Confers no benefit. August 2015 Subscriber Item.", "headMystery201509Text": "Máscara de Hombre Lobo", "headMystery201509Notes": "Esta es una mascara, vale? No otorga ningún beneficio. Artículo de suscriptor Septiembre de 2015.", + "headMystery201511Text": "Log Crown", + "headMystery201511Notes": "Count the number of rings to learn how old this crown is. Confers no benefit. November 2015 Subscriber Item.", "headMystery301404Text": "Galera elegante", "headMystery301404Notes": "¡Una galera elegante para los señores más sofisticados! Artículo de Suscriptor de Enero de 3015. No confiere ningún beneficio.", "headMystery301405Text": "Galera básica", @@ -506,6 +516,8 @@ "headArmoireBlueFloppyHatNotes": "Many spells have been sewn into this simple hat, giving it a brilliant blue color. Increases Constitution, Intelligence, and Perception by <%= attrs %> each. Enchanted Armoire: Independent Item.", "headArmoireShepherdHeaddressText": "Tocado de Pastor", "headArmoireShepherdHeaddressNotes": "Sometimes the gryphons that you herd like to chew on this headdress, but it makes you seem more intelligent nonetheless. Increases Intelligence by <%= int %>. Enchanted Armoire: Shepherd Set (Item 3 of 3).", + "headArmoireCrystalCrescentHatText": "Crystal Crescent Hat", + "headArmoireCrystalCrescentHatNotes": "The design on this hat waxes and wanes with the phases of the moon. Increases Intelligence and Perception by <%= attrs %> each. Enchanted Armoire: Crystal Crescent Set (Item 1 of 3).", "offhand": "artículo adicional", "shieldBase0Text": "Sin equipamiento addicional", "shieldBase0Notes": "Sin escudo o arma secundaria.", @@ -572,7 +584,7 @@ "shieldSpecialSpring2015HealerText": "Almohada decorada", "shieldSpecialSpring2015HealerNotes": "Puedes descansar tu cabeza en esta suavealmohada, o puedes luchar con sus temibles garras. ¡Raaawr! Aumenta la Constitución por <%= con %>. Equipamiento de edición limitada de primavera 2015.", "shieldSpecialSummer2015RogueText": "Coral de Fuego", - "shieldSpecialSummer2015RogueNotes": "This relative of fire coral has the ability to propel its venom through the water. Increases Strength by <%= str %>. Limited Edition 2015 Summer Gear.", + "shieldSpecialSummer2015RogueNotes": "Este coral de fuego tiene la habilidad de expulsar veneno a través del agua. Incrementa Fuerza en <%= str %>. ", "shieldSpecialSummer2015WarriorText": "Escudo de Pez Sol", "shieldSpecialSummer2015WarriorNotes": "Crafted of deep-ocean metal by the artisans of Dilatory, this shield shines like the sand and the sea. Increases Constitution by <%= con %>. Limited Edition 2015 Summer Gear.", "shieldSpecialSummer2015HealerText": "Escudo Robusto", diff --git a/common/locales/es_419/limited.json b/common/locales/es_419/limited.json index f126fba212..f48b6917e6 100644 --- a/common/locales/es_419/limited.json +++ b/common/locales/es_419/limited.json @@ -21,6 +21,7 @@ "valentineCardAchievementText": "Aww, tú y tu amigo se deben querer mucho mutuamente! <%= cards %> Cartas de San Valentín enviadas o recibidas.", "polarBear": "Oso polar", "turkey": "Pavo", + "gildedTurkey": "Gilded Turkey", "polarBearPup": "Cachorro de oso polar", "jackolantern": "Calabaza de Halloween", "seasonalShop": "Tienda estacional", diff --git a/common/locales/es_419/noscript.json b/common/locales/es_419/noscript.json index 6057268ef2..1b0c0e224e 100644 --- a/common/locales/es_419/noscript.json +++ b/common/locales/es_419/noscript.json @@ -1,6 +1,6 @@ { - "jsDisabledHeading": "Alas! Your browser doesn't have JavaScript enabled", - "jsDisabledHeadingFull": "Alas! Your browser doesn't have JavaScript enabled and without it, Habitica can't work properly", - "jsDisabledText": "Habitica can't properly display the site without it!", - "jsDisabledLink": "Please enable JavaScript to continue!" + "jsDisabledHeading": "¡Alas! Tu navegador no Tiene JavaScript Activado.", + "jsDisabledHeadingFull": "¡Alas! Tu navegador no Tiene JavaScript activado y sin él, Habitica no puede funcionar adecuadamente.", + "jsDisabledText": "¡Habitica no puede mostrar su contenido sin él!", + "jsDisabledLink": "¡Por favor activa JavaScript para continuar!" } \ No newline at end of file diff --git a/common/locales/es_419/quests.json b/common/locales/es_419/quests.json index 78014c5517..19ddebfb33 100644 --- a/common/locales/es_419/quests.json +++ b/common/locales/es_419/quests.json @@ -13,7 +13,7 @@ "youReceived": "Has recibido", "dropQuestCongrats": "Felicitaciones por ganar este pergamino de misión! Puedes invitar a tu grupo para empezar la misión ahora mismo o vuelve en cualquier momento en tu Inventario > Misiones.", "questSend": "Cliqueando en \"Invitar\" enviara una invitación a los miembros de tu grupo. Cuando todos los miembros hayan aceptado o negado, la misión comenzara. Mira el progreso en Social > Grupo", - "questSendBroken": "Clicking \"Invite\" will send an invitation to your party members... When all members have accepted or denied, the quest begins... See status under Social > Party...", + "questSendBroken": "Cliqueando en \"Invitar\" enviará una invitación a los miembros de tu grupo. Cuando todos los miembros hayan aceptado o negado, la misión comenzará. Mira el progreso en Social > Grupo", "inviteParty": "Invitar grupo a la Misión", "questInvitation": "Invitación a una misión:", "questInvitationTitle": "Invitación a una misión", @@ -25,7 +25,7 @@ "rejected": "Rechazado", "pending": "Pendiente", "questStart": "La misión comienza cuando todos los participantes la hayan aceptado o rechazado. Sólo aquellos que hayan hecho clic en \"aceptar\" podrán participar en la misión y recibir el botín. Si los participantes tardan demasiado (o están inactivos) el organizador de la misión puede comenzarla sin ellos haciendo clic en \"Iniciar\". El organizador también puede cancelar la misión y recuperar el pergamino de misión haciendo clic en \"Cancelar\".", - "questStartBroken": "Once all members have either accepted or rejected, the quest begins... Only those that clicked \"accept\" will be able to participate in the quest and receive the drops... If members are pending too long (inactive?), the quest owner can start the quest without them by clicking \"Begin\"... The quest owner can also cancel the quest and regain the quest scroll by clicking \"Cancel\"...", + "questStartBroken": "La misión comienza cuando todos los participantes la hayan aceptado o rechazado. Sólo aquellos que hayan hecho clic en \"aceptar\" podrán participar en la misión y recibir el botín. Si los participantes tardan demasiado (o están inactivos) el organizador de la misión puede comenzarla sin ellos haciendo clic en \"Iniciar\". El organizador también puede cancelar la misión y recuperar el pergamino de misión haciendo clic en \"Cancelar\".", "begin": "Iniciar", "bossHP": "Vida del Jefe", "bossStrength": "Fuerza del Jefe", @@ -36,13 +36,13 @@ "itemsToCollect": "Items por Recolectar", "bossDmg1": "Cada tarea diaria o tarea pendiente completada y cada hábito positivo lastima al Jefe. Dañalo aun mas con las tareas mas rojas o aplástalos brutalmente y hazlos estallar en llamas. El Jefe hará daño a cada participante de la misión por cada tarea diaria que dejes pasar (multiplicado por la fuerza del jefe) en adición al daño regular, ¡así que mantén a tu grupo saludable completando tus tareas diarias! Todo daño hacia y desde el jefe se anota en tu cron (el día de cambio) ", "bossDmg2": "Sólo los participantes lucharán contra el Jefe y se repartirán el botín.", - "bossDmg1Broken": "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)...", + "bossDmg1Broken": "Cada tarea diaria o tarea pendiente completada y cada hábito positivo lastima al Jefe. Dáñalo aun mas con las tareas mas rojas o aplástalos brutalmente y hazlos estallar en llamas. El Jefe hará daño a cada participante de la misión por cada tarea diaria que dejes pasar (multiplicado por la fuerza del jefe) en adición al daño regular, ¡así que mantén a tu grupo saludable completando tus tareas diarias! Todo daño hacia y desde el jefe se anota en tu cron (el día de cambio) ", "bossDmg2Broken": "Solo los participantes pelearán contra el Jefe y compartirán el botín de la misión...", "tavernBossInfo": "Complete Dailies and To-Dos and score positive Habits to damage the World Boss! Incomplete Dailies fill the Exhaust Strike Bar. When the Exhaust 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 not resting in the Inn will have their tasks tallied.", - "tavernBossInfoBroken": "Complete Dailies and To-Dos and score positive Habits to damage the World Boss... Incomplete Dailies fill the Exhaust Strike Bar... When the Exhaust 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 not resting in the Inn will have their tasks tallied...", + "tavernBossInfoBroken": "¡Completa Diarias y Pendientes para dañar al Jefe Mundial! Las Diarias incompletas llenan la barra de Ataque Consumidor. Cuando la barra de Ataque Consumidor se llene, el Jefe Mundial atacará a un PNJ. Un Jefe Mundial nunca dañará a jugadores o cuentas individuales de ninguna forma. Sólo las cuentas activas que no estén descansando en la Posada tendrán sus tareas bajo conteo.", "bossColl1": "Para coleccionar artículos, haga tus tareas positivas. Objetos de misiones se ganan como objetos normales; sin embargo, no verá estos artículos hasta el próximo día cuando todo que encontró estará sumado y contribuido al total.", "bossColl2": "Solo los participantes pueden coleccionar artículos y compartir del botín de la misión.", - "bossColl1Broken": "To collect items, do your positive tasks... Quest items drop just like normal items; however, you won't see the drops until the next day, then everything you've found will be tallied up and contributed to the pile...", + "bossColl1Broken": "Para obtener items realice tus tareas positivas. Items de misiones se hallaran al completar las tareas, aunque no los verás hasta el día siguiente, allí entonces verás todo lo que encontraste en el día acumulado.", "bossColl2Broken": "Solo los participantes pueden recolectar items y compartir el botín de la misión...", "abort": "Abortar", "leaveQuest": "Abandonar misión", @@ -77,6 +77,6 @@ "startQuest": "Iniciar Misión", "whichQuestStart": "¿Cuál misión quieres empezar?", "getMoreQuests": "Obtén más misiones", - "unlockedAQuest": "You unlocked a quest!", - "leveledUpReceivedQuest": "You leveled up to Level <%= level %> and received a quest scroll!" + "unlockedAQuest": "¡Has desbloqueado una misión!", + "leveledUpReceivedQuest": "¡Subiste de nivel a Nivel <%= level %> y has recibido un pergamino de misión!" } \ No newline at end of file diff --git a/common/locales/es_419/settings.json b/common/locales/es_419/settings.json index ff7e65087b..296109552e 100644 --- a/common/locales/es_419/settings.json +++ b/common/locales/es_419/settings.json @@ -143,5 +143,8 @@ "gemCapExtra": "Gema tapa extra:", "mysticHourglasses": "Reloj de arenas místicas:", "paypal": "PayPal", - "amazonPayments": "Amazon Payments" + "amazonPayments": "Amazon Payments", + "timezone": "Time Zone", + "timezoneUTC": "Habitica uses the time zone set on your PC, which is: <%= utc %>", + "timezoneInfo": "If that time zone is wrong, first reload this page using your browser's reload or refresh button to ensure that Habitica has the most recent information. If it is still wrong, adjust the time zone on your PC and then reload this page again.

If you use Habitica on other PCs or mobile devices, the time zone must be the same on them all. If your Dailies have been reseting at the wrong time, repeat this check on all other PCs and on a browser on your mobile devices." } \ No newline at end of file diff --git a/common/locales/es_419/tasks.json b/common/locales/es_419/tasks.json index 75f07a2b1a..2bf2beeae3 100644 --- a/common/locales/es_419/tasks.json +++ b/common/locales/es_419/tasks.json @@ -88,8 +88,7 @@ "fortifyText": "Fortalecer devuelve todas tus tareas a un valor neutral (amarillo), como si las acabaras de añadir, y llena a tope tu salud. Esto es excelente si todas tus tareas rojas están dificultando mucho el juego, o si todas tus tareas azules están haciéndolo muy fácil. Si empezar de cero suena mucho más motivador, ¡gasta las gemas y tómate un respiro!", "sureDelete": "¿Estás seguro de que quieres eliminar esta tarea?", "streakCoins": "¡Bonus de racha!", - "pushTaskToTop": "Enviar tarea al tope", - "pushTaskToBottom": "Enviar tarea al fondo", + "pushTaskToTop": "Push task to top. Hold ctrl or cmd to push to bottom.", "emptyTask": "Primero escribe el título de la tarea.", "dailiesRestingInInn": "¡Estás descansando en la Posada! Tus Diarias no te harán daño esta noche, pero continuarán reiniciándose cada día. Si te encuentras una misión, no harás daño/coleccionarás objetos hasta que hayas salido de la Posada, pero sí recibirás daño de un Jefe si tus compañeros no completan sus Diarias.", "habitHelp1": "Buenos Hábitos son tareas que haces seguido. Te recompenzan con Oro y Experiencia cada vez que pulsas el <%= plusIcon %>.", diff --git a/common/locales/fr/backgrounds.json b/common/locales/fr/backgrounds.json index f904a6dc16..a341c2bc10 100644 --- a/common/locales/fr/backgrounds.json +++ b/common/locales/fr/backgrounds.json @@ -119,11 +119,18 @@ "backgroundSlimySwampNotes": "Échinez-vous à traverser un Marais Visqueux", "backgroundSwarmingDarknessText": "Ténèbres Grouillantes", "backgroundSwarmingDarknessNotes": "Frissonnez dans les Ténèbres Grouillantes", - "backgrounds112015": "Ensemble 18: Sortie en novembre 2015", + "backgrounds112015": "Ensemble 18: Sorti en novembre 2015", "backgroundFloatingIslandsText": "Les Îles Flottantes", "backgroundFloatingIslandsNotes": "Parcourez les Îles Flottantes.", "backgroundNightDunesText": "Les Dunes Nocturnes", "backgroundNightDunesNotes": "Promenez-vous tranquillement dans les Dunes Nocturnes.", "backgroundSunsetOasisText": "L'Oasis du Coucher de Soleil", - "backgroundSunsetOasisNotes": "Prélassez-vous à l'Oasis du Coucher de Soleil." + "backgroundSunsetOasisNotes": "Prélassez-vous à l'Oasis du Coucher de Soleil.", + "backgrounds122015": "SET 19: Released December 2015", + "backgroundAlpineSlopesText": "Alpine Slopes", + "backgroundAlpineSlopesNotes": "Ski on the Alpine Slopes.", + "backgroundSnowySunriseText": "Snowy Sunrise", + "backgroundSnowySunriseNotes": "Gaze at the Snowy Sunrise.", + "backgroundWinterTownText": "Winter Town", + "backgroundWinterTownNotes": "Bustle through a Winter Town." } \ No newline at end of file diff --git a/common/locales/fr/character.json b/common/locales/fr/character.json index 1d8c276133..e085fc8f3a 100644 --- a/common/locales/fr/character.json +++ b/common/locales/fr/character.json @@ -66,8 +66,8 @@ "level": "Niveau", "levelUp": "Montée de niveau !", "gainedLevel": "Vous avez passé un niveau !", - "leveledUp": "En atteignant vos buts dans la vie réelle, vous êtes arrivé au niveau<%= level %> !.", - "fullyHealed": "Vous avez été complètement guéri !", + "leveledUp": "En atteignant vos buts dans la vie réelle, vous êtes parvenu au niveau <%= level %> !", + "fullyHealed": "Vous avez été complètement guéri(e) !", "huzzah": "Bravo !", "mana": "Mana", "hp": "Vie", diff --git a/common/locales/fr/content.json b/common/locales/fr/content.json index 71919b718c..b3e7d1d083 100644 --- a/common/locales/fr/content.json +++ b/common/locales/fr/content.json @@ -97,7 +97,7 @@ "questEggHorseAdjective": "un galopant", "questEggFrogText": "Grenouille", "questEggFrogMountText": "Grenouille", - "questEggFrogAdjective": "un princier", + "questEggFrogAdjective": "une princière", "questEggSnakeText": "Serpent", "questEggSnakeMountText": "Serpent", "questEggSnakeAdjective": "un rampant", diff --git a/common/locales/fr/faq.json b/common/locales/fr/faq.json index 0cff1b8c61..21b9f8f34d 100644 --- a/common/locales/fr/faq.json +++ b/common/locales/fr/faq.json @@ -2,7 +2,7 @@ "frequentlyAskedQuestions": "Questions Fréquentes", "faqQuestion0": "Je suis perdu. Où puis-je trouver un résumé ?", "iosFaqAnswer0": "D'abord, vous allez définir les tâches que vous voulez réaliser dans votre vie quotidienne. Puis, au fur et à mesure que vous compléterez vos tâches au jour le jour et que vous les validerez sur le site, vous gagnerez de l'expérience et de l'or. L'or est utilisé pour acheter de l'équipement et certains objets, ainsi que les récompenses personnalisées. L'expérience va permettre à votre personnage de monter en niveau et de débloquer du contenu comme les Familiers, les Compétences, et les Quêtes ! Vous pouvez personnaliser votre personnage dans le Menu > Personnaliser l'Avatar.\n\nQuelques interactions basiques : Cliquez le (+) dans le coin en haut à droite pour ajouter une nouvelle tâche. Tapez une tache existante pour la modifier, et glissez une tâche vers la gauche pour la supprimer. Vous pouvez trier les tâches en utilisant les Étiquettes dans le coin en haut à gauche, et agrandir ou réduire les listes de vérification en cliquant sur la bulle de liste de vérification.", - "webFaqAnswer0": "D'abord, vous allez définir les tâches que vous voulez réaliser dans votre vie quotidienne. Puis, au fur et à mesure que vous compléterez vos tâches au jour le jour et que vous les validerez sur le site, vous gagnerez de l'expérience et de l'or. L'or est utilisé pour acheter de l'équipement et certains objets, ainsi que les récompenses personnalisées. L'expérience va permettre à votre personnage de monter en niveau et de débloquer du contenu comme les Familiers, les Compétences, et les Quêtes ! Pour plus de détail, le wiki dispose d'un excellent résumé pas-à-pas du jeu [juste ici](http://habitica.wikia.com/wiki/Habitica_Wiki).", + "webFaqAnswer0": "First, you'll set up tasks that you want to do in your everyday life. Then, as you complete the tasks in real life and check them off, you'll earn Experience and Gold. Gold is used to buy equipment and some items, as well as custom rewards. Experience causes your character to level up and unlock content such as pets, skills, and quests! For more detail, check out a step-by-step overview of the game at [Help -> Overview for New Users](https://habitica.com/static/overview).", "faqQuestion1": "Comment est-ce que je créé mes tâches ?", "iosFaqAnswer1": "Les bonnes Habitudes (celles avec un +) sont les tâches que vous pouvez réaliser plusieurs fois par jour, comme manger des légumes. Les mauvaises Habitudes (celles avec un -) sont les tâches que vous devez éviter, comme vous ronger les ongles. Les Habitudes avec un + et un - ont un bon côté et un mauvais côté, comme prendre l'escalier / prendre l'ascenseur. Les bonnes Habitudes vous récompensent avec de l'expérience et de l'or. Les mauvaises habitudes vous font perdre de la Santé.\n\nLes tâches Quotidiennes sont des tâches que vous devez réaliser chaque jour, comme vous brosser les dents ou vérifier vos courriels. Vous pouvez ajuster les jours où une Quotidienne doit être réalisée en la modifiant. Si vous ratez une Quotidienne qui doit être réalisée, votre avatar subira des dégâts pendant la nuit. Faites attentions à ne pas ajouter trop de Quotidiennes à la fois !\n\nLes tâches À Faire sont votre liste de tâches et de projets. Compléter une tâche À Faire vous récompensera avec de l'or et de l'expérience. Vous ne perdrez jamais de Santé avec les tâches À Faire. Vous pouvez ajouter une date d'échéance à une tâche À Faire en la modifiant.", "webFaqAnswer1": "Les bonnes Habitudes (celles avec un ) sont les tâches que vous pouvez réaliser plusieurs fois par jour, comme manger des légumes. Les mauvaises Habitudes (celles avec un ) sont les tâches que vous devez éviter, comme vous ronger les ongles. Les Habitudes avec un et un ont un bon côté et un mauvais côté, comme prendre l'escalier / prendre l'ascenseur. Les bonnes Habitudes vous récompensent avec de l'expérience et de l'or. Les mauvaises habitudes vous font perdre de la Santé.\n

\nLes tâches Quotidiennes sont des tâches que vous devez réaliser chaque jour, comme vous brosser les dents ou vérifier vos courriels. Vous pouvez ajuster les jours où une Quotidienne doit être réalisée en cliquant sur le crayon pour la modifier. Si vous ratez une Quotidienne qui doit être réalisée, votre avatar subira des dégâts pendant la nuit. Faites attentions à ne pas ajouter trop de Quotidiennes à la fois !\n

\nLes tâches À Faire sont votre liste de tâches et de projets. Compléter une tâche À Faire vous récompensera avec de l'or et de l'expérience. Vous ne perdrez jamais de Santé avec les tâches À Faire. Vous pouvez ajouter une date d'échéance à une tâche À Faire en cliquant sur le crayon pour la modifier.", @@ -16,7 +16,7 @@ "iosFaqAnswer4": "Il y a plusieurs choses qui peuvent vous causer des dégâts. D'abord, si vous laissez de tâches Quotidiennes incomplètes pendant la nuit, elles vous causeront des dégâts. Ensuite, si vous réalisez une mauvaise Habitude, elle vous causera des dégâts. Enfin, si vous et votre Équipe affrontez un Boss, et qu'un de vos compagnons n'a pas réalisé toutes ses tâches Quotidiennes, Le Boss vous attaquera.\n\nLa meilleure façon de guérir est de gagner un niveau, qui vous rendra toute votre santé. Vous pouvez aussi acheter une Potion de Santé avec de l'or à partir de la colonne Récompenses. En plus, au delà du niveau 10, vous pouvez choisir de devenir un Guérisseur, et vous pourrez apprendre les compétences de guérison. Si vous êtes en Équipe avec un Guérisseur, il peut aussi vous guérir.", "webFaqAnswer4": "Il y a plusieurs choses qui peuvent vous causer des dégâts. D'abord, si vous laissez de tâches Quotidiennes incomplètes pendant la nuit, elles vous causeront des dégâts. Ensuite, si vous réalisez une mauvaise Habitude, elle vous causera des dégâts. Enfin, si vous et votre Équipe affrontez un Boss, et qu'un de vos compagnons n'a pas réalisé toutes ses tâches quotidiennes, Le Boss vous attaquera.\n

\nLa meilleure façon de guérir est de gagner un niveau, qui vous rendra toute votre santé. Vous pouvez aussi acheter une Potion de Santé avec de l'or à partir de la colonne Récompenses. En plus, au delà du niveau 10, vous pouvez choisir de devenir un Guérisseur, et vous pourrez apprendre les compétences de guérison. Si vous êtes en Équipe (dans Social > Équipe) avec un Guérisseur, il peut aussi vous guérir.", "faqQuestion5": "Comment jouer à Habitica avec mes amis ?", - "iosFaqAnswer5": "Le meilleur moyen est de les inviter dans une Équipe avec vous. Les Équipes peuvent partir en quêtes, combattre des monstres, et utiliser leurs compétences pour s’entraider. Si vous n'avez pas encore d'Équipe, allez dans Menu > Équipe et cliquez sur « Créer une nouvelle Équipe », puis cliquez sur la liste de membres et finalement cliquez sur Inviter dans le coin supérieur droit pour inviter vos amis en inscrivant leur ID d'utilisateur (une chaîne de nombres et de lettres que vous pouvez trouver sous Paramètres > Détails du compte, dans l'application, ou sous Paramètres > API sur le site Web). Sur le site Web, vous pouvez également inviter des amis par courriel. Cette option sera rajouté à l'application à une mise à mise ultérieure.\n\nSur le site Web, vous et vos amis pouvez aussi rejoindre des Guildes, qui sont des salons de discussion publics. Les Guildes seront ajoutés à cette application dans une mise à jour ultérieure !", + "iosFaqAnswer5": "Le meilleur moyen est de les inviter dans une Équipe avec vous. Les Équipes peuvent partir en quêtes, combattre des monstres et lancer des sorts pour s’entraider. Si vous n'avez pas encore d'Équipe, allez dans Social > Équipe et cliquez sur « Créer une nouvelle Équipe », puis cliquez sur la liste de membres et finalement cliquez sur Inviter dans le coin supérieur droit pour inviter vos amis en inscrivant leur ID d'utilisateur (une chaîne de nombres et de lettres que vous pouvez trouver sous Paramètres > Détails du compte, dans l'application, ou sous Paramètres > API sur le site Web). Sur le site Web, vous pouvez également inviter des amis par courriel. Cette option sera ajoutée à l'application lors d'une mise à jour ultérieure.\n\nSur le site Web, vos amis et vous pouvez aussi rejoindre des Guildes, qui sont des salons de discussion publics. Les Guildes seront ajoutés à l'application lors d'une mise à jour ultérieure !", "webFaqAnswer5": "Le meilleur moyen est de les inviter dans une Équipe avec vous, en passant par Social > Équipe ! Les Équipes peuvent partir en quêtes, combattre des monstres, et utiliser leurs compétences pour s'entraider. Vous et vos amis pouvez aussi rejoindre des Guildes (Social > Guildes), qui sont des salons de discussion sur un intérêt partagé ou à la poursuite d'un même but, et peuvent être publiques ou privées. Vous pouvez joindre autant de guildes que vous voulez, mais seulement une équipe.\n

\nPour des informations plus précises, lisez sur le wiki les pages à propos des [Équipes](http://habitrpg.wikia.com/wiki/Party) et des [Guildes](http://habitrpg.wikia.com/wiki/Guilds).", "faqQuestion6": "Comment obtenir des Familiers ou des Montures ?", "iosFaqAnswer6": "A partir du niveau 3, vous débloquerez le Système de Butin. Chaque fois que vous réaliserez une tâche, vous aurez une chance aléatoire de recevoir un œuf, une potion d'éclosion, ou un morceau de nourriture. Ils seront stockés dans Menu > Objets.\n\nPour faire éclore un Familier, vous aurez besoin d'un œuf et d'une potion d'éclosion. Sélectionnez l’œuf pour déterminer l'espèce que vous voulez faire éclore, et choisissez \"Faire éclore l'Œuf.\" Puis choisissez la potion d'éclosion pour déterminer sa couleur ! Allez dans Menu > Familiers pour équiper votre nouveau Familier en cliquant dessus.\n\nVous pouvez aussi faire grandir vos Familiers en Montures en les nourrissant dans Menu > Familiers, et en sélectionnant \"Nourrir le Familier\" ! Vous devrez nourrir un familier plusieurs fois avant qu'il ne devienne une Monture, mais si vous devinez sa nourriture préférée, il grandira plus vite. Faites des essais, ou [lisez les spoilers ici](http://habitica.wikia.com/wiki/Food#Food_Preferences). Une fois que vous avez obtenu une monture, allez dans Menu > Montures et sélectionnez la pour l'équiper.\n\nVous pouvez aussi gagner des œufs pour les Quêtes de Familiers en accomplissant certaines Quêtes. (Voir ci-dessous pour en apprendre plus sur les Quêtes.)", @@ -28,7 +28,7 @@ "iosFaqAnswer8": "Cette barre bleue qui apparaît lorsque vous atteignez le niveau 10 et choisissez une Classe est votre barre de Mana. En gagnant des niveaux supplémentaires, vous débloquerez des Compétences spéciales qui coûtent du Mana. Chaque Classe a des Compétences différentes, qui apparaissent après le niveau 11 dans Menu > Utiliser les Compétences. Contrairement à votre barre de vie, votre barre de Mana ne se réinitialise pas quand vous gagnez un niveau. A la place, du Mana est récupéré lorsque vous réalisez une Bonne Habitude, une Quotidienne ou une tâche À Faire, et du Mana est perdu quand vous succombez à une Mauvaise Habitude. Vous regagnerez aussi du Mana pendant la nuit -- Plus vous aurez complété de Quotidiennes, plus vous en regagnerez.", "webFaqAnswer8": "Cette barre bleue qui apparaît lorsque vous atteignez le niveau 10 et choisissez une Classe est votre barre de Mana. En gagnant des niveaux supplémentaires, vous débloquerez des Compétences spéciales qui coûtent du Mana. Chaque Classe a des Compétences différentes, qui apparaissent après le niveau 11 dans la colonne Récompenses. Contrairement à votre barre de vie, votre barre de Mana ne se réinitialise pas quand vous gagnez un niveau. A la place, du Mana est récupéré lorsque vous réalisez une Bonne Habitude, une Quotidienne ou une tâche À Faire, et du Mana est perdu quand vous succombez à une Mauvaise Habitude. Vous regagnerez aussi du Mana pendant la nuit -- Plus vous aurez complété de Quotidiennes, plus vous en regagnerez.", "faqQuestion9": "Comment combattre des monstres et partir en Quête ?", - "iosFaqAnswer9": "Il vous faudra tout d'abord rejoindre une Équipe (Social > Équipe). Bien que vous puissiez combattre des monstres en solo, nous vous recommandons de jouer en groupe ; vos Quêtes n'en seront que plus faciles. Il est aussi très motivant d'avoir des amis à vos côtés pour vous encourager à finir toutes vos tâches !

Vous aurez ensuite besoin d'un Parchemin de Quête, que vous retrouverez dans Inventaire > Quêtes. Il y a trois façons d'obtenir un parchemin :

- Au niveau 15, vous recevrez une série de Quêtes, c'est-à-dire trois quêtes liées. D'autres séries seront débloquées aux niveau 30, 40 et 60.
- Quand vous invitez des membres à rejoindre votre équipe, vous serez récompensé(e) avec le parchemin du Basi-list !
- Vous pouvez acheter des Quêtes depuis la page Quêtes de votre inventaire [Inventaire > Quêtes](https://habitica.com/#/options/inventory/quests) pour de l'Or et des Gemmes.

Pour combattre un Boss ou réunir des objets lors d'une quête de collection, complétez simplement vos tâches comme vous le faites d'habitude, et elles seront automatiquement converties en dégâts pendant la nuit. (Il vous faudra peut-être recharger la page pour voir descendre la barre de vie du Boss). Si vous combattez un Boss et ratez une de vos tâches Quotidiennes, le Boss infligera des dégâts à votre équipe au moment où vous l'attaquerez.

Après le niveau 11, les Mages et les Guerriers gagnent des compétences leur permettant d'infliger des dégâts additionnels au Boss. Ce sont donc les deux classes à privilégier au niveau 10 si vous souhaitez gagner en force de frappe.", + "iosFaqAnswer9": "Il vous faudra tout d'abord rejoindre une Équipe (Social > Équipe). Bien que vous puissiez combattre des monstres en solo, nous vous recommandons de jouer en groupe ; vos Quêtes n'en seront que plus faciles. Il est aussi très motivant d'avoir des amis à vos côtés pour vous encourager à accomplir toutes vos tâches ! \n\n Vous aurez ensuite besoin d'un Parchemin de Quête, que vous retrouverez dans Inventaire > Quêtes. Il y a trois façons d'obtenir un parchemin : \n- Au niveau 15, vous recevrez une série de Quêtes, c'est-à-dire trois quêtes liées. D'autres séries seront débloquées aux niveaux 30, 40 et 60. \n- Quand vous invitez des membres à rejoindre votre équipe, vous serez récompensé(e) avec le parchemin du Basi-list !\n - Vous pouvez acheter des Quêtes depuis la page Quêtes de votre inventaire [Inventaire > Quêtes](https://habitica.com/#/options/inventory/quests) pour de l'Or et des Gemmes. (Ces fonctionnalités seront ajoutées à l'application lors d'une mise à jour ultérieure.) \n\nPour combattre un Boss ou réunir des objets lors d'une quête de collection, accomplissez simplement vos tâches comme vous le faites d'habitude, et elles seront automatiquement converties en dégâts pendant la nuit. (Il vous faudra peut-être recharger la page pour voir descendre la barre de vie du Boss.) Si vous combattez un Boss et ratez une de vos tâches Quotidiennes, le Boss infligera des dégâts à votre équipe au moment où vous l'attaquerez. \n\nAprès le niveau 11, les Mages et les Guerriers gagnent des compétences leur permettant d'infliger des dégâts additionnels au Boss. Ce sont donc les deux classes à privilégier au niveau 10 si vous souhaitez gagner en force de frappe.", "webFaqAnswer9": "D'abord, vous devez rejoindre une Équipe (dans Social > Équipe). Bien que vous puissiez combattre des monstres seul, nous recommandons de jouer dans un groupe car cela rendra vos Quêtes plus facile. En plus, avoir des amis qui vous encouragent à accomplir vos tâches est très motivant !\n

\nEnsuite, vous avez besoin d'un Parchemin de Quête, qui sont stockés dans Inventaire > Quêtes. Il y a trois façons d'obtenir un parchemin :\n

\n* Quand vous invitez des membres dans votre équipe, vous serez récompensés avec le parchemin du Basi-list !\n* Au niveau 15, vous recevrez une série de Quêtes, c'est à dire trois quêtes liées. D'autres séries seront débloquées aux niveau 30, 40 et 60.\n* Vous pouvez acheter des Quêtes depuis la page Quêtes (Inventaire > Quêtes) pour de l'Or et des Gemmes.\n

\nPour combattre un Boss ou réunir des objets pour une quête de collection, réalisez simplement vos tâches normalement, et elle seront transformées en dégâts pendant la nuit. (Recharger peut être nécessaire pour voir la barre de vie du Boss descendre). Si vous combattez un Boss et ratez une de vos tâches Quotidiennes, le Boss infligera des dégâts à votre équipe au moment où vous lui infligerez des dégâts.\n

\nAprès le niveau 11, les Mages et les Guerriers gagneront des compétences qui leurs permettent d'infliger des dégâts additionnels au Boss, en faisant ainsi d'excellentes classes après le niveau 10 si vous souhaitez taper dur.", "faqQuestion10": "Que sont les Gemmes, et comment puis-je en obtenir ?", "iosFaqAnswer10": "Les Gemmes sont achetées avec de l'argent en sélectionnant l'icône de gemme dans l'en-tête. Lorsque des gens achètent des gemmes, ils nous aident à maintenir le site. Nous les remercions pour leur soutien ! En plus d'acheter des gemmes directement, il y a trois façons pour les joueurs de gagner des gemmes : * Gagnez un Défi sur le [site](https://habitica.com) qui a été ouvert par un autre joueur dans Social > Défis. (Nous ajouterons cette fonctionnalité dans l'application dans une mise à jour ultérieure !) * Abonnez-vous sur le [site](https://habitica.com/#/options/settings/subscription) et débloquez la capacité d'acheter un certain nombre de gemmes par mois. * Contribuez au projet Habitica avec vos compétences. Lisez cette page du Wiki pour plus de détails : [Contribuer à Habitica](http://habitica.wikia.com/wiki/Contributing_to_Habitica). Gardez à l'esprit que les objets achetés avec des gemmes n'offrent aucun avantage statistique, donc les joueurs peuvent très bien utiliser l'application sans elles !", diff --git a/common/locales/fr/front.json b/common/locales/fr/front.json index b64cb1159e..07af9314d0 100644 --- a/common/locales/fr/front.json +++ b/common/locales/fr/front.json @@ -181,7 +181,7 @@ "marketingInquiries": "Demandes pour le marketing/les réseaux sociaux", "tweet": "Tweet", "apps": "Applications", - "notifyAndroidApp": "Vous voulez savoir quand l'application Android sera prête ? Inscrivez-vous à la mailing list !", + "notifyAndroidApp": "Vous voulez savoir quand l'application Android sera prête ? Inscrivez-vous à la liste de diffusion !", "checkOutIOSApp": "Découvrez notre nouvelle application iOS !", "imagine1": "Imaginez si progresser dans votre vie était aussi amusant que de jouer.", "landingCopy1": "Progressez dans le jeu en effectuant vos tâches réelles. ", diff --git a/common/locales/fr/gear.json b/common/locales/fr/gear.json index 9db185bdfb..3f0c0140f3 100644 --- a/common/locales/fr/gear.json +++ b/common/locales/fr/gear.json @@ -149,15 +149,19 @@ "weaponArmoireRancherLassoText": "Lasso d'Éleveur", "weaponArmoireRancherLassoNotes": "Les lassos : l'outil idéal pour rassembler et maîtriser vos animaux. Augmente la Force de <%= str %> points, la Perception de <%= per %> points et l'Intelligence de <%= int %> points. Armoire Enchantée : Ensemble d'Éleveur (Objet 3 sur 3).", "weaponArmoireMythmakerSwordText": "Epée Mythologique", - "weaponArmoireMythmakerSwordNotes": "Bien qu'elle ait l'air humble, cette épée a accompagné de nombreux héros mythiques. Augmente la Perception et la Force de <%= attrs %> chacun. Armoire Enchantée : Ensemble de la Toge Dorée (Objet 3 sur 3).", + "weaponArmoireMythmakerSwordNotes": "Though it may seem humble, this sword has made many mythic heroes. Increases Perception and Strength by <%= attrs %> each. Enchanted Armoire: Golden Toga Set (Item 3 of 3).", "weaponArmoireIronCrookText": "Crochet de fer", - "weaponArmoireIronCrookNotes": "Férocement forgé dans le fer, ce crochet en fer est bon pour garder les moutons. Augmente la Perception et la Force de <%= attrs %> chacun. Armoire Enchantée : Ensemble des Cornes de Fer (Objet 3 de 3).", + "weaponArmoireIronCrookNotes": "Fiercely hammered from iron, this iron crook is good at herding sheep. Increases Perception and Strength by <%= attrs %> each. Enchanted Armoire: Horned Iron Set (Item 3 of 3).", "weaponArmoireGoldWingStaffText": "Bâton aux Ailes d'Or", "weaponArmoireGoldWingStaffNotes": "Les ailes de ce bâton s'agitent et se tordent en permanence. Augmente tous les attributs de <%= attrs %> chacun. Armoire Enchantée : Objet indépendant.", "weaponArmoireBatWandText": "Baguette Chauve-souris", "weaponArmoireBatWandNotes": "Cette baguette peut transformer n'importe quelle tâche en chauve-souris! Agitez-la dans tous les sens et regardez-les s'envoler. Augmente l'Intelligence de <%= int %> points et la Perception de <%= per %> points. Armoire Enchantée: Objet indépendant.", "weaponArmoireShepherdsCrookText": "Houlette de Berger", "weaponArmoireShepherdsCrookNotes": "Utile pour rassembler les griffons. Augmente la Constitution de <%= con %>. Armoire Enchantée : Ensemble du Berger (Objet 1 sur 3).", + "weaponArmoireCrystalCrescentStaffText": "Crystal Crescent Staff", + "weaponArmoireCrystalCrescentStaffNotes": "Summon the power of the crescent moon with this shining staff! Increases Intelligence and Strength by <%= attrs %> each. Enchanted Armoire: Crystal Crescent Set (Item 3 of 3).", + "weaponArmoireBlueLongbowText": "Blue Longbow", + "weaponArmoireBlueLongbowNotes": "Ready... Aim... Fire! This bow has great range. Increases Perception by 9, Constitution by 8, and Strength by 7. Enchanted Armoire: Independent Item.", "armor": "armure", "armorBase0Text": "Habit simple", "armorBase0Notes": "Un vêtement ordinaire. N'apporte aucun avantage.", @@ -222,7 +226,7 @@ "armorSpecialBirthday2015Text": "Robes de Fête Ridicules", "armorSpecialBirthday2015Notes": "Joyeux Anniversaire Habitica ! Portez ces Robes de Fête Ridicules pour célébrer cette journée magnifique ! N'apporte aucun bonus.", "armorSpecialGaymerxText": "Armure de Guerrier Arc-en-Ciel", - "armorSpecialGaymerxNotes": "En l'honneur de la \"Pride season\" et de GaymerX, cette armure spéciale est décorée avec un motif arc-en-ciel aussi radieux que coloré ! GaymerX est une convention célébrant les LGBTQ et les jeux, et est ouverte à tous. Elle se déroule à l'InterContinental dans le centre de San Francisco, du 11 au 13 Juillet ! N'apporte aucun bonus.", + "armorSpecialGaymerxNotes": "In celebration of the GaymerX Conference, this special armor is decorated with a radiant, colorful rainbow pattern! GaymerX is a game convention celebrating LGTBQ and gaming and is open to everyone.", "armorSpecialSpringRogueText": "Costume de Chat Élégant", "armorSpecialSpringRogueNotes": "Soigné à la perfection ! Augmente la Perception de <%= per %> points. Équipement en Édition Limitée du Printemps 2014 !", "armorSpecialSpringWarriorText": "Armure aux Trèfles d'acier", @@ -309,6 +313,8 @@ "armorMystery201508Notes": "Vous serez aussi rapide qu'un guépard dans ce costume tout doux ! N'apporte aucun bonus. Équipement d'Abonné d'août 2015.", "armorMystery201509Text": "Costume de Loup-Garou", "armorMystery201509Notes": "C'est bien un costume, hein? N'apporte aucun bonus. Équipement d'Abonné de Septembre 2015.", + "armorMystery201511Text": "Wooden Armor", + "armorMystery201511Notes": "Considering this armor was carved directly from a magical log, it's surprisingly comfortable. Confers no benefit. November 2015 Subscriber Item.", "armorMystery301404Text": "Tenue Steampunk", "armorMystery301404Notes": "Pimpant et fringuant ! N'apporte aucun bonus. Équipement d'Abonné de Février 3015.", "armorArmoireLunarArmorText": "Armure Lunaire Apaisante", @@ -327,6 +333,8 @@ "armorArmoireShepherdRobesNotes": "Le tissu est léger et aéré, parfait pour une chaude journée passée à rassembler des griffons dans le désert. Augmente la Force et la Perception <%= attrs %> de chacune. Armoire Enchantée : Ensemble du Berger (Objet 2 sur 3)", "armorArmoireRoyalRobesText": "Robe Royale", "armorArmoireRoyalRobesNotes": "Merveilleux souverain, règne du matin au soir ! Augmente la Constitution, l'Intelligence et la Perception de <%= attrs %> chacun. Armoire Enchantée : Ensemble Royal ( Objet 3 sur 3)", + "armorArmoireCrystalCrescentRobesText": "Crystal Crescent Robes", + "armorArmoireCrystalCrescentRobesNotes": "These magical robes are luminescent at night. Increases Constitution and Perception by <%= attrs %> each. Enchanted Armoire: Crystal Crescent Set (Item 2 of 3).", "headgear": "coiffe", "headBase0Text": "Pas de casque", "headBase0Notes": "Pas de couvre-chef.", @@ -447,7 +455,7 @@ "headSpecialFall2015HealerText": "Chapeau de Grenouille", "headSpecialFall2015HealerNotes": "C'est un chapeau extrêmement sérieux, digne seulement de l'un des faiseurs de potions les plus avancés. Augmente l'Intelligence de <%= int %> points. Équipement en Édition Limitée de l'Automne 2015.", "headSpecialGaymerxText": "Heaume de Guerrier Arc-en-Ciel", - "headSpecialGaymerxNotes": "En l'honneur de la \"Pride season\" et de GaymerX, ce casque spécial est décoré avec un motif arc-en-ciel aussi radieux que coloré ! GaymerX est une convention célébrant les LGBTQ et les jeux, et est ouverte à tous. Elle se déroule à l'InterContinental dans le centre de San Francisco, du 11 au 13 Juillet ! N'apporte aucun bonus.", + "headSpecialGaymerxNotes": "In celebration of the GaymerX Conference, this special helmet is decorated with a radiant, colorful rainbow pattern! GaymerX is a game convention celebrating LGTBQ and gaming and is open to everyone.", "headMystery201402Text": "Heaume Ailé", "headMystery201402Notes": "Ce bandeau ailé insuffle la vitesse du vent à son porteur ! N'apporte aucun bonus. Équipement d'Abonné de Février 2014.", "headMystery201405Text": "Flamme de l'Esprit", @@ -470,6 +478,8 @@ "headMystery201508Notes": "Ce confortable chapeau de guépard est vraiment soyeux ! N'apporte aucun bonus. Équipement d'Abonné d'Août 2015.", "headMystery201509Text": "Masque de Loup-Garou", "headMystery201509Notes": "C'est bien un masque, hein? N'apporte aucun bonus. Équipement d'Abonné de Septembre 2015.", + "headMystery201511Text": "Log Crown", + "headMystery201511Notes": "Count the number of rings to learn how old this crown is. Confers no benefit. November 2015 Subscriber Item.", "headMystery301404Text": "Haut-de-forme Fantaisiste", "headMystery301404Notes": "Un couvre-chef fantaisiste pour les gens de bonne famille les plus élégants ! N'apporte aucun bonus. Équipement d'Abonné de Janvier 3015.", "headMystery301405Text": "Haut-de-forme Classique", @@ -506,6 +516,8 @@ "headArmoireBlueFloppyHatNotes": "De nombreux sorts ont été cousus dans ce chapeau simple, lui conférant une couleur bleue brillante. Augmente la Constitution, l'Intelligence et la Perception de <%= attrs %> chacun. Armoire Enchantée : Objet indépendant.", "headArmoireShepherdHeaddressText": "Capuche de Berger", "headArmoireShepherdHeaddressNotes": "Parfois, les griffons que vous gardez s'amusent à mâchonner cette capuche, mais elle vous donne tout de même l'air plus intelligent. Augmente l'Intelligence de <%= int %>. Armoire Enchantée : Ensemble du Berger (Objet 3 sur 3).", + "headArmoireCrystalCrescentHatText": "Crystal Crescent Hat", + "headArmoireCrystalCrescentHatNotes": "The design on this hat waxes and wanes with the phases of the moon. Increases Intelligence and Perception by <%= attrs %> each. Enchanted Armoire: Crystal Crescent Set (Item 1 of 3).", "offhand": "objet de main de bouclier", "shieldBase0Text": "Pas d'Équipement de Main de Bouclier", "shieldBase0Notes": "Pas de bouclier ni de deuxième arme.", @@ -605,7 +617,7 @@ "backMystery201507Text": "Planche de surf excellente", "backMystery201507Notes": "Surfez loin du Quai Assidu et domptez les vagues de la Baie d'Inkomplet ! N'apporte aucun bonus. Équipement d'Abonné de Juillet 2015.", "backMystery201510Text": "Queue de Goblin", - "backMystery201510Notes": "Préhensile et puissante! N'apporte aucun bonus. Équipement d'abonné d'Octobre 2015.", + "backMystery201510Notes": "Préhensile et puissante! N'apporte aucun bonus. Équipement d'Abonné d'Octobre 2015.", "backSpecialWonderconRedText": "Cape de Puissance", "backSpecialWonderconRedNotes": "Bruisse avec force et élégance. N'apporte aucun bonus. Équipement de Convention en Édition Spéciale.", "backSpecialWonderconBlackText": "Cape de Dissimulation", @@ -677,7 +689,7 @@ "headAccessoryMystery201502Text": "Ailes de la Pensée", "headAccessoryMystery201502Notes": "Laissez votre imagination s'envoler ! N'apporte aucun bonus. Équipement d'Abonné de Février 2015.", "headAccessoryMystery201510Text": "Cornes de Goblin", - "headAccessoryMystery201510Notes": "Terrifiantes et un peu visqueuses. N'apportent aucun bonus. Equipement d'abonné d'Octobre 2015.", + "headAccessoryMystery201510Notes": "Terrifiantes et un peu visqueuses. N'apportent aucun bonus. Equipement d'Abonné d'Octobre 2015.", "headAccessoryMystery301405Text": "Lunettes Frontales", "headAccessoryMystery301405Notes": "\"Les lunettes c'est pour les yeux,\" disaient-ils. \"Personne ne voudrait de lunettes qu'on ne peut porter que sur la tête\" disaient-ils. Ha ! Vous leur avez bien montré ! N'apporte aucun bonus. Équipement d'Abonné d'Août 3015.", "eyewear": "Lunettes", diff --git a/common/locales/fr/generic.json b/common/locales/fr/generic.json index 265aa8dc2f..104e01379d 100644 --- a/common/locales/fr/generic.json +++ b/common/locales/fr/generic.json @@ -28,7 +28,7 @@ "market": "Marché", "subscriberItem": "Objet mystère", "newSubscriberItem": "Nouvel Objet Mystère", - "subscriberItemText": "Les Abonnés recevront chaque mois un objet mystère. Celui-ci est généralement dévoilé une semaine avant la fin du mois. Consultez la page \"Mystery Item\" du wiki pour avoir plus d'information.", + "subscriberItemText": "Les Abonnés recevront chaque mois un objet mystère. Celui-ci est généralement dévoilé environ une semaine avant la fin du mois. Consultez la page \"Mystery Item\" du wiki pour avoir plus d'information.", "all": "Tous", "none": "Aucun", "or": "Ou", @@ -69,9 +69,9 @@ "habiticaDayPluralText": "Fêté <%= number %> Jours d'Appellation ! Merci à vous pour être un utilisateur fantastique.", "achievementDilatory": "Sauveur de Dilatoire", "achievementDilatoryText": "A contribué à vaincre le Redoutable Drag'on de Dilatoire au cours du \"Summer Splash Event\" 2014 !", - "costumeContest": "Costume Contestant", - "costumeContestText": "Participated in the Habitoween Costume Contest. See some of the entries on the Habitica blog!", - "costumeContestTextPlural": "Participated in <%= number %> Habitoween Costume Contests. See some of the entries on the Habitica blog!", + "costumeContest": "Compétiteur du Concours de Costumes", + "costumeContestText": "A participé au Concours de Costumes d'Habitoween. Découvrez certaines des participations sur le blog d'Habitica !", + "costumeContestTextPlural": "A Participé à <%= number %> Concours de Costumes d'Habitoween. Découvrez certaines des participations sur le blog d'Habitica !", "memberSince": "- Membre depuis", "lastLoggedIn": "- Dernière connexion", "notPorted": "Cette fonction n'a pas encore été importée depuis le site original.", @@ -142,10 +142,10 @@ "twentyOneDays": "Vous avez effectué votre tâche Quotidienne 21 jours d'affilée !", "dontBreakStreak": "Bien joué ! Continuez à augmenter votre combo !", "dontStop": "N'abandonnez pas !", - "levelUpShare": "J'ai pris un niveau en Habitica en faisant des progrès dans mes habitudes réelles !", + "levelUpShare": "J'ai passé un niveau en Habitica en faisant des progrès dans mes habitudes réelles !", "questUnlockShare": "J'ai déverrouillé une nouvelle quête sur Habitica !", "hatchPetShare": "J'ai fait éclore un familier en terminant des tâches de ma vie réelle!", "raisePetShare": "J'ai transformé un familier en monture en terminant des tâches de ma vie réelle!", - "wonChallengeShare": "J'ai gagné un défi sur Habitica !", + "wonChallengeShare": "J'ai gagné un défi en Habitica !", "achievementShare": "J'ai gagné un nouveau succès sur Habitica !" } \ No newline at end of file diff --git a/common/locales/fr/groups.json b/common/locales/fr/groups.json index 98dee15487..ed01327e3b 100644 --- a/common/locales/fr/groups.json +++ b/common/locales/fr/groups.json @@ -147,5 +147,5 @@ "partyChatEmpty": "Votre discussion d'équipe est vide ! Écrivez un message dans le champ ci-dessus pour commencer la discussion.", "guildChatEmpty": "La discussion de cette guilde est vide ! Écrivez un message dans le champ ci-dessus pour commencer la discussion.", "possessiveParty": "Équipe de <%= name %>", - "requestAcceptGuidelines": "If you would like to post messages in the Tavern or any party or guild chat, please first read our <%= linkStart %>Community Guidelines<%= linkEnd %> and then click the button below to indicate that you accept them." + "requestAcceptGuidelines": "Si vous souhaitez envoyer des messages dans la Taverne ou dans le chat d'une équipe ou d'une guilde, veuillez d'abord s'il vous plait lire nos <%= linkStart %>Règles de Vie en Communauté<%= linkEnd %> et cliquez sur le bouton ci-dessous pour indiquer que vous les acceptez." } \ No newline at end of file diff --git a/common/locales/fr/limited.json b/common/locales/fr/limited.json index fec3b08127..631b9d1695 100644 --- a/common/locales/fr/limited.json +++ b/common/locales/fr/limited.json @@ -21,6 +21,7 @@ "valentineCardAchievementText": "Wow, vous et votre ami devez vraiment compter l'un pour l'autre ! A envoyé ou reçu <%= cards %> cartes de la Saint Valentin.", "polarBear": "Ours polaire", "turkey": "Dindon", + "gildedTurkey": "Gilded Turkey", "polarBearPup": "Ourson polaire", "jackolantern": "Citrouille d'Halloween", "seasonalShop": "Boutique Saisonnière", diff --git a/common/locales/fr/noscript.json b/common/locales/fr/noscript.json index 6057268ef2..aaacab9cb4 100644 --- a/common/locales/fr/noscript.json +++ b/common/locales/fr/noscript.json @@ -1,6 +1,6 @@ { - "jsDisabledHeading": "Alas! Your browser doesn't have JavaScript enabled", - "jsDisabledHeadingFull": "Alas! Your browser doesn't have JavaScript enabled and without it, Habitica can't work properly", - "jsDisabledText": "Habitica can't properly display the site without it!", - "jsDisabledLink": "Please enable JavaScript to continue!" + "jsDisabledHeading": "Hélas ! JavaScript n'est pas activé sur votre navigateur.", + "jsDisabledHeadingFull": "Hélas ! JavaScript n'est pas activé sur votre navigateur. Sans lui, Habitica ne peut fonctionner correctement.", + "jsDisabledText": "Habitica ne peut pas s'afficher correctement sans lui !", + "jsDisabledLink": "Veuillez s'il vous plait activer JavaScript pour continuer !" } \ No newline at end of file diff --git a/common/locales/fr/questscontent.json b/common/locales/fr/questscontent.json index b8ffb3e076..23da404a9f 100644 --- a/common/locales/fr/questscontent.json +++ b/common/locales/fr/questscontent.json @@ -251,26 +251,26 @@ "questHorseDropHorseEgg": "Cheval (Œuf) ", "questHorseUnlockText": "Déverrouille l'achat d’œufs de cheval au Marché", "questBurnoutText": "Burnout et les Esprits d'Échappement", - "questBurnoutNotes": "Minuit est passé depuis longtemps déjà, tout est calme et la chaleur est étouffante, quand Redphoenix et le capitaine scout Kiwibot font irruption par les portes de la ville. \"Nous devons évacuer tous les bâtiments en bois!\" crie Redphoenix. \"Dépêchez-vous!\"

Kiwibot agrippe le mur en reprenant son souffle. \"Ça vide les gens et les transforme en Esprits d'Échappement! C'est pour ça que tout avait du retard. C'est là que sont les gens qui avaient disparu. Ça leur a volé leur énergie!\"

\"\"Ça\"?\" demande Lemoness.

A ce moment, la chaleur prend forme.

Elle s'élève de la terre en une masse ondulante et tourbillonnante, et l'air devient suffoquant par l'odeur de fumée et de souffre. Des flammes lèchent le sol fondu et, à force de torsions, deviennent des membres, se tordant jusqu'à une hauteur terrible. Des yeux fumants s'ouvrent brusquement et la créature émet un rire profond et crépitant.

Kiwibot chuchote un mot unique.

\"Burnout\"", - "questBurnoutCompletion": "Burnout est VAINCU!

Avec un long et faible soupir, Burnout libère lentement l'énergie ardente qui entretenait son feu. Alors que le monstre se réduit doucement en cendres, son énergie volée scintille dans l'air, ranimant les Esprits d'Échappement et leur rendant leur véritable forme.

Ian, Daniel et la Sorcière Saisonnière se réjouissent alors que les Habiticien-ne-s se ruent vers eux pour les saluer, et tous les citoyens disparus aux Champs Florissants embrassent leurs amis et leurs familles. Et du dernier Esprit d'Échappement apparaît la Joyeuse Faucheuse en personne!

\"Regarde!\" murmure @Baconsaur alors que les cendres commencent à briller. Lentement, elles se fondent en des centaines de phénix étincelants!

L'un des oiseaux rayonnants se pose sur le bras squelettique de la Joyeuse Faucheuse, qui lui sourit. Ça fait longtemps que je n'ai pas eu le privilège exquis de voir un phénix dans les Champs Florissants\", dit-elle. \"Mais en considérant les derniers événements, je dois dire que c'est thématiquement tout à fait de circonstance!\"

Son ton devient plus grave, bien que son sourire demeure (tout naturellement). \"Nous avons la réputation d'être des travailleurs ici, mais nous sommes aussi connus pour nos fêtes et festivités. C'est plutôt ironique, je suppose, que nous ne nous accordions pas de temps pour nous amuser alors même que nous préparons une fête spectaculaire. Nous ne ferons pas la même erreur deux fois, c'est certain!\"

Elle frappe dans ses mains. \"Maintenant - amusons-nous!\"", - "questBurnoutCompletionChat": "`Burnout est VAINCU!`\n\nAvec un long et faible soupir, Burnout libère lentement l'énergie ardente qui entretenait son feu. Alors que le monstre se réduit doucement en cendres, son énergie volée scintille dans l'air, ranimant les Esprits d'Échappement et leur rendant leur véritable forme. \n\nIan, Daniel et la Sorcière Saisonnière se réjouissent alors que les Habiticien-ne-s se ruent vers eux pour les saluer, et tous les citoyens disparus aux Champs Florissants embrassent leurs amis et leurs familles. Et du dernier Esprit d'Échappement apparaît la Joyeuse Faucheuse en personne!\n\n\"Regarde!\" murmure @Baconsaur alors que les cendres commencent à briller. Lentement, elles se fondent en des centaines de phénix étincelants!\n\nL'un des oiseaux rayonnants se pose sur le bras squelettique de la Joyeuse Faucheuse, qui lui sourit. Ça fait longtemps que je n'ai pas eu le privilège exquis de voir un phénix dans les Champs Florissants\", dit-elle. \"Mais en considérant les derniers événements, je dois dire que c'est thématiquement tout à fait de circonstance!\"\n\nSon ton devient plus grave, bien que son sourire demeure (tout naturellement). \"Nous avons la réputation d'être des travailleurs ici, mais nous sommes aussi connus pour nos fêtes et festivités. C'est plutôt ironique, je suppose, que nous ne nous accordions pas de temps pour nous amuser alors même que nous préparons une fête spectaculaire. Nous ne ferons pas la même erreur deux fois, c'est certain!\"\n\nElle frappe dans ses mains. \"Maintenant - amusons-nous!\"\n\nTous les Habiticien-ne-s reçoivent:\n\nPhoenix (Familier)\nPhoenix (Monture\nSuccès: Sauveur des Champs Florissants\nBonbon Simple\nBonbon à la Vanille\nBonbon au Sable\nBonbon à la Cannelle\nBonbon au Chocolat\nBonbon Pourri\nBonbon Aigre Rose\nBonbon Aigre Bleu\nBonbon au Miel", + "questBurnoutNotes": "Minuit est passé depuis longtemps déjà, tout est calme et la chaleur est étouffante, quand Redphoenix et le capitaine scout Kiwibot font irruption par les portes de la ville. \"Nous devons évacuer tous les bâtiments en bois !\" crie Redphoenix. \"Dépêchez-vous !\"

Kiwibot agrippe le mur en reprenant son souffle. \"Ça vide les gens et les transforme en Esprits d'Échappement ! C'est pour ça que tout avait du retard. C'est là que sont les gens qui avaient disparu. Ça leur a volé leur énergie !\"

\"\"Ça\" ?\" demande Lemoness.

A ce moment, la chaleur prend forme.

Elle s'élève de la terre en une masse ondulante et tourbillonnante, et l'air devient suffoquant par l'odeur de fumée et de souffre. Des flammes lèchent le sol fondu et, à force de torsions, deviennent des membres, se tordant jusqu'à une hauteur terrible. Des yeux fumants s'ouvrent brusquement et la créature émet un rire profond et crépitant.

Kiwibot chuchote un mot unique.

\"Burnout\"", + "questBurnoutCompletion": "Burnout est VAINCU !

Avec un long et faible soupir, Burnout libère lentement l'énergie ardente qui entretenait son feu. Alors que le monstre se réduit doucement en cendres, son énergie volée scintille dans l'air, ranimant les Esprits d'Échappement et leur rendant leur véritable forme.

Ian, Daniel et la Sorcière Saisonnière se réjouissent alors que les Habiticien-ne-s se ruent vers eux pour les saluer, et tous les citoyens disparus aux Champs Florissants embrassent leurs amis et leurs familles. Et du dernier Esprit d'Échappement apparaît la Joyeuse Faucheuse en personne !

\"Regarde !\" murmure @Baconsaur alors que les cendres commencent à briller. Lentement, elles se fondent en des centaines de phénix étincelants !

L'un des oiseaux rayonnants se pose sur le bras squelettique de la Joyeuse Faucheuse, qui lui sourit. Ça fait longtemps que je n'ai pas eu le privilège exquis de voir un phénix dans les Champs Florissants\", dit-elle. \"Mais en considérant les derniers événements, je dois dire que c'est thématiquement tout à fait de circonstance !\"

Son ton devient plus grave, bien que son sourire demeure (tout naturellement). \"Nous avons la réputation d'être des travailleurs ici, mais nous sommes aussi connus pour nos fêtes et festivités. C'est plutôt ironique, je suppose, que nous ne nous accordions pas de temps pour nous amuser alors même que nous préparons une fête spectaculaire. Nous ne ferons pas la même erreur deux fois, c'est certain !\"

Elle frappe dans ses mains. \"Maintenant - amusons-nous !\"", + "questBurnoutCompletionChat": "`Burnout est VAINCU !`\n\nAvec un long et faible soupir, Burnout libère lentement l'énergie ardente qui entretenait son feu. Alors que le monstre se réduit doucement en cendres, son énergie volée scintille dans l'air, ranimant les Esprits d'Échappement et leur rendant leur véritable forme. \n\nIan, Daniel et la Sorcière Saisonnière se réjouissent alors que les Habiticien·ne·s se ruent vers eux pour les saluer, et tous les citoyens disparus aux Champs Florissants embrassent leurs amis et leurs familles. Et du dernier Esprit d'Échappement apparaît la Joyeuse Faucheuse en personne!\n\n\"Regarde !\" murmure @Baconsaur alors que les cendres commencent à briller. Lentement, elles se fondent en des centaines de phénix étincelants!\n\nL'un des oiseaux rayonnants se pose sur le bras squelettique de la Joyeuse Faucheuse, qui lui sourit. Ça fait longtemps que je n'ai pas eu le privilège exquis de voir un phénix dans les Champs Florissants\", dit-elle. \"Mais en considérant les derniers événements, je dois dire que c'est thématiquement tout à fait de circonstance !\"\n\nSon ton devient plus grave, bien que son sourire demeure (tout naturellement). \"Nous avons la réputation d'être des travailleurs ici, mais nous sommes aussi connus pour nos fêtes et festivités. C'est plutôt ironique, je suppose, que nous ne nous accordions pas de temps pour nous amuser alors même que nous préparons une fête spectaculaire. Nous ne ferons pas la même erreur deux fois, c'est certain !\"\n\nElle frappe dans ses mains. \"Maintenant - amusons-nous !\"\n\nTous les Habiticien·ne·s reçoivent:\n\nPhoenix (Familier)\nPhoenix (Monture\nSuccès: Sauveur des Champs Florissants\nBonbon Simple\nBonbon à la Vanille\nBonbon au Sable\nBonbon à la Cannelle\nBonbon au Chocolat\nBonbon Pourri\nBonbon Aigre Rose\nBonbon Aigre Bleu\nBonbon au Miel", "questBurnoutBoss": "Burnout", "questBurnoutBossRageTitle": "Attaque d'Échappement", "questBurnoutBossRageDescription": "Lorsque la jauge sera remplie, Burnout déchaînera son Attaque d'Échappement sur Habitica!", "questBurnoutDropPhoenixPet": "Phoenix (Familier)", "questBurnoutDropPhoenixMount": "Phoenix (Monture)", - "questBurnoutBossRageQuests": "`Burnout lance ATTAQUE D'ÉCHAPPEMENT!`\n\nOh non! Malgré nos efforts redoublés , nous avons laissé quelques Quotidiennes nous échapper, et maintenant Burnout est embrasé d'énergie! Avec un grognement crépitant, il engloutit Ian le Maître des Quêtes dans une vague de feu spectral. Alors que des parchemins de quêtes, tombés au sol, se consument, la fumée se lève et vous voyez que Ian a été vidé de son énergie et n'est plus maintenant qu'un Esprit d'Échappement à la dérive. \n\nSeule la victoire contre Burnout peut rompre le sort et revivifier notre Maître des Quêtes bien-aimé. Effectuons nos Quotidiennes et vainquons ce monstre avant qu'il n'attaque encore!", - "questBurnoutBossRageSeasonalShop": "`Burnout lance ATTAQUE D'ÉCHAPPEMENT!`\n\nAhh!!! Les Quotidiennes que nous n'avons pas effectuées ont nourri les flammes de Burnout, et maintenant il a assez d'énergie pour frapper à nouveau! Il envoie une langue de feu spectral qui brûle la Boutique Saisonnière. Vous êtes horrifié de voir que la joyeuse Sorcière Saisonnière a été transformée en un Esprit d'Échappement tout affaissé.\n\nNous devons sauver nos PNJ! Vite, Habiticien-ne-s, effectuez vos tâches et vainquez Burnout avant qu'il ne frappe pour la troisième fois!", - "questBurnoutBossRageTavern": "`Burnout lance ATTAQUE D'ÉCHAPPEMENT!`\n\nBeaucoup d'Habiticien-ne-s ont échappé à Burnout dans la Taverne, mai c'est terminé! Avec un hurlement perçant, Burnout râtisse la Taverne avec ses mains chauffées à blanc. Alors que les usagers de la Taverne s'enfuient, Daniel est empoigné par Burnout et se transforme en Esprit d'Échappement sous vos yeux!\n\nCette horreur exaltée se prolonge vraiment trop. N'abandonnez pas... nous sommes si près de vaincre Burnout une fois pour toutes!", + "questBurnoutBossRageQuests": "`Burnout lance ATTAQUE D'ÉCHAPPEMENT !`\n\nOh non ! Malgré nos efforts redoublés , nous avons laissé quelques Quotidiennes nous échapper, et maintenant Burnout est embrasé d'énergie ! Avec un grognement crépitant, il engloutit Ian le Maître des Quêtes dans une vague de feu spectral. Alors que des parchemins de quêtes, tombés au sol, se consument, la fumée se lève et vous voyez que Ian a été vidé de son énergie et n'est plus maintenant qu'un Esprit d'Échappement à la dérive. \n\nSeule la victoire contre Burnout peut rompre le sort et revivifier notre Maître des Quêtes bien-aimé. Effectuons nos Quotidiennes et vainquons ce monstre avant qu'il n'attaque encore !", + "questBurnoutBossRageSeasonalShop": "`Burnout lance ATTAQUE D'ÉCHAPPEMENT !`\n\nAhh!!! Les Quotidiennes que nous n'avons pas effectuées ont nourri les flammes de Burnout, et maintenant il a assez d'énergie pour frapper à nouveau! Il envoie une langue de feu spectral qui brûle la Boutique Saisonnière. Vous êtes horrifié de voir que la joyeuse Sorcière Saisonnière a été transformée en un Esprit d'Échappement tout affaissé.\n\nNous devons sauver nos PNJ ! Vite, Habiticien·ne·s, effectuez vos tâches et vainquez Burnout avant qu'il ne frappe pour la troisième fois !", + "questBurnoutBossRageTavern": "`Burnout lance ATTAQUE D'ÉCHAPPEMENT !`\n\nBeaucoup d'Habiticien·ne·s ont échappé à Burnout dans la Taverne, mai c'est terminé! Avec un hurlement perçant, Burnout râtisse la Taverne avec ses mains chauffées à blanc. Alors que les usagers de la Taverne s'enfuient, Daniel est empoigné par Burnout et se transforme en Esprit d'Échappement sous vos yeux !\n\nCette horreur exaltée se prolonge vraiment trop. N'abandonnez pas... nous sommes si près de vaincre Burnout une fois pour toutes !", "questFrogText": "Marécage de la Grenouille du Désordre", - "questFrogNotes": "Alors que vous et vos amis cheminez péniblement dans les Marécages de la Stagnation, @starsystemic désigne un grand panneau. \"Restez sur le chemin principal - si vous le pouvez.\"

\"Ca ne peut pas être si compliqué!\", dit @RosemonkeyCT. \"Il est large, et bien délimité\"

Mais, alors que vous poursuivez votre chemin, vous remarquez que le chemin disparaît petit à petit sous la boue du marécage, mêlée d'étranges petits débris bleus et de tout un bric-à-brac, jusqu'à ce qu'il devienne impossible de continuer à le suivre.

Alors que vous regardez tout autour de vous en vous demandant comment la route a bien pu finir dans cet état, @Jon Arjinborn pousse un cri. \"Attention!\". Une grenouille, manifestement furieuse, bondit hors de la vase, enroulée dans du linge sale et éclairée d'une flamme bleue. Il vous faudra vaincre cette Grenouille du Désordre empoisonnée pour poursuivre!", + "questFrogNotes": "Alors que vous et vos amis cheminez péniblement dans les Marécages de la Stagnation, @starsystemic désigne un grand panneau. \"Restez sur le chemin principal - si vous le pouvez.\"

\"Ca ne peut pas être si compliqué !\", dit @RosemonkeyCT. \"Il est large, et bien délimité\"

Mais, alors que vous poursuivez votre chemin, vous remarquez que le chemin disparaît petit à petit sous la boue du marécage, mêlée d'étranges petits débris bleus et de tout un bric-à-brac, jusqu'à ce qu'il devienne impossible de continuer à le suivre.

Alors que vous regardez tout autour de vous en vous demandant comment la route a bien pu finir dans cet état, @Jon Arjinborn pousse un cri. \"Attention !\". Une grenouille, manifestement furieuse, bondit hors de la vase, enroulée dans du linge sale et éclairée d'une flamme bleue. Il vous faudra vaincre cette Grenouille du Désordre empoisonnée pour poursuivre !", "questFrogCompletion": "La grenouille se replie dans la vase, vaincue. Tandis qu'elle s'éloigne en titubant, la vase bleue disparaît, laissant la voie libre.

Au beau milieu du chemin se trouvent trois oeufs immaculés. \"L'enveloppe est tellement claire qu'on peut même voir les têtards au travers!\" dit @Breadstrings. \"Tiens, tu devrais les prendre.\"", "questFrogBoss": "La Grenouille du Désordre", "questFrogDropFrogEgg": "Grenouille (Œuf)", "questFrogUnlockText": "Déverrouille l'achat d’œufs de grenouille au Marché", "questSnakeText": "Le Serpent de la Distraction", - "questSnakeNotes": "Vivre dans les Dunes sablonneuses de la Distraction requiert une âme vaillante. En effet, le désert aride n'encourage que trop peu la productivité et les dunes scintillantes ont détourné plus d'un voyageur du droit chemin. Toutefois, une chose effraie même les gens du coin : le désert change et retourne des villages entiers. Les résidents déclarent qu'un monstre au long corps sinueux se cache, en attente, sous les sables du désert. Pour récompenser celui ou celle qui leur viendra en aide en trouvant et en arrêtant cette créature, ils ont mis en commun un butin. Les très célèbres charmeurs de serpent @EmeraldOx et @PainterProphet ont accepté de vous aider à invoquer la bête. Arriverez-vous à arrêter le Serpent de la Distraction?", - "questSnakeCompletion": "Grâce à l'assistance des charmeurs, vous bannissez le Serpent de la Distraction. Même si vous êtes heureux d'avoir aidé les habitants des Dunes, vous ne pouvez vous empêcher de ressentir un peu de tristesse pour votre ennemi tombé au combat. Alors que vous contemplez la vue, @LordDarkly vous approche : « Merci ! C'est peu, mais j'espère que ça l'exprime bien notre reconnaissance. » Il vous remet un peu d'Or et... des œufs de serpent ! Vous reverrez donc ce majestueux animal après tout.", + "questSnakeNotes": "Vivre dans les Dunes sablonneuses de la Distraction requiert une âme vaillante. En effet, le désert aride n'encourage que trop peu la productivité et les dunes scintillantes ont détourné plus d'un voyageur du droit chemin. Toutefois, une chose effraie même les gens du coin : le désert change et retourne des villages entiers. Les résidents déclarent qu'un monstre au long corps sinueux se cache, en attente, sous les sables du désert. Pour récompenser celui ou celle qui leur viendra en aide en trouvant et en arrêtant cette créature, ils ont mis en commun un butin. Les très célèbres charmeurs de serpent @EmeraldOx et @PainterProphet ont accepté de vous aider à invoquer la bête. Arriverez-vous à arrêter le Serpent de la Distraction ?", + "questSnakeCompletion": "Grâce à l'assistance des charmeurs, vous bannissez le Serpent de la Distraction. Même si vous êtes heureux d'avoir aidé les habitants des Dunes, vous ne pouvez vous empêcher de ressentir un peu de tristesse pour votre ennemi tombé au combat. Alors que vous contemplez la vue, @LordDarkly vous approche : « Merci ! C'est peu, mais j'espère que ça l'exprime bien notre reconnaissance.» Il vous remet un peu d'Or et... des œufs de serpent ! Vous reverrez donc ce majestueux animal après tout.", "questSnakeBoss": "Serpent de Distraction", "questSnakeDropSnakeEgg": "Serpent (Œuf)", "questSnakeUnlockText": "Déverrouille l'achat d’œufs de serpent au Marché" diff --git a/common/locales/fr/settings.json b/common/locales/fr/settings.json index 2e86abc4db..2334d81f4d 100644 --- a/common/locales/fr/settings.json +++ b/common/locales/fr/settings.json @@ -143,5 +143,8 @@ "gemCapExtra": "Gemmes disponibles en plus :", "mysticHourglasses": "Sablier Mystique", "paypal": "PayPal", - "amazonPayments": "Paiments Amazon" + "amazonPayments": "Paiments Amazon", + "timezone": "Time Zone", + "timezoneUTC": "Habitica uses the time zone set on your PC, which is: <%= utc %>", + "timezoneInfo": "If that time zone is wrong, first reload this page using your browser's reload or refresh button to ensure that Habitica has the most recent information. If it is still wrong, adjust the time zone on your PC and then reload this page again.

If you use Habitica on other PCs or mobile devices, the time zone must be the same on them all. If your Dailies have been reseting at the wrong time, repeat this check on all other PCs and on a browser on your mobile devices." } \ No newline at end of file diff --git a/common/locales/fr/tasks.json b/common/locales/fr/tasks.json index 63b4d37eb2..91b8496387 100644 --- a/common/locales/fr/tasks.json +++ b/common/locales/fr/tasks.json @@ -88,8 +88,7 @@ "fortifyText": "La potion de fortification ramènera toutes vos tâches à un niveau neutre (jaune), comme si vous veniez de les ajouter, et remplira votre barre de santé. C'est utile si vos tâches rouges rendent le jeu trop dur, ou si vos tâches bleues le rendent trop facile. Si cela vous motive de retrouver des bases saines, dépensez vos gemmes et accordez vous un sursis !", "sureDelete": "Êtes-vous sûr de vouloir supprimer cette tâche ?", "streakCoins": "Bonus de combo !", - "pushTaskToTop": "Déplacer la tâche en tête de liste", - "pushTaskToBottom": "Déplacer la tâche en fin de liste", + "pushTaskToTop": "Push task to top. Hold ctrl or cmd to push to bottom.", "emptyTask": "Indiquez d'abord le titre de la tâche.", "dailiesRestingInInn": "Vous vous reposez à l'Auberge ! Vos Quotidiennes ne vous infligeront AUCUN dégâts cette nuit, mais SERONT réinitialisées chaque jour. Si vous participez à une quête, vous n'infligerez aucun dégât / ne récolterez aucun item jusqu'à ce que vous quittiez l'Auberge, mais vous pouvez quand même être blessé par un boss si un de vos équipiers oublie une de ses Quotidiennes.", "habitHelp1": "Les Bonnes Habitudes sont les choses que vous faites souvent. Elles octroient de l'Or et de l'Expérience à chaque fois que vous cliquez sur le <%= plusIcon %>.", diff --git a/common/locales/he/backgrounds.json b/common/locales/he/backgrounds.json index 8d267d6883..a2125f8ddc 100644 --- a/common/locales/he/backgrounds.json +++ b/common/locales/he/backgrounds.json @@ -125,5 +125,12 @@ "backgroundNightDunesText": "Night Dunes", "backgroundNightDunesNotes": "Walk peacefully through the Night Dunes.", "backgroundSunsetOasisText": "Sunset Oasis", - "backgroundSunsetOasisNotes": "Bask in the Sunset Oasis." + "backgroundSunsetOasisNotes": "Bask in the Sunset Oasis.", + "backgrounds122015": "SET 19: Released December 2015", + "backgroundAlpineSlopesText": "Alpine Slopes", + "backgroundAlpineSlopesNotes": "Ski on the Alpine Slopes.", + "backgroundSnowySunriseText": "Snowy Sunrise", + "backgroundSnowySunriseNotes": "Gaze at the Snowy Sunrise.", + "backgroundWinterTownText": "Winter Town", + "backgroundWinterTownNotes": "Bustle through a Winter Town." } \ No newline at end of file diff --git a/common/locales/he/faq.json b/common/locales/he/faq.json index 8bc26e6f3a..e6360dc838 100644 --- a/common/locales/he/faq.json +++ b/common/locales/he/faq.json @@ -2,7 +2,7 @@ "frequentlyAskedQuestions": "שאלות נפוצות", "faqQuestion0": "I'm confused. Where do I get an overview?", "iosFaqAnswer0": "First, you'll set up tasks that you want to do in your everyday life. Then, as you complete the tasks in real life and check them off, you'll earn experience and gold. Gold is used to buy equipment and some items, as well as custom rewards. Experience causes your character to level up and unlock content such as Pets, Skills, and Quests! You can customize your character under Menu > Customize Avatar.\n\n Some basic ways to interact: click the (+) in the upper-right-hand corner to add a new task. Tap on an existing task to edit it, and swipe left on a task to delete it. You can sort tasks using Tags in the upper-left-hand corner, and expand and contract checklists by clicking on the checklist bubble.", - "webFaqAnswer0": "First, you'll set up tasks that you want to do in your everyday life. Then, as you complete the tasks in real life and check them off, you'll earn Experience and Gold. Gold is used to buy equipment and some items, as well as custom rewards. Experience causes your character to level up and unlock content such as pets, skills, and quests! For more detail, the wiki has an excellent step-by-step overview of the game [right here](http://habitica.wikia.com/wiki/Habitica_Wiki).", + "webFaqAnswer0": "First, you'll set up tasks that you want to do in your everyday life. Then, as you complete the tasks in real life and check them off, you'll earn Experience and Gold. Gold is used to buy equipment and some items, as well as custom rewards. Experience causes your character to level up and unlock content such as pets, skills, and quests! For more detail, check out a step-by-step overview of the game at [Help -> Overview for New Users](https://habitica.com/static/overview).", "faqQuestion1": "כיצד אני מארגן את המשימות שלי?", "iosFaqAnswer1": "Good Habits (the ones with a +) are tasks that you can do many times a day, such as eating vegetables. Bad Habits (the ones with a -) are tasks that you should avoid, like biting nails. Habits with a + and a - have a good choice and a bad choice, like taking the stairs vs. taking the elevator. Good Habits award experience and gold. Bad Habits subtract health.\n\n Dailies are tasks that you have to do every day, like brushing your teeth or checking your email. You can adjust the days that a Daily is due by tapping to edit it. If you skip a Daily that is due, your avatar will take damage overnight. Be careful not to add too many Dailies at once!\n\n To-Dos are your To-Do list. Completing a To-Do earns you gold and experience. You never lose health from To-Dos. You can add a due date to a To-Do by tapping to edit.", "webFaqAnswer1": "Good Habits (the ones with a ) are tasks that you can do many times a day, such as eating vegetables. Bad Habits (the ones with a ) are tasks that you should avoid, like biting nails. Habits with a and a have a good choice and a bad choice, like taking the stairs vs. taking the elevator. Good Habits award Experience and Gold. Bad Habits subtract Health.\n

\n Dailies are tasks that you have to do every day, like brushing your teeth or checking your email. You can adjust the days that a Daily is due by clicking the pencil item to edit it. If you skip a Daily that is due, your avatar will take damage overnight. Be careful not to add too many Dailies at once!\n

\n To-Dos are your To-Do list. Completing a To-Do earns you Gold and Experience. You never lose Health from To-Dos. You can add a due date to a To-Do by clicking the pencil icon to edit.", diff --git a/common/locales/he/gear.json b/common/locales/he/gear.json index fc4acde9ca..3af1326666 100644 --- a/common/locales/he/gear.json +++ b/common/locales/he/gear.json @@ -149,15 +149,19 @@ "weaponArmoireRancherLassoText": "Rancher Lasso", "weaponArmoireRancherLassoNotes": "Lassos: the ideal tool for rounding up and wrangling. Increases Strength by <%= str %>, Perception by <%= per %>, and Intelligence by <%= int %>. Enchanted Armoire: Rancher Set (Item 3 of 3).", "weaponArmoireMythmakerSwordText": "Mythmaker Sword", - "weaponArmoireMythmakerSwordNotes": "Though it may seem humble, this sword has made many mythic heroes. Increases Perception and Strength by <%= attrs %> each. Enchanted Armoire: Golden Toga Set (Item 3 of 3)", + "weaponArmoireMythmakerSwordNotes": "Though it may seem humble, this sword has made many mythic heroes. Increases Perception and Strength by <%= attrs %> each. Enchanted Armoire: Golden Toga Set (Item 3 of 3).", "weaponArmoireIronCrookText": "Iron Crook", - "weaponArmoireIronCrookNotes": "Fiercely hammered from iron, this iron crook is good at herding sheep. Increases Perception and Strength by <%= attrs %> each. Enchanted Armoire: Horned Iron Set (Item 3 of 3)", + "weaponArmoireIronCrookNotes": "Fiercely hammered from iron, this iron crook is good at herding sheep. Increases Perception and Strength by <%= attrs %> each. Enchanted Armoire: Horned Iron Set (Item 3 of 3).", "weaponArmoireGoldWingStaffText": "Gold Wing Staff", "weaponArmoireGoldWingStaffNotes": "The wings on this staff constantly flutter and twist. Increases all attributes by <%= attrs %> each. Enchanted Armoire: Independent Item.", "weaponArmoireBatWandText": "Bat Wand", "weaponArmoireBatWandNotes": "This wand can turn any task into a bat! Wave it about and watch them fly away. Increases Intelligence by <%= int %> and Perception by <%= per %>. Enchanted Armoire: Independent Item.", "weaponArmoireShepherdsCrookText": "Shepherd's Crook", "weaponArmoireShepherdsCrookNotes": "Useful for herding gryphons. Increases Constitution by <%= con %>. Enchanted Armoire: Shepherd Set (Item 1 of 3).", + "weaponArmoireCrystalCrescentStaffText": "Crystal Crescent Staff", + "weaponArmoireCrystalCrescentStaffNotes": "Summon the power of the crescent moon with this shining staff! Increases Intelligence and Strength by <%= attrs %> each. Enchanted Armoire: Crystal Crescent Set (Item 3 of 3).", + "weaponArmoireBlueLongbowText": "Blue Longbow", + "weaponArmoireBlueLongbowNotes": "Ready... Aim... Fire! This bow has great range. Increases Perception by 9, Constitution by 8, and Strength by 7. Enchanted Armoire: Independent Item.", "armor": "שריון", "armorBase0Text": "בגדים פשוטים", "armorBase0Notes": "אלה סתם בגדים, הם לא נותנים בונוס.", @@ -222,7 +226,7 @@ "armorSpecialBirthday2015Text": "גלימת מסיבות מגוכחת", "armorSpecialBirthday2015Notes": "Happy Birthday, Habitica! Wear these Silly Party Robes to celebrate this wonderful day. Confers no benefit.", "armorSpecialGaymerxText": "שריון לוחמי הקשת", - "armorSpecialGaymerxNotes": "In celebration of pride season and GaymerX, this special armor is decorated with a radiant, colorful rainbow pattern! GaymerX is a game convention celebrating LGBTQ and gaming and is open to everyone. It takes place at the InterContinental in downtown San Francisco on July 11-13! Confers no benefit.", + "armorSpecialGaymerxNotes": "In celebration of the GaymerX Conference, this special armor is decorated with a radiant, colorful rainbow pattern! GaymerX is a game convention celebrating LGTBQ and gaming and is open to everyone.", "armorSpecialSpringRogueText": "חליפת חתלתול חלקלק", "armorSpecialSpringRogueNotes": "מטופח ללא רבב. מגביר את התפיסה ב<%= per %>. מהדורה מוגבלת, ציוד אביב 2014.", "armorSpecialSpringWarriorText": "שריון פלדת-תלתן", @@ -309,6 +313,8 @@ "armorMystery201508Notes": "Run fast as a flash in the fluffy Cheetah Costume! Confers no benefit. August 2015 Subscriber Item.", "armorMystery201509Text": "Werewolf Costume", "armorMystery201509Notes": "This IS a costume, right? Confers no benefit. September 2015 Subscriber Item.", + "armorMystery201511Text": "Wooden Armor", + "armorMystery201511Notes": "Considering this armor was carved directly from a magical log, it's surprisingly comfortable. Confers no benefit. November 2015 Subscriber Item.", "armorMystery301404Text": "Steampunk Suit", "armorMystery301404Notes": "Dapper and dashing, wot! Confers no benefit. February 3015 Subscriber Item.", "armorArmoireLunarArmorText": "Soothing Lunar Armor", @@ -327,6 +333,8 @@ "armorArmoireShepherdRobesNotes": "The fabric is cool and breathable, perfect for a hot day herding gryphons in the desert. Increases Strength and Perception by <%= attrs %> each. Enchanted Armoire: Shepherd Set (Item 2 of 3).", "armorArmoireRoyalRobesText": "Royal Robes", "armorArmoireRoyalRobesNotes": "Wonderful ruler, rule all day long! Increases Constitution, Intelligence, and Perception by <%= attrs %> each. Enchanted Armoire: Royal Set (Item 3 of 3).", + "armorArmoireCrystalCrescentRobesText": "Crystal Crescent Robes", + "armorArmoireCrystalCrescentRobesNotes": "These magical robes are luminescent at night. Increases Constitution and Perception by <%= attrs %> each. Enchanted Armoire: Crystal Crescent Set (Item 2 of 3).", "headgear": "headgear", "headBase0Text": "ללא קסדה", "headBase0Notes": "בלי שום כיסוי ראש בכלל.", @@ -447,7 +455,7 @@ "headSpecialFall2015HealerText": "Hat of Frog", "headSpecialFall2015HealerNotes": "This is an extremely serious hat that is worthy of only the most advanced potioners. Increases Intelligence by <%= int %>. Limited Edition 2015 Autumn Gear.", "headSpecialGaymerxText": "קסדת לוחמי הקשת", - "headSpecialGaymerxNotes": "In celebration of pride season and GaymerX, this special helmet is decorated with a radiant, colorful rainbow pattern! GaymerX is a game convention celebrating LGBTQ and gaming and is open to everyone. It takes place at the InterContinental in downtown San Francisco on July 11-13! Confers no benefit.", + "headSpecialGaymerxNotes": "In celebration of the GaymerX Conference, this special helmet is decorated with a radiant, colorful rainbow pattern! GaymerX is a game convention celebrating LGTBQ and gaming and is open to everyone.", "headMystery201402Text": "קסדה מכונפת", "headMystery201402Notes": "This winged circlet imbues the wearer with the speed of the wind! Confers no benefit. February 2014 Subscriber Item.", "headMystery201405Text": "להבת המוח", @@ -470,6 +478,8 @@ "headMystery201508Notes": "This cozy cheetah hat is very fuzzy! Confers no benefit. August 2015 Subscriber Item.", "headMystery201509Text": "Werewolf Mask", "headMystery201509Notes": "This IS a mask, right? Confers no benefit. September 2015 Subscriber Item.", + "headMystery201511Text": "Log Crown", + "headMystery201511Notes": "Count the number of rings to learn how old this crown is. Confers no benefit. November 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", @@ -506,6 +516,8 @@ "headArmoireBlueFloppyHatNotes": "Many spells have been sewn into this simple hat, giving it a brilliant blue color. Increases Constitution, Intelligence, and Perception by <%= attrs %> each. Enchanted Armoire: Independent Item.", "headArmoireShepherdHeaddressText": "Shepherd Headdress", "headArmoireShepherdHeaddressNotes": "Sometimes the gryphons that you herd like to chew on this headdress, but it makes you seem more intelligent nonetheless. Increases Intelligence by <%= int %>. Enchanted Armoire: Shepherd Set (Item 3 of 3).", + "headArmoireCrystalCrescentHatText": "Crystal Crescent Hat", + "headArmoireCrystalCrescentHatNotes": "The design on this hat waxes and wanes with the phases of the moon. Increases Intelligence and Perception by <%= attrs %> each. Enchanted Armoire: Crystal Crescent Set (Item 1 of 3).", "offhand": "shield-hand item", "shieldBase0Text": "No Shield-Hand Equipment", "shieldBase0Notes": "לא הצטיידת באף מגן או נשק ליד החדשה.", diff --git a/common/locales/he/limited.json b/common/locales/he/limited.json index e452ad0192..acd6749870 100644 --- a/common/locales/he/limited.json +++ b/common/locales/he/limited.json @@ -21,6 +21,7 @@ "valentineCardAchievementText": "Aww, you and your friend must really care about each other! Sent or received <%= cards %> Valentine's Day cards.", "polarBear": "דוב קוטב", "turkey": "תרנגול הודו", + "gildedTurkey": "Gilded Turkey", "polarBearPup": "דובון קוטב", "jackolantern": "ג'ק-או-לנטרן", "seasonalShop": "חנות עונתית", diff --git a/common/locales/he/settings.json b/common/locales/he/settings.json index 05f0b0c590..fb3d778865 100644 --- a/common/locales/he/settings.json +++ b/common/locales/he/settings.json @@ -143,5 +143,8 @@ "gemCapExtra": "Gem Cap Extra:", "mysticHourglasses": "Mystic Hourglasses:", "paypal": "PayPal", - "amazonPayments": "Amazon Payments" + "amazonPayments": "Amazon Payments", + "timezone": "Time Zone", + "timezoneUTC": "Habitica uses the time zone set on your PC, which is: <%= utc %>", + "timezoneInfo": "If that time zone is wrong, first reload this page using your browser's reload or refresh button to ensure that Habitica has the most recent information. If it is still wrong, adjust the time zone on your PC and then reload this page again.

If you use Habitica on other PCs or mobile devices, the time zone must be the same on them all. If your Dailies have been reseting at the wrong time, repeat this check on all other PCs and on a browser on your mobile devices." } \ No newline at end of file diff --git a/common/locales/he/tasks.json b/common/locales/he/tasks.json index 379f0221f1..62bc4688f2 100644 --- a/common/locales/he/tasks.json +++ b/common/locales/he/tasks.json @@ -88,8 +88,7 @@ "fortifyText": "Fortify will return all your tasks to a neutral (yellow) state, as if you'd just added them, and top your Health off to full. This is great if all your red tasks are making the game too hard, or all your blue tasks are making the game too easy. If starting fresh sounds much more motivating, spend the Gems and catch a reprieve!", "sureDelete": "בטוח/ה שיש צורך למחוק את המשימה הזו?", "streakCoins": "בונוס התמדה!", - "pushTaskToTop": "דחיפת המשימה למעלה", - "pushTaskToBottom": "דחיפת המשימה לתחתית", + "pushTaskToTop": "Push task to top. Hold ctrl or cmd to push to bottom.", "emptyTask": "התחל בהקלדת שם המטלה.", "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.", "habitHelp1": "Good Habits are things that you do often. They award Gold and Experience every time you click the <%= plusIcon %>.", diff --git a/common/locales/hu/backgrounds.json b/common/locales/hu/backgrounds.json index f910077d29..3ed591234f 100644 --- a/common/locales/hu/backgrounds.json +++ b/common/locales/hu/backgrounds.json @@ -119,11 +119,18 @@ "backgroundSlimySwampNotes": "Ballagj át az Iszapos Mocsáron.", "backgroundSwarmingDarknessText": "Sötétség leple", "backgroundSwarmingDarknessNotes": "Dideregj a Sötétség leple alatt.", - "backgrounds112015": "SET 18: Released November 2015", - "backgroundFloatingIslandsText": "Floating Islands", - "backgroundFloatingIslandsNotes": "Hop across the Floating Islands.", - "backgroundNightDunesText": "Night Dunes", - "backgroundNightDunesNotes": "Walk peacefully through the Night Dunes.", - "backgroundSunsetOasisText": "Sunset Oasis", - "backgroundSunsetOasisNotes": "Bask in the Sunset Oasis." + "backgrounds112015": "18. készlet: kiadva 2015 November", + "backgroundFloatingIslandsText": "Úszó-Szigetek", + "backgroundFloatingIslandsNotes": "Ugrálj át az Úszó-Szigeteken.", + "backgroundNightDunesText": "Éjszakai Dűnék", + "backgroundNightDunesNotes": "Sétálj békésen az Éjszakai Dűnék között.", + "backgroundSunsetOasisText": "Naplemente Oázis", + "backgroundSunsetOasisNotes": "Sütkérezz a Naplemente Oázisban.", + "backgrounds122015": "SET 19: Released December 2015", + "backgroundAlpineSlopesText": "Alpine Slopes", + "backgroundAlpineSlopesNotes": "Ski on the Alpine Slopes.", + "backgroundSnowySunriseText": "Snowy Sunrise", + "backgroundSnowySunriseNotes": "Gaze at the Snowy Sunrise.", + "backgroundWinterTownText": "Winter Town", + "backgroundWinterTownNotes": "Bustle through a Winter Town." } \ No newline at end of file diff --git a/common/locales/hu/challenge.json b/common/locales/hu/challenge.json index 4d6f023a56..7cbb72ed41 100644 --- a/common/locales/hu/challenge.json +++ b/common/locales/hu/challenge.json @@ -60,8 +60,8 @@ "noPermissionEditChallenge": "Nincs jogod szerkeszteni ezt a kihívást", "noPermissionDeleteChallenge": "Nincs jogod törölni ezt a kihívást", "noPermissionCloseChallenge": "Nincs jogod lezárni ezt a kihívást", - "congratulations": "Congratulations!", - "hurray": "Hurray!", + "congratulations": "Gratulálok!", + "hurray": "Hurrá!", "noChallengeOwner": "nincs tulajdonosa", "noChallengeOwnerPopover": "Ennek a kihívásnak nincs tulajdonosa, mert a személy aki létrehozta törölte fiókját." } \ No newline at end of file diff --git a/common/locales/hu/character.json b/common/locales/hu/character.json index 46b049b87a..d5d0271d44 100644 --- a/common/locales/hu/character.json +++ b/common/locales/hu/character.json @@ -65,10 +65,10 @@ "ultimGearText": "Maximálisra fejlesztette a fegyvert és páncélzatot a következő kasztoknak:", "level": "Szint", "levelUp": "Szintet léptél!", - "gainedLevel": "You gained a level!", - "leveledUp": "By accomplishing your real-life goals, you've grown to Level <%= level %>!", - "fullyHealed": "You have been fully healed!", - "huzzah": "Huzzah!", + "gainedLevel": "Szintet léptél!", + "leveledUp": "A valós életbeli céljaid elvégzésével, felnőttél <%= level %> szinthez!", + "fullyHealed": "Teljesen meggyógyultál!", + "huzzah": "Hurrá!", "mana": "Mana", "hp": "ÉE", "mp": "VP", diff --git a/common/locales/hu/faq.json b/common/locales/hu/faq.json index 361ee3e1e0..6c2df0fef2 100644 --- a/common/locales/hu/faq.json +++ b/common/locales/hu/faq.json @@ -2,43 +2,43 @@ "frequentlyAskedQuestions": "Gyakran Ismételt Kérdések", "faqQuestion0": "Összezavarodtam. Hol találok egy leírást?", "iosFaqAnswer0": "First, you'll set up tasks that you want to do in your everyday life. Then, as you complete the tasks in real life and check them off, you'll earn experience and gold. Gold is used to buy equipment and some items, as well as custom rewards. Experience causes your character to level up and unlock content such as Pets, Skills, and Quests! You can customize your character under Menu > Customize Avatar.\n\n Some basic ways to interact: click the (+) in the upper-right-hand corner to add a new task. Tap on an existing task to edit it, and swipe left on a task to delete it. You can sort tasks using Tags in the upper-left-hand corner, and expand and contract checklists by clicking on the checklist bubble.", - "webFaqAnswer0": "First, you'll set up tasks that you want to do in your everyday life. Then, as you complete the tasks in real life and check them off, you'll earn Experience and Gold. Gold is used to buy equipment and some items, as well as custom rewards. Experience causes your character to level up and unlock content such as pets, skills, and quests! For more detail, the wiki has an excellent step-by-step overview of the game [right here](http://habitica.wikia.com/wiki/Habitica_Wiki).", + "webFaqAnswer0": "First, you'll set up tasks that you want to do in your everyday life. Then, as you complete the tasks in real life and check them off, you'll earn Experience and Gold. Gold is used to buy equipment and some items, as well as custom rewards. Experience causes your character to level up and unlock content such as pets, skills, and quests! For more detail, check out a step-by-step overview of the game at [Help -> Overview for New Users](https://habitica.com/static/overview).", "faqQuestion1": "Hogyan tudok létrehozni feladatokat?", "iosFaqAnswer1": "Good Habits (the ones with a +) are tasks that you can do many times a day, such as eating vegetables. Bad Habits (the ones with a -) are tasks that you should avoid, like biting nails. Habits with a + and a - have a good choice and a bad choice, like taking the stairs vs. taking the elevator. Good Habits award experience and gold. Bad Habits subtract health.\n\n Dailies are tasks that you have to do every day, like brushing your teeth or checking your email. You can adjust the days that a Daily is due by tapping to edit it. If you skip a Daily that is due, your avatar will take damage overnight. Be careful not to add too many Dailies at once!\n\n To-Dos are your To-Do list. Completing a To-Do earns you gold and experience. You never lose health from To-Dos. You can add a due date to a To-Do by tapping to edit.", "webFaqAnswer1": "Good Habits (the ones with a ) are tasks that you can do many times a day, such as eating vegetables. Bad Habits (the ones with a ) are tasks that you should avoid, like biting nails. Habits with a and a have a good choice and a bad choice, like taking the stairs vs. taking the elevator. Good Habits award Experience and Gold. Bad Habits subtract Health.\n

\n Dailies are tasks that you have to do every day, like brushing your teeth or checking your email. You can adjust the days that a Daily is due by clicking the pencil item to edit it. If you skip a Daily that is due, your avatar will take damage overnight. Be careful not to add too many Dailies at once!\n

\n To-Dos are your To-Do list. Completing a To-Do earns you Gold and Experience. You never lose Health from To-Dos. You can add a due date to a To-Do by clicking the pencil icon to edit.", "faqQuestion2": "Kérhetnék néhány feladat példát?", - "iosFaqAnswer2": "The wiki has four lists of sample tasks to use as inspiration:\n

\n * [Sample Habits](http://habitica.wikia.com/wiki/Sample_Habits)\n * [Sample Dailies](http://habitica.wikia.com/wiki/Sample_Dailies)\n * [Sample To-Dos](http://habitica.wikia.com/wiki/Sample_To-Dos)\n * [Sample Custom Rewards](http://habitica.wikia.com/wiki/Sample_Custom_Rewards)", - "webFaqAnswer2": "The wiki has four lists of sample tasks to use as inspiration:\n * [Sample Habits](http://habitica.wikia.com/wiki/Sample_Habits)\n * [Sample Dailies](http://habitica.wikia.com/wiki/Sample_Dailies)\n * [Sample To-Dos](http://habitica.wikia.com/wiki/Sample_To-Dos)\n * [Sample Custom Rewards](http://habitica.wikia.com/wiki/Sample_Custom_Rewards)", + "iosFaqAnswer2": "A wikin található négy lista példafeladat ihletként:\n

\n * [Példa Szokások](http://habitica.wikia.com/wiki/Sample_Habits)\n * [Példa Napi feladatok](http://habitica.wikia.com/wiki/Sample_Dailies)\n * [Példa Tennivalók](http://habitica.wikia.com/wiki/Sample_To-Dos)\n * [Példa Egyéni jutalmak](http://habitica.wikia.com/wiki/Sample_Custom_Rewards)", + "webFaqAnswer2": "A wikin található négy lista példafeladat ihletként:\n * [Példa Szokások](http://habitica.wikia.com/wiki/Sample_Habits)\n * [Példa Napi feladatok](http://habitica.wikia.com/wiki/Sample_Dailies)\n * [Példa Tennivalók](http://habitica.wikia.com/wiki/Sample_To-Dos)\n * [Példa Egyéni jutalmak](http://habitica.wikia.com/wiki/Sample_Custom_Rewards)", "faqQuestion3": "Miért változik meg a feladataim színe?", "iosFaqAnswer3": "Your tasks change color based on how well you are currently accomplishing them! Each new task starts out as a neutral yellow. Perform Dailies or positive Habits more frequently and they move toward blue. Miss a Daily or give in to a bad Habit and the task moves toward red. The redder a task, the more rewards it will give you, but if it's a Daily or bad Habit, the more it will hurt you! This helps motivate you to complete the tasks that are giving you trouble.", "webFaqAnswer3": "Your tasks change color based on how well you are currently accomplishing them! Each new task starts out as a neutral yellow. Perform Dailies or positive Habits more frequently and they move toward blue. Miss a Daily or give in to a bad Habit and the task moves toward red. The redder a task, the more rewards it will give you, but if it’s a Daily or bad Habit, the more it will hurt you! This helps motivate you to complete the tasks that are giving you trouble.", - "faqQuestion4": "Why did my avatar lose health, and how do I regain it?", + "faqQuestion4": "Miért veszített az avatárom életerőt és hogyan visszaszerezni?", "iosFaqAnswer4": "There are several things that can cause you to take damage. First, if you left Dailies incomplete overnight, they will damage you. Second, if you tap a bad Habit, it will damage you. Finally, if you are in a Boss Battle with your Party and one of your Party mates did not complete all their Dailies, the Boss will attack you.\n\n The main way to heal is to gain a level, which restores all your health. You can also buy a Health Potion with gold from the Rewards column. Plus, at level 10 or above, you can choose to become a Healer, and then you will learn healing skills. If you are in a Party with a Healer, they can heal you as well.", "webFaqAnswer4": "There are several things that can cause you to take damage. First, if you left Dailies incomplete overnight, they will damage you. Second, if you click a bad Habit, it will damage you. Finally, if you are in a Boss Battle with your party and one of your party mates did not complete all their Dailies, the Boss will attack you.\n

\n The main way to heal is to gain a level, which restores all your Health. You can also buy a Health Potion with Gold from the Rewards column. Plus, at level 10 or above, you can choose to become a Healer, and then you will learn healing skills. If you are in a party (under Social > Party) with a Healer, they can heal you as well.", - "faqQuestion5": "How do I play Habitica with my friends?", + "faqQuestion5": "Hogyan tudok játszani a barátaimmal Habitica-t?", "iosFaqAnswer5": "The best way is to invite them to a Party with you! Parties can go on quests, battle monsters, and cast skills to support each other. Go to Menu > Party and click \"Create New Party\" if you don't already have a Party. Then tap on the Members list, and tap Invite in the upper right-hand corner to invite your friends by entering their User ID (a string of numbers and letters that they can find under Settings > Account Details on the app, and Settings > API on the website). On the website, you can also invite friends via email, which we will add to the app in a future update.\n\nOn the website, you and your friends can also join Guilds, which are public chat rooms. Guilds will be added to the app in a future update!", "webFaqAnswer5": "The best way is to invite them to a party with you, under Social > Party! Parties can go on quests, battle monsters, and cast skills to support each other. You can also join guilds together (Social > Guilds). Guilds are chat rooms focusing on a shared interest or the pursuit of a common goal, and can be public or private. You can join as many guilds as you'd like, but only one party.\n

\n For more detailed info, check out the wiki pages on [Parties](http://habitrpg.wikia.com/wiki/Party) and [Guilds](http://habitrpg.wikia.com/wiki/Guilds).", - "faqQuestion6": "How do I get a Pet or Mount?", + "faqQuestion6": "Hogyan szerezhetek háziállatot, vagy hátast?", "iosFaqAnswer6": "At level 3, you will unlock the Drop System. Every time you complete a task, you'll have a random chance at receiving an egg, a hatching potion, or a piece of food. They will be stored in Menu > Items.\n\n To hatch a Pet, you'll need an egg and a hatching potion. Tap on the egg to determine the species you want to hatch, and select \"Hatch Egg.\" Then choose a hatching potion to determine its color! Go to Menu > Pets to equip your new Pet to your avatar by clicking on it. \n\n You can also grow your Pets into Mounts by feeding them under Menu > Pets. Tap on a Pet, and then select \"Feed Pet\"! You'll have to feed a pet many times before it becomes a Mount, but if you can figure out its favorite food, it will grow more quickly. Use trial and error, or [see the spoilers here](http://habitica.wikia.com/wiki/Food#Food_Preferences). Once you have a Mount, go to Menu > Mounts and tap on it to equip it to your avatar.\n\n You can also get eggs for Quest Pets by completing certain Quests. (See below to learn more about Quests.)", "webFaqAnswer6": "At level 3, you will unlock the Drop System. Every time you complete a task, you'll have a random chance at receiving an egg, a hatching potion, or a piece of food. They will be stored in Inventory > Market.\n

\n To hatch a Pet, you'll need an egg and a hatching potion. Click on the egg to determine the species you want to hatch, and then click on the hatching potion to determine its color! Go to Inventory > Pets to equip it to your avatar by clicking on it.\n

\n You can also grow your Pets into Mounts by feeding them under Inventory > Pets. Click on a Pet, and then click on a piece of food from the right-hand menu to feed it! You'll have to feed a pet many times before it becomes a Mount, but if you can figure out its favorite food, it will grow more quickly. Use trial and error, or [see the spoilers here](http://habitica.wikia.com/wiki/Food#Food_Preferences). Once you have a Mount, go to Inventory > Mounts and click on it to equip it to your avatar.\n

\n You can also get eggs for Quest Pets by completing certain Quests. (See below to learn more about Quests.)", - "faqQuestion7": "How do I become a Warrior, Mage, Rogue, or Healer?", + "faqQuestion7": "Hogyan tudok Harcos, Mágus, Tolvaj, vagy Gyógyító lenni?", "iosFaqAnswer7": "At level 10, you can choose to become a Warrior, Mage, Rogue, or Healer. (All players start as Warriors by default.) Each Class has different equipment options, different Skills that they can cast after level 11, and different advantages. Warriors can easily damage Bosses, withstand more damage from their tasks, and help make their Party tougher. Mages can also easily damage Bosses, as well as level up quickly and restore Mana for their party. Rogues earn the most gold and find the most item drops, and they can help their Party do the same. Finally, Healers can heal themselves and their Party members.\n\n If you don't want to choose a Class immediately -- for example, if you are still working to buy all the gear of your current class -- you can click “Decide Later” and choose later under Menu > Choose Class.", "webFaqAnswer7": "At level 10, you can choose to become a Warrior, Mage, Rogue, or Healer. (All players start as Warriors by default.) Each Class has different equipment options, different Skills that they can cast after level 11, and different advantages. Warriors can easily damage Bosses, withstand more damage from their tasks, and help make their party tougher. Mages can also easily damage Bosses, as well as level up quickly and restore Mana for their party. Rogues earn the most Gold and find the most item drops, and they can help their party do the same. Finally, Healers can heal themselves and their party members.\n

\n If you don't want to choose a Class immediately -- for example, if you are still working to buy all the gear of your current class -- you can click \"Opt Out\" and re-enable it later under User > Stats.", - "faqQuestion8": "What is the blue stat bar that appears in the Header after level 10?", + "faqQuestion8": "Mi az a kék státusz sáv, ami a fejlécben jelenik meg 10-es szint után?", "iosFaqAnswer8": "The blue bar that appeared when you hit level 10 and chose a Class is your Mana bar. As you continue to level up, you will unlock special Skills that cost Mana to use. Each Class has different Skills, which appear after level 11 under Menu > Use Skills. Unlike your health bar, your Mana bar does not reset when you gain a level. Instead, Mana is gained when you complete Good Habits, Dailies, and To-Dos, and lost when you indulge bad Habits. You'll also regain some Mana overnight -- the more Dailies you completed, the more you will gain.", "webFaqAnswer8": "The blue bar that appeared when you hit level 10 and chose a Class is your Mana bar. As you continue to level up, you will unlock special Skills that cost Mana to use. Each Class has different Skills, which appear after level 11 in a special section in the Rewards Column. Unlike your Health bar, your Mana bar does not reset when you gain a level. Instead, Mana is gained when you complete Good Habits, Dailies, and To-Dos, and lost when you indulge bad Habits. You’ll also regain some Mana overnight -- the more Dailies you completed, the more you will gain.", - "faqQuestion9": "How do I fight monsters and go on Quests?", + "faqQuestion9": "Hogyan harcolhatok szörnyekkel és mehetek küldetésekre?", "iosFaqAnswer9": "First, you need to join or start a Party (see above). Although you can battle monsters alone, we recommend playing in a group, because this will make Quests much easier. Plus, having a friend to cheer you on as you accomplish your tasks is very motivating!\n\n Next, you need a Quest Scroll, which are stored under Menu > Items. There are three ways to get a scroll:\n\n - At level 15, you get a Quest-line, aka three linked quests. More Quest-lines unlock at levels 30, 40, and 60 respectively. \n - When you invite people to your Party, you'll be rewarded with the Basi-List Scroll!\n - You can buy Quests from the Quests Page on the [website](https://habitica.com/#/options/inventory/quests) for Gold and Gems. (We will add this feature to the app in a future update.)\n\n To battle the Boss or collect items for a Collection Quest, simply complete your tasks normally, and they will be tallied into damage overnight. (Reloading by pulling down on the screen may be required to see the Boss's health bar go down.) If you are fighting a Boss and you missed any Dailies, the Boss will damage your Party at the same time that you damage the Boss. \n\n After level 11 Mages and Warriors will gain Skills that allow them to deal additional damage to the Boss, so these are excellent classes to choose at level 10 if you want to be a heavy hitter.", "webFaqAnswer9": "First, you need to join or start a party (under Social > Party). Although you can battle monsters alone, we recommend playing in a group, because this will make quests much easier. Plus, having a friend to cheer you on as you accomplish your tasks is very motivating!\n

\n Next, you need a Quest Scroll, which are stored under Inventory > Quests. There are three ways to get a scroll:\n

\n * When you invite people to your party, you’ll be rewarded with the Basi-List Scroll!\n * At level 15, you get a Quest-line, i.e., three linked quests. More Quest-lines unlock at levels 30, 40, and 60 respectively.\n * You can buy Quests from the Quests Page (Inventory > Quests) for Gold and Gems.\n

\n To battle the Boss or collect items for a Collection Quest, simply complete your tasks normally, and they will be tallied into damage overnight. (Reloading may be required to see the Boss's Health bar go down.) If you are fighting a Boss and you missed any Dailies, the Boss will damage your party at the same time that you damage the Boss.\n

\n After level 11 Mages and Warriors will gain Skills that allow them to deal additional damage to the Boss, so these are excellent classes to choose at level 10 if you want to be a heavy hitter.", - "faqQuestion10": "What are Gems, and how do I get them?", + "faqQuestion10": "Mik azok a drágakövek, és hogyan szerezhetek?", "iosFaqAnswer10": "Gems are purchased with real money by tapping on the gem icon in the header. When people buy gems, they are helping us to keep the site running. We're very grateful for their support!\n\n In addition to buying gems directly, there are three other ways players can gain gems:\n\n * Win a Challenge on the [website](https://habitica.com) that has been set up by another player under Social > Challenges. (We will be adding Challenges to the app in a future update!)\n * Subscribe on the [website](https://habitica.com/#/options/settings/subscription) and unlock the ability to buy a certain number of gems per month.\n * Contribute your skills to the Habitica project. See this wiki page for more details: [Contributing to Habitica](http://habitica.wikia.com/wiki/Contributing_to_Habitica).\n\n Keep in mind that items purchased with gems do not offer any statistical advantages, so players can still make use of the app without them!", "webFaqAnswer10": "Gems are [purchased with real money](https://habitica.com/#/options/settings/subscription), although [subscribers](https://habitica.com/#/options/settings/subscription) can purchase them with Gold. When people subscribe or buy Gems, they are helping us to keep the site running. We're very grateful for their support!\n

\n In addition to buying Gems directly or becoming a subscriber, there are two other ways players can gain Gems:\n

\n * Win a Challenge that has been set up by another player under Social > Challenges.\n * Contribute your skills to the Habitica project. See this wiki page for more details: [Contributing to Habitica](http://habitica.wikia.com/wiki/Contributing_to_Habitica)\n

\n Keep in mind that items purchased with Gems do not offer any statistical advantages, so players can still make use of the site without them!", - "faqQuestion11": "How do I report a bug or request a feature?", + "faqQuestion11": "Hogy tudok hibát jelezni, vagy funkciót kérni?", "iosFaqAnswer11": "You can report a bug, request a feature, or send feedback under Menu > Report a Bug and Menu > Send Feedback! We'll do everything we can to assist you.", "webFaqAnswer11": "Bug reports are collected on GitHub. Go to [Help > Report a Bug](https://github.com/HabitRPG/habitrpg/issues/2760) and follow the instructions. Don't worry, we'll get you fixed up soon!\n

\n Feature requests are collected on Trello. Go to [Help > Request a Feature](https://trello.com/c/odmhIqyW/440-read-first-table-of-contents) and follow the instructions. Ta-da!", - "faqQuestion12": "How do I battle a World Boss?", + "faqQuestion12": "Hogyan harcolhatok Világ Főellenséggel?", "iosFaqAnswer12": "World Bosses are special monsters that appear in the Tavern. All active users are automatically battling the Boss, and their tasks and skills will damage the Boss as usual.\n\n You can also be in a normal Quest at the same time. Your tasks and skills will count towards both the World Boss and the Boss/Collection Quest in your party.\n\n A World Boss will never hurt you or your account in any way. Instead, it has a Rage Bar that fills when users skip Dailies. If its Rage bar fills, it will attack one of the Non-Player Characters around the site and their image will change.\n\n You can read more about [past World Bosses](http://habitica.wikia.com/wiki/World_Bosses) on the wiki.", "webFaqAnswer12": "World Bosses are special monsters that appear in the Tavern. All active users are automatically battling the Boss, and their tasks and skills will damage the Boss as usual.\n

\n You can also be in a normal Quest at the same time. Your tasks and skills will count towards both the World Boss and the Boss/Collection Quest in your party.\n

\n A World Boss will never hurt you or your account in any way. Instead, it has a Rage Bar that fills when users skip Dailies. If its Rage bar fills, it will attack one of the Non-Player Characters around the site and their image will change.\n

\n You can read more about [past World Bosses](http://habitica.wikia.com/wiki/World_Bosses) on the wiki.", "iosFaqStillNeedHelp": "If you have a question that isn't on this list, come ask in the Tavern chat under Menu > Tavern! We're happy to help.", - "webFaqStillNeedHelp": "If you have a question that isn't on this list, come ask in the [Newbies Guild](https://habitica.com/#/options/groups/guilds/5481ccf3-5d2d-48a9-a871-70a7380cee5a)! We're happy to help." + "webFaqStillNeedHelp": "Ha van olyan kérdésed, amit nem találsz a listán, akkor gyere és kérdezz itt: [Kezdők Céhe](https://habitica.com/#/options/groups/guilds/5481ccf3-5d2d-48a9-a871-70a7380cee5a)! Örömmel segítünk." } \ No newline at end of file diff --git a/common/locales/hu/gear.json b/common/locales/hu/gear.json index 94548b4a1c..f32f06f247 100644 --- a/common/locales/hu/gear.json +++ b/common/locales/hu/gear.json @@ -149,15 +149,19 @@ "weaponArmoireRancherLassoText": "Rancher Lasso", "weaponArmoireRancherLassoNotes": "Lassos: the ideal tool for rounding up and wrangling. Increases Strength by <%= str %>, Perception by <%= per %>, and Intelligence by <%= int %>. Enchanted Armoire: Rancher Set (Item 3 of 3).", "weaponArmoireMythmakerSwordText": "Mythmaker Sword", - "weaponArmoireMythmakerSwordNotes": "Though it may seem humble, this sword has made many mythic heroes. Increases Perception and Strength by <%= attrs %> each. Enchanted Armoire: Golden Toga Set (Item 3 of 3)", + "weaponArmoireMythmakerSwordNotes": "Though it may seem humble, this sword has made many mythic heroes. Increases Perception and Strength by <%= attrs %> each. Enchanted Armoire: Golden Toga Set (Item 3 of 3).", "weaponArmoireIronCrookText": "Iron Crook", - "weaponArmoireIronCrookNotes": "Fiercely hammered from iron, this iron crook is good at herding sheep. Increases Perception and Strength by <%= attrs %> each. Enchanted Armoire: Horned Iron Set (Item 3 of 3)", + "weaponArmoireIronCrookNotes": "Fiercely hammered from iron, this iron crook is good at herding sheep. Increases Perception and Strength by <%= attrs %> each. Enchanted Armoire: Horned Iron Set (Item 3 of 3).", "weaponArmoireGoldWingStaffText": "Gold Wing Staff", "weaponArmoireGoldWingStaffNotes": "The wings on this staff constantly flutter and twist. Increases all attributes by <%= attrs %> each. Enchanted Armoire: Independent Item.", "weaponArmoireBatWandText": "Bat Wand", "weaponArmoireBatWandNotes": "This wand can turn any task into a bat! Wave it about and watch them fly away. Increases Intelligence by <%= int %> and Perception by <%= per %>. Enchanted Armoire: Independent Item.", "weaponArmoireShepherdsCrookText": "Shepherd's Crook", "weaponArmoireShepherdsCrookNotes": "Useful for herding gryphons. Increases Constitution by <%= con %>. Enchanted Armoire: Shepherd Set (Item 1 of 3).", + "weaponArmoireCrystalCrescentStaffText": "Crystal Crescent Staff", + "weaponArmoireCrystalCrescentStaffNotes": "Summon the power of the crescent moon with this shining staff! Increases Intelligence and Strength by <%= attrs %> each. Enchanted Armoire: Crystal Crescent Set (Item 3 of 3).", + "weaponArmoireBlueLongbowText": "Blue Longbow", + "weaponArmoireBlueLongbowNotes": "Ready... Aim... Fire! This bow has great range. Increases Perception by 9, Constitution by 8, and Strength by 7. Enchanted Armoire: Independent Item.", "armor": "páncél", "armorBase0Text": "Egyszerű ruházat", "armorBase0Notes": "Átlagos ruházat. Nem ad semmi előnyt.", @@ -222,7 +226,7 @@ "armorSpecialBirthday2015Text": "Idétlen Buliköpeny", "armorSpecialBirthday2015Notes": "Boldog Szülinapot, Habitica! Viseld ezt az Idétlen Partiköpenyt, hogy megünnepeld ezt a csodás napot. Nem ad semmi előnyt.", "armorSpecialGaymerxText": "Szivárvány harci páncél.", - "armorSpecialGaymerxNotes": "A GaymerX ünnepi szezon alkalmával ez a spéci páncél sugárzó szívárványszín mintában pompázik. A GaymerX egy játék konferencia, ami az LGBTQ-t ünnepli és itt a játék mindenkinek szabad. Az InterContinental-ban tartják, San Francisco belvárosában, Július 11-13-ig. Nem ad semmilyen bónuszt.", + "armorSpecialGaymerxNotes": "In celebration of the GaymerX Conference, this special armor is decorated with a radiant, colorful rainbow pattern! GaymerX is a game convention celebrating LGTBQ and gaming and is open to everyone.", "armorSpecialSpringRogueText": "Karcsú macska kosztüm", "armorSpecialSpringRogueNotes": "Hibátlanul ápolva. Növeli az észlelést <%= per %> ponttal. Korlátozott példányszámú 2014-es Tavaszi Felszerelés.", "armorSpecialSpringWarriorText": "Lóhere-acél páncél", @@ -309,6 +313,8 @@ "armorMystery201508Notes": "Run fast as a flash in the fluffy Cheetah Costume! Confers no benefit. August 2015 Subscriber Item.", "armorMystery201509Text": "Werewolf Costume", "armorMystery201509Notes": "This IS a costume, right? Confers no benefit. September 2015 Subscriber Item.", + "armorMystery201511Text": "Wooden Armor", + "armorMystery201511Notes": "Considering this armor was carved directly from a magical log, it's surprisingly comfortable. Confers no benefit. November 2015 Subscriber Item.", "armorMystery301404Text": "Steampunk öltözet", "armorMystery301404Notes": "Jól vasalt és lenyűgöző, mi! Nem ad semmi előnyt. 3015 februári előfizetői tárgy.", "armorArmoireLunarArmorText": "Soothing Lunar Armor", @@ -327,6 +333,8 @@ "armorArmoireShepherdRobesNotes": "The fabric is cool and breathable, perfect for a hot day herding gryphons in the desert. Increases Strength and Perception by <%= attrs %> each. Enchanted Armoire: Shepherd Set (Item 2 of 3).", "armorArmoireRoyalRobesText": "Royal Robes", "armorArmoireRoyalRobesNotes": "Wonderful ruler, rule all day long! Increases Constitution, Intelligence, and Perception by <%= attrs %> each. Enchanted Armoire: Royal Set (Item 3 of 3).", + "armorArmoireCrystalCrescentRobesText": "Crystal Crescent Robes", + "armorArmoireCrystalCrescentRobesNotes": "These magical robes are luminescent at night. Increases Constitution and Perception by <%= attrs %> each. Enchanted Armoire: Crystal Crescent Set (Item 2 of 3).", "headgear": "Fejviselet", "headBase0Text": "Nincs sisak", "headBase0Notes": "Nincs fejfedő", @@ -447,7 +455,7 @@ "headSpecialFall2015HealerText": "Hat of Frog", "headSpecialFall2015HealerNotes": "This is an extremely serious hat that is worthy of only the most advanced potioners. Increases Intelligence by <%= int %>. Limited Edition 2015 Autumn Gear.", "headSpecialGaymerxText": "Szívárványos harcisisak", - "headSpecialGaymerxNotes": "A GaymerX ünnepi szezon alkalmával ez a spéci sisak sugárzó szivárványszín mintában pompázik. A GaymerX egy játék konferencia, ami az LGBTQ-t ünnepli és itt a játék mindenkinek szabad. Az InterContinental-ban tartják, San Francisco belvárosában, Július 11-13-ig. Nem ad semmilyen bónuszt.", + "headSpecialGaymerxNotes": "In celebration of the GaymerX Conference, this special helmet is decorated with a radiant, colorful rainbow pattern! GaymerX is a game convention celebrating LGTBQ and gaming and is open to everyone.", "headMystery201402Text": "Szárnyas sisak", "headMystery201402Notes": "Ez a szárnyas diadém szélsebessé tesz! Nem ad bónuszt. 2014 februári előfizetői tárgy.", "headMystery201405Text": "Az elme tüze", @@ -470,6 +478,8 @@ "headMystery201508Notes": "This cozy cheetah hat is very fuzzy! Confers no benefit. August 2015 Subscriber Item.", "headMystery201509Text": "Werewolf Mask", "headMystery201509Notes": "This IS a mask, right? Confers no benefit. September 2015 Subscriber Item.", + "headMystery201511Text": "Log Crown", + "headMystery201511Notes": "Count the number of rings to learn how old this crown is. Confers no benefit. November 2015 Subscriber Item.", "headMystery301404Text": "Elegáns Cilinder", "headMystery301404Notes": "Egy elegáns cilinder a legnemesebb előkelőségeknek! 3015 januári előfizetői tárgy. Nem ad semmi előnyt.", "headMystery301405Text": "Egyszerű Cilinder", @@ -506,6 +516,8 @@ "headArmoireBlueFloppyHatNotes": "Many spells have been sewn into this simple hat, giving it a brilliant blue color. Increases Constitution, Intelligence, and Perception by <%= attrs %> each. Enchanted Armoire: Independent Item.", "headArmoireShepherdHeaddressText": "Shepherd Headdress", "headArmoireShepherdHeaddressNotes": "Sometimes the gryphons that you herd like to chew on this headdress, but it makes you seem more intelligent nonetheless. Increases Intelligence by <%= int %>. Enchanted Armoire: Shepherd Set (Item 3 of 3).", + "headArmoireCrystalCrescentHatText": "Crystal Crescent Hat", + "headArmoireCrystalCrescentHatNotes": "The design on this hat waxes and wanes with the phases of the moon. Increases Intelligence and Perception by <%= attrs %> each. Enchanted Armoire: Crystal Crescent Set (Item 1 of 3).", "offhand": "Balkezes tárgy", "shieldBase0Text": "Nincs balkezes felszerelés", "shieldBase0Notes": "Nincs pajzs vagy másodlagos fegyver.", diff --git a/common/locales/hu/limited.json b/common/locales/hu/limited.json index 5dfb0bfb73..0d89b9bf15 100644 --- a/common/locales/hu/limited.json +++ b/common/locales/hu/limited.json @@ -21,6 +21,7 @@ "valentineCardAchievementText": "Aww, you and your friend must really care about each other! Sent or received <%= cards %> Valentine's Day cards.", "polarBear": "Jegesmedve", "turkey": "Pulyka", + "gildedTurkey": "Gilded Turkey", "polarBearPup": "Jegesmedvebocs", "jackolantern": "Töklámpás", "seasonalShop": "Szezonális Bolt", diff --git a/common/locales/hu/messages.json b/common/locales/hu/messages.json index 8954f780e6..ff4da1c30d 100644 --- a/common/locales/hu/messages.json +++ b/common/locales/hu/messages.json @@ -24,31 +24,31 @@ "messageDropEgg": "Találtál egy <%= dropText %> tojást! <%= dropNotes %>", "messageDropPotion": "Találtál egy <%= dropText %> keltetőfőzetet! <%= dropNotes %>", "messageDropQuest": "Találtál egy küldetést!", - "messageDropMysteryItem": "You open the box and find <%= dropText %>!", + "messageDropMysteryItem": "Kinyitottad a dobozt és találtál egy <%= dropText %>!", "messageFoundQuest": "Megtaláltad a \"<%= questText %>\" küldetést!", "messageAlreadyPurchasedGear": "You purchased this gear in the past, but do not currently own it. You can buy it again in the rewards column on the tasks page.", "messageAlreadyOwnGear": "You already own this item. Equip it by going to the equipment page.", "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!", - "messageInsufficientGems": "Not enough gems!", - "messageAuthPasswordMustMatch": ":password and :confirmPassword don't match", - "messageAuthCredentialsRequired": ":username, :email, :password, :confirmPassword required", - "messageAuthUsernameTaken": "Username already taken", - "messageAuthEmailTaken": "Email already taken", - "messageAuthNoUserFound": "No user found.", - "messageAuthMustBeLoggedIn": "You must be logged in.", + "messageInsufficientGems": "Nincs elég drágakő!", + "messageAuthPasswordMustMatch": ":password és :confirmPassword nem egyeznek", + "messageAuthCredentialsRequired": ":username, :email, :password, :confirmPassword szükséges", + "messageAuthUsernameTaken": "a felhasználónév már foglalt", + "messageAuthEmailTaken": "Az E-Mail cím már foglalt.", + "messageAuthNoUserFound": "felhasználó nem található.", + "messageAuthMustBeLoggedIn": "Be kell jelentkezned.", "messageAuthMustIncludeTokens": "You must include a token and uid (user id) in your request", - "messageGroupNotFound": "Group not found or you don't have access.", - "messageGroupAlreadyInParty": "Already in a party, try refreshing.", - "messageGroupOnlyLeaderCanUpdate": "Only the group leader can update the group!", - "messageGroupRequiresInvite": "Can't join a group you're not invited to.", - "messageGroupCannotRemoveSelf": "You cannot remove yourself!", - "messageGroupChatBlankMessage": "You cannot send a blank message", - "messageGroupChatLikeOwnMessage": "Can't like your own message. Don't be that person.", - "messageGroupChatFlagOwnMessage": "Can't report your own message.", - "messageGroupChatFlagAlreadyReported": "You have already reported this message", - "messageGroupChatNotFound": "Message not found!", + "messageGroupNotFound": "A csoport nem található, vagy nincs hozzá jogosultságod.", + "messageGroupAlreadyInParty": "Már csapatban vagy, próbálj frissíteni.", + "messageGroupOnlyLeaderCanUpdate": "Csak a csoportvezető tudja frissíteni a csoportot!", + "messageGroupRequiresInvite": "Nem léphetsz be olyan csoportba, ahova nem vagy meghívva.", + "messageGroupCannotRemoveSelf": "Nem törölheted magadat!", + "messageGroupChatBlankMessage": "Nem küldhetsz üres üzenetet", + "messageGroupChatLikeOwnMessage": "Nem kedvelheted a saját üzenetedet. Ne legyél az az ember.", + "messageGroupChatFlagOwnMessage": "Nem jelentheted a saját üzenetedet.", + "messageGroupChatFlagAlreadyReported": "Már jelentetted ezt az üzenetet", + "messageGroupChatNotFound": "Üzenet nem található!", "messageGroupChatAdminClearFlagCount": "Only an admin can clear the flag count!", "messageUserOperationProtected": "path `<%= operation %>` was not saved, as it's a protected path.", "messageUserOperationNotFound": "<%= operation %> operation not found" diff --git a/common/locales/hu/noscript.json b/common/locales/hu/noscript.json index 6057268ef2..d2ee2ee478 100644 --- a/common/locales/hu/noscript.json +++ b/common/locales/hu/noscript.json @@ -1,6 +1,6 @@ { - "jsDisabledHeading": "Alas! Your browser doesn't have JavaScript enabled", - "jsDisabledHeadingFull": "Alas! Your browser doesn't have JavaScript enabled and without it, Habitica can't work properly", - "jsDisabledText": "Habitica can't properly display the site without it!", - "jsDisabledLink": "Please enable JavaScript to continue!" + "jsDisabledHeading": "Bocsi! A böngésződben nincs engedélyezve a JavaScript.", + "jsDisabledHeadingFull": "Bocsi! A böngésződben nincs engedélyezve a JavaScript és anélkül a Habitica nem tud rendesen működni.", + "jsDisabledText": "Habitica nem tudja tökéletesen megjeleníteni az oldalt nélküle.", + "jsDisabledLink": "Kérlek, engedélyezd a JavaScriptet, hogy folytathasd." } \ No newline at end of file diff --git a/common/locales/hu/npc.json b/common/locales/hu/npc.json index 3cc63741dd..919c25cf9d 100644 --- a/common/locales/hu/npc.json +++ b/common/locales/hu/npc.json @@ -5,16 +5,16 @@ "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 won't hurt you at the day's end, but you can still check them off.", + "danielText": "Üdvözlet a Fogadóban! Maradj egy kicsit és találkozz a helyiekkel. Ha pihenni szeretnél (nyaralás? betegség?), elszállásollak a Fogadóban. Ameddig ott vagy, nem fognak a Napi feladatok a nap végén megsérteni, de ennek ellenére is kipipálhatod őket.", "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.", "danielTextBroken": "Welcome to the Tavern... I guess... If you need to rest, 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... if you have the energy...", "danielText2Broken": "Oh... 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 a kereskedő", "welcomeMarket": "Üdvözöllek a Piacon! Vegyél ritka tojásokat és főzeteket. Add el a feleselges készleted. Vegyél igénybe hasznos szolgáltatásokat! Nézd meg mit tudunk ajánlani.", - "displayItemForGold": "Do you want to sell a <%= itemType %>?", + "displayItemForGold": "El akarod adni <%= itemType %>?", "displayEggForGold": "Do you want to sell a <%= itemType %> Egg?", "displayPotionForGold": "Do you want to sell a <%= itemType %> Potion?", - "sellForGold": "Sell it for <%= gold %> Gold", + "sellForGold": "Add el <%= gold %> Aranyért", "buyGems": "Drágakő vásárlás", "justin": "Justin", "ian": "Ian", @@ -31,7 +31,7 @@ "payWithCard": "Fizess kártyával", "payNote": "Megj.: A PayPal néha elég lassú. Azt ajánljuk, hogy inkább kártyával fizess.", "card": "Kártya", - "amazonInstructions": "Click the button to pay using Amazon Payments", + "amazonInstructions": "Kattints a gombra, hogy az Amazon Payments-el fizess.", "paymentMethods": "Fizetési módok:", "classGear": "Kaszt felszerelés", "classGearText": "Először is: ne pánikolj! A régi felszerelésed a tárgylistában van és most a <%= klass %> tanonc felszerelés van rajtad. A saját osztályod felszerelésének a hordása 50%-os bónuszt ad a jellemzőidhez. Egyébként nyugodtan visszaveheted a régi felszerelésed.", @@ -63,18 +63,18 @@ "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!", - "tourAvatarProceed": "Show me my tasks!", + "tourOkay": "Oké!", + "tourAwesome": "Fantasztikus!", + "tourSplendid": "Pompás!", + "tourNifty": "Remek!", + "tourAvatarProceed": "Mutasd a feladataimat!", "tourToDosBrief": "To-Do List", "tourDailiesBrief": "Daily Tasks", - "tourDailiesProceed": "I'll be careful!", + "tourDailiesProceed": "Óvatos leszek!", "tourHabitsBrief": "Good & Bad Habits", "tourHabitsProceed": "Makes sense!", "tourRewardsBrief": "Reward List", - "tourRewardsProceed": "That's all!", + "tourRewardsProceed": "Ennyi!", "welcomeToHabit": "Welcome to Habitica!", "welcome1": "Create a basic avatar.", "welcome1notes": "This avatar will represent you as you progress.", diff --git a/common/locales/hu/quests.json b/common/locales/hu/quests.json index b290446aa8..7d8adac0ae 100644 --- a/common/locales/hu/quests.json +++ b/common/locales/hu/quests.json @@ -17,7 +17,7 @@ "inviteParty": "Csapat Meghívása Küldetéshez", "questInvitation": "Küldetés meghívás:", "questInvitationTitle": "Küldetés Meghívás", - "questInvitationInfo": "Invitation for the Quest <%= quest %>", + "questInvitationInfo": "Meghívás <%= quest %> küldetéshez", "askLater": "Kérdezd később", "questLater": "Küldetés Késöbb", "buyQuest": "Küldetés megvásárlása", @@ -29,7 +29,7 @@ "begin": "Indít", "bossHP": "Főellenség életereje", "bossStrength": "Főellenség ereje", - "rage": "Rage", + "rage": "Harag", "collect": "Gyűjts be", "collected": "Begyűjtve", "collectionItems": "<%= number %> <%= items %>", @@ -57,15 +57,15 @@ "noScrolls": "Nincsenek küldetés tekercseid.", "scrollsText1": "Küldetést csak csapatban csinálhatsz. Ha egyedül szeretnéd csinálni, akkor", "scrollsText2": "hozz létre egy üres csapatot", - "scrollsPre": "You haven't unlocked this quest yet!", + "scrollsPre": "Még nem tártad fel ezt a küldetést!", "alreadyEarnedQuestLevel": "You already earned this quest by attaining Level <%= level %>.", - "alreadyEarnedQuestReward": "You already earned this quest by completing <%= priorQuest %>.", + "alreadyEarnedQuestReward": "Már elnyerted ezt a küldetést, mivel megcsináltad a következő küldetést: <%= priorQuest %>.", "completedQuests": "Ezeken a küldetéseken vett részt:", "mustComplete": "Először teljesítened kell a küldetést <%= quest %>.", - "mustLevel": "You must be level <%= level %> to begin this quest.", + "mustLevel": "<%= level %> szintűnek kell lenned, hogy elkezdhesd ezt a küldetést.", "mustLvlQuest": "<%= level %> szintűnek kell lenned, hogy megvehesd ezt a küldetést.", - "mustInviteFriend": "To earn this quest, invite a friend to your Party. Invite someone now?", - "unlockByQuesting": "To earn this quest, complete <%= title %>.", + "mustInviteFriend": "Ahhoz, hogy elnyerd ezt a küldetést, hívj meg egy barátot a csapatodba. Meghívsz most valakit?", + "unlockByQuesting": "Ahhoz, hogy elnyerd ezt a küldetést, fejezd be: <%= title %>.", "sureCancel": "Biztosan meg akarod szakítani ezt a küldetést? Minden meghívási beleegyezés el fog veszni. A küldetés tulajdonosa megtartja a küldetés tekercset.", "sureAbort": "Biztosan el akarod hagyni ezt a küldetést? Ez meg fogja szakítani mindenkinek a csapatodban, és minden haladás el fog veszni. A küldetés tekercs vissza fog kerülni a küldetés tulajdonosához.", "doubleSureAbort": "Tuti biztos vagy benne? Győződj meg róla, hogy nem fognak a többiek utálni!", @@ -73,10 +73,10 @@ "questWarningBroken": "If new players join the party before the quest starts, they will also receive an invitation... However once the quest has started, no new party members can join the quest...", "bossRageTitle": "Örjöngés", "bossRageDescription": "Ha ez a sáv megtelik, akkor a Főellenség egy speciális támadást szabadít ránk.", - "startAQuest": "START A QUEST", - "startQuest": "Start Quest", - "whichQuestStart": "Which quest do you want to start?", - "getMoreQuests": "Get more quests", - "unlockedAQuest": "You unlocked a quest!", + "startAQuest": "KEZDD EL A KÜLDETÉST", + "startQuest": "Kezdd el a küldetést", + "whichQuestStart": "Melyik küldetést szeretnéd elkezdeni?", + "getMoreQuests": "Szerezz több küldetést", + "unlockedAQuest": "Feltártál egy küldetést!", "leveledUpReceivedQuest": "You leveled up to Level <%= level %> and received a quest scroll!" } \ No newline at end of file diff --git a/common/locales/hu/rebirth.json b/common/locales/hu/rebirth.json index d4a8fa0ef4..9483e0bb6c 100644 --- a/common/locales/hu/rebirth.json +++ b/common/locales/hu/rebirth.json @@ -16,11 +16,11 @@ "rebirthEarnAchievement": "Kapsz továbbá egy Kitűntetést, amiért új kalandot kezdesz!", "beReborn": "Szüless Újjá", "rebirthAchievement": "Új kalandot kezdtél! Ez a(z) <%= number %>. Újjászületésed. A legmagasabb szint, amit elértél: <%= level %>. Ahhoz, hogy halmozd ezt a Kitüntetést kezdj új kalandot, amikor elértél egy még magasabb Szintet!", - "rebirthAchievement100": "You've begun a new adventure! This is Rebirth <%= number %> for you, and the highest Level you've attained is 100 or higher. To stack this Achievement, begin your next new adventure when you've reached at least 100!", + "rebirthAchievement100": "Már elkezdtél egy új kalandot! Ez a <%= number %>. Újjászületésed, és a legmagasabb szint amit elértél 100, vagy több. Hogy elrakd ezt a kitüntetést, kezdj egy új kalandot, amikor 100-as vagy magasabb szinten vagy!", "rebirthBegan": "Új Kalandot kezdtél", "rebirthText": "Eddig <%= rebirths %> Új Kalandot kezdtél", "rebirthOrb": "Az Újjászületés Gömbjét használtad, hogy újrakezdj miután elérted ezt a Szintet", - "rebirthOrb100": "Used an Orb of Rebirth to start over after attaining Level 100 or higher", + "rebirthOrb100": "Használtad az Újjászületés Gömbjét, hogy újrakezd, miután elérted a 100-as, vagy magasabb szintet", "rebirthPop": "Kezdj új karaktert 1-es Szinttől, megtartva a kitűntetéseidet, a gyűjteményeidet, a feladataidat és a történetedet.", "rebirthName": "Az Újjászületés Gömbje", "reborn": "Újjászülettél, maximális szint <%= reLevel %>" diff --git a/common/locales/hu/settings.json b/common/locales/hu/settings.json index 5c33e43962..b5cc7e7d0e 100644 --- a/common/locales/hu/settings.json +++ b/common/locales/hu/settings.json @@ -14,10 +14,10 @@ "startCollapsedPop": "Ha ez be van állítva, akkor a cimkelista el lesz rejtve, amikor megnyitsz egy feladatot szerkesztésre.", "startAdvCollapsed": "A Haladó Beállítások a feladatoknál összecsukva indulnak.", "startAdvCollapsedPop": "Ha ez be van állítva, akkor a Haladó Beállítások el lesznek rejtve, amikor először megnyitsz egy feladatot szerkesztésre.", - "dontShowAgain": "Don't show this again", - "suppressLevelUpModal": "Don't show popup when gaining a level", - "suppressHatchPetModal": "Don't show popup when hatching a pet", - "suppressRaisePetModal": "Don't show popup when raising a pet into a mount", + "dontShowAgain": "Ne mutasd többet", + "suppressLevelUpModal": "Ne legyen felugró ablak szintlépéskor", + "suppressHatchPetModal": "Ne legyen felugró ablak háziállat kikelésekor", + "suppressRaisePetModal": "Ne legyen felugró ablak, amikor a háziállatból hátas lesz", "suppressStreakModal": "Don't show popup when attaining a Streak achievement", "showTour": "Mutasd a bemutatót", "restartTour": "A bevezető újraindítása onnantól, hogy csatlakoztál a Habitica-hez.", @@ -93,7 +93,7 @@ "loginNameDescription2": "Felhasználó->Profil", "loginNameDescription3": "oldalra hogy megváltoztasd a nevedet ami a avatarodnál és a chat üzeneteknél megjelenik.", "emailNotifications": "Email értesítések", - "wonChallenge": "You won a Challenge!", + "wonChallenge": "Megnyertél egy kihívást!", "newPM": "Kaptál egy Privát üzenetet", "giftedGems": "Ajándékoztál Drágaköveket", "giftedGemsInfo": "<%= amount %> Gems - by <%= name %>", @@ -124,7 +124,7 @@ "promoPlaceholder": "Írd be a Promóciós kódodat", "displayInviteToPartyWhenPartyIs1": "Display Invite To Party button when party has 1 member.", "saveCustomDayStart": "Save Custom Day Start", - "registration": "Registration", + "registration": "Regisztráció", "addLocalAuth": "Add local authentication:", "generateCodes": "Generate Codes", "generate": "Generate", @@ -143,5 +143,8 @@ "gemCapExtra": "Gem Cap Extra:", "mysticHourglasses": "Mystic Hourglasses:", "paypal": "PayPal", - "amazonPayments": "Amazon Payments" + "amazonPayments": "Amazon Payments", + "timezone": "Time Zone", + "timezoneUTC": "Habitica uses the time zone set on your PC, which is: <%= utc %>", + "timezoneInfo": "If that time zone is wrong, first reload this page using your browser's reload or refresh button to ensure that Habitica has the most recent information. If it is still wrong, adjust the time zone on your PC and then reload this page again.

If you use Habitica on other PCs or mobile devices, the time zone must be the same on them all. If your Dailies have been reseting at the wrong time, repeat this check on all other PCs and on a browser on your mobile devices." } \ No newline at end of file diff --git a/common/locales/hu/spells.json b/common/locales/hu/spells.json index 1d16da6190..bb4c5ef255 100644 --- a/common/locales/hu/spells.json +++ b/common/locales/hu/spells.json @@ -24,13 +24,13 @@ "spellRogueStealthText": "Lopakodás", "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": "Gyógyító fény", - "spellHealerHealNotes": "Light covers your body, healing your wounds. You regain health! (Based on: CON and INT)", + "spellHealerHealNotes": "Fények borítják a testedet, és gyógyítják a sebeidet. Visszanyered az egészségedet! (Az alkotmány és a hírszerzés alapján)", "spellHealerBrightnessText": "Perzselő ragyogás", - "spellHealerBrightnessNotes": "A burst of light dazzles your tasks. They become more blue and less red! (Based on: INT)", + "spellHealerBrightnessNotes": "A robbanás a fény kápráztatja el feladataidat. Kékké és kevésbé vörössé válnak! (A hírszerzés alapján)", "spellHealerProtectAuraText": "Védelmező aura", "spellHealerProtectAuraNotes": "You shield your party from damage. Your whole party gains a buff to Constitution! (Based on: Unbuffed CON)", "spellHealerHealAllText": "Áldás", - "spellHealerHealAllNotes": "A soothing aura surrounds you. Your whole party regains health! (Based on: CON and INT)", + "spellHealerHealAllNotes": "Nyugtató aura vesz körül. Az egész csapat visszanyeri egészségét! (Az alkotmány és hírszerzés alapján)", "spellSpecialSnowballAuraText": "Hógolyó", "spellSpecialSnowballAuraNotes": "Megdobsz egy csapttagot hógolyóval, ugyan mi rossz történhet? A csapattag új napjáig marad érvényben.", "spellSpecialSaltText": "Só", @@ -39,12 +39,12 @@ "spellSpecialSpookDustNotes": "Turn a friend into a floating blanket with eyes!", "spellSpecialOpaquePotionText": "Opálos főzet", "spellSpecialOpaquePotionNotes": "Szűntesd meg a Kísérteties sziporkák hatását.", - "spellSpecialShinySeedText": "Shiny Seed", - "spellSpecialShinySeedNotes": "Turn a friend into a joyous flower!", - "spellSpecialPetalFreePotionText": "Petal-Free Potion", - "spellSpecialPetalFreePotionNotes": "Cancel the effects of a Shiny Seed.", - "spellSpecialSeafoamText": "Seafoam", - "spellSpecialSeafoamNotes": "Turn a friend into a sea creature!", + "spellSpecialShinySeedText": "Fényes mag", + "spellSpecialShinySeedNotes": "Változtass át egy barátot egy vidám virággá!", + "spellSpecialPetalFreePotionText": "Szirom nélküli főzet", + "spellSpecialPetalFreePotionNotes": "Fényes mag hatásának megszüntetése.", + "spellSpecialSeafoamText": "Tengerhab", + "spellSpecialSeafoamNotes": "Változtass át egy barátot tengeri lénnyé!", "spellSpecialSandText": "Homok", - "spellSpecialSandNotes": "Cancel the effects of Seafoam." + "spellSpecialSandNotes": "Tengerhab hatásának megszüntetése." } \ No newline at end of file diff --git a/common/locales/hu/subscriber.json b/common/locales/hu/subscriber.json index 4f45d07917..894e32831e 100644 --- a/common/locales/hu/subscriber.json +++ b/common/locales/hu/subscriber.json @@ -69,7 +69,7 @@ "notEnoughHourglasses": "You don't have enough Mystic Hourglasses.", "hourglassBuyEquipSetConfirm": "Buy this full set of items for 1 Mystic Hourglass?", "hourglassBuyItemConfirm": "Buy this item for 1 Mystic Hourglass?", - "petsAlreadyOwned": "Pet already owned.", + "petsAlreadyOwned": "A háziállat már megvan neked.", "mountsAlreadyOwned": "Mount already owned.", "typeNotAllowedHourglass": "Item type not supported for purchase with Mystic Hourglass. Allowed types:", "petsNotAllowedHourglass": "Pet not available for purchase with Mystic Hourglass.", diff --git a/common/locales/hu/tasks.json b/common/locales/hu/tasks.json index 73181b3a80..04b69a181a 100644 --- a/common/locales/hu/tasks.json +++ b/common/locales/hu/tasks.json @@ -38,7 +38,7 @@ "streakCounter": "Szériaszámláló", "repeat": "Ismétlés", "repeatEvery": "Ismétel minden", - "repeatHelpTitle": "How often should this task be repeated?", + "repeatHelpTitle": "Milyen gyakran ismétlődjön ez a feladat?", "dailyRepeatHelpContent": "This task will be due every X days. You can set that value below.", "weeklyRepeatHelpContent": "This task will be due on the highlighted days below. Click on a day to activate/deactivate it.", "repeatDays": "Minden X nap", @@ -54,7 +54,7 @@ "complete": "Befejezett", "dated": "Határidős", "due": "Hátralevő", - "notDue": "Not Due", + "notDue": "nem esedékes", "grey": "Szürke", "score": "Pontszám", "rewards": "Jutalmak", @@ -88,23 +88,22 @@ "fortifyText": "Fortify will return all your tasks to a neutral (yellow) state, as if you'd just added them, and top your Health off to full. This is great if all your red tasks are making the game too hard, or all your blue tasks are making the game too easy. If starting fresh sounds much more motivating, spend the Gems and catch a reprieve!", "sureDelete": "Biztos vagy benne, hogy törölni akarod ezt a feladatot?", "streakCoins": "Széria bónusz!", - "pushTaskToTop": "Tetejére", - "pushTaskToBottom": "Rakd a feladatot legalulra", + "pushTaskToTop": "Push task to top. Hold ctrl or cmd to push to bottom.", "emptyTask": "Előbb írd be a feladat címét.", "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.", "habitHelp1": "Jó szokások olyan dolgok, amiket gyakran csinálsz. Aranyat és tapasztalatot adnak minden alkalommal amikor a <%= plusIcon %> kattintasz.", "habitHelp2": "Rossz szokások olyan dolgok, amiket inkább el akarsz kerülni. Csökkentik az életedet minden alkalommal, amikor a <%= minusIcon %> kattintasz.", - "habitHelp3": "For inspiration, check out these sample Habits!", + "habitHelp3": "Ihletért, nézd meg ezeket a példa szokásokat!", "newbieGuild": "Van még kérdésed? Tedd fel a kérdésed a <%= linkStart %>Newbies Guild<%= linkEnd %> céhben!", "dailyHelp1": "Dailies repeat <%= emphasisStart %>every day<%= emphasisEnd %> that they are active. Click the <%= pencilIcon %> to change the days a Daily is active.", "dailyHelp2": "Ha nem teljesíted az aktív napi feladataid, akkor életerőt vesztesz, amikor új nap kezdődik.", "dailyHelp3": "Dailies turn <%= emphasisStart %>redder<%= emphasisEnd %> when you miss them, and <%= emphasisStart %>bluer<%= emphasisEnd %> when you complete them. The redder the Daily, the more it will reward you... or hurt you.", "dailyHelp4": "Ha meg szeretnéd változtatni, hogy mikor kezdődjön az új nap, menj a <%= linkStart %>Beállítások > Honlap<%= linkEnd %> > Egyedi nap indításához.", - "dailyHelp5": "For inspiration, check out these sample Dailies!", + "dailyHelp5": "Ihletért, nézd meg ezeket a minta napi feladatokat!", "toDoHelp1": "A tennivalók sárgán indulnak, és minél tovább tart teljesíteni annál pirosabbak (értékesebbek) lesznek.", "toDoHelp2": "A tennivalók sosem sebeznek! Csak aranyat és tapasztalatot adnak.", "toDoHelp3": "Ha egy tennivalót listára bontasz, nem lesz olyan félelmetes, és növeli a tapsztalatot!", - "toDoHelp4": "For inspiration, check out these sample To-Dos!", + "toDoHelp4": "Ihletért, nézd meg ezeket a minta tennivalókat!", "rewardHelp1": "Az avatárodnak vásárolt felszerelést a <%= linkStart %>Tárgylista > Felszerelés<%= linkEnd %> alatt találod.", "rewardHelp2": "A felszerelések hatással vannak a tulajdonságaidra (<%= linkStart %>Avatar > Stats<%= linkEnd %>).", "rewardHelp3": "Különleges felszerelések itt jelennek meg a Globális Eseményekkor.", diff --git a/common/locales/it/backgrounds.json b/common/locales/it/backgrounds.json index 68a2a76b6f..43a9d4553e 100644 --- a/common/locales/it/backgrounds.json +++ b/common/locales/it/backgrounds.json @@ -125,5 +125,12 @@ "backgroundNightDunesText": "Dune Notturne", "backgroundNightDunesNotes": "Fai una passeggiata notturna tra le dune.", "backgroundSunsetOasisText": "Oasi al tramonto", - "backgroundSunsetOasisNotes": "Goditi l'oasi durante il tramonto." + "backgroundSunsetOasisNotes": "Goditi l'oasi durante il tramonto.", + "backgrounds122015": "SET 19: Released December 2015", + "backgroundAlpineSlopesText": "Alpine Slopes", + "backgroundAlpineSlopesNotes": "Ski on the Alpine Slopes.", + "backgroundSnowySunriseText": "Snowy Sunrise", + "backgroundSnowySunriseNotes": "Gaze at the Snowy Sunrise.", + "backgroundWinterTownText": "Winter Town", + "backgroundWinterTownNotes": "Bustle through a Winter Town." } \ No newline at end of file diff --git a/common/locales/it/death.json b/common/locales/it/death.json index 4138d7cd64..c3b758258e 100644 --- a/common/locales/it/death.json +++ b/common/locales/it/death.json @@ -5,11 +5,11 @@ "refillHealthTryAgain": "Ripristina salute e riprovaci", "dyingOftenTips": "Succede spesso? Qui trovi qualche consiglio! (in inglese)", "losingHealthWarning": "Attenzione - stai perdendo Salute!", - "losingHealthWarning2": "Non lasciare che i tuoi punti salute scendano a zero! Se lo farai, perderai un livello, il tuo Oro e un pezzo di equipaggiamento.", + "losingHealthWarning2": "Non lasciare che la tua Salute scenda a zero! Se lo farai, perderai un livello, il tuo Oro e un pezzo di equipaggiamento.", "toRegainHealth": "Per ripristinare la Salute:", "lowHealthTips1": "Sali di livello per curarti completamente!", "lowHealthTips2": "Compra una Pozione di Salute nella colonna delle Ricompense per ripristinare 15 punti Salute.", - "losingHealthQuickly": "Perdi punti Salute rapidamente?", + "losingHealthQuickly": "Perdi Salute rapidamente?", "lowHealthTips3": "Le Daily incomplete ti danneggiano a fine giornata, quindi fai attenzione a non aggiungerne troppe tutte insieme!", "lowHealthTips4": "Se una Daily non va completata in un certo giorno, puoi disattivarla cliccando sull'icona a forma di matita.", "goodLuck": "Buona fortuna!" diff --git a/common/locales/it/defaulttasks.json b/common/locales/it/defaulttasks.json index 4d68e44378..11806217d7 100644 --- a/common/locales/it/defaulttasks.json +++ b/common/locales/it/defaulttasks.json @@ -1,7 +1,7 @@ { "defaultHabit1Text": "Attività produttiva (Fai click sulla matita per modificare)", "defaultHabit1Notes": "Esempi di buone abitudini: + Mangia della verdura + 15 minuti di attività produttiva", - "defaultHabit2Text": "Mangia cibo spazzatura (Fai click sulla matita per modificare)", + "defaultHabit2Text": "Mangia Cibo Spazzatura (Fai click sulla matita per modificare)", "defaultHabit2Notes": "Esempi di cattive abitudini: - Fumare - Procrastinare", "defaultHabit3Text": "Usa le scale/l'ascensore (Fai click sulla matita per modificare)", "defaultHabit3Notes": "Esempi di buone/cattive abitudini: +/- Ho usato le scale/ascensore ; +/- Bevuto acqua/bibita", diff --git a/common/locales/it/faq.json b/common/locales/it/faq.json index d6ff25aa4b..574756fbc2 100644 --- a/common/locales/it/faq.json +++ b/common/locales/it/faq.json @@ -2,11 +2,11 @@ "frequentlyAskedQuestions": "Domande frequenti", "faqQuestion0": "Sono confuso. Come funziona Habitica?", "iosFaqAnswer0": "Per prima cosa, imposterai un'attività che vuoi completare nella vita di tutti i giorni, quindi, completando le tue attività nella vita vera e spuntandole, riceverai esperienza ed oro. L'oro è usato per comprare equipaggiamento e alcuni item, insieme ad dei premi personalizzati. L'esperienza serve a far salire di livello il tuo personaggio e sbloccare contenuti come animali domestici, abilità, e missioni! Puoi personalizzare il tuo personaggio in Menu > Personalizza Avatar.\n\nAlcuni metodi basilari per interagire: cliccare il (+) nell'angolo in alto a destra per aggiungere una nuova attività. Cliccare su un'attività già presente per modificarla e strisciare verso sinistra per eliminarla. Puoi organizare le attività usando le etichette nell'angolo in alto a sinistra, espandi e contrai checklist cliccando nella bolla vicine alle suddette.", - "webFaqAnswer0": "Per prima cosa, imposterai un'attività che vuoi completare nella vita di tutti i giorni, quindi, completando le tue attività nella vita vera e spuntandole, riceverai esperienza ed oro. L'oro è usato per comprare equipaggiamento e alcuni item, insieme ad dei premi personalizzati. L'esperienza serve a far salire di livello il tuo personaggio e sbloccare contenuti come animali domestici, abilità, e missioni! Consulta il quadro generale passo per passo della Wiki per maggiori informazioni! [Clicca qui](http://habitica.wikia.com/wiki/Habitica_Wiki).", + "webFaqAnswer0": "First, you'll set up tasks that you want to do in your everyday life. Then, as you complete the tasks in real life and check them off, you'll earn Experience and Gold. Gold is used to buy equipment and some items, as well as custom rewards. Experience causes your character to level up and unlock content such as pets, skills, and quests! For more detail, check out a step-by-step overview of the game at [Help -> Overview for New Users](https://habitica.com/static/overview).", "faqQuestion1": "Come imposto le mie attività?", "iosFaqAnswer1": "Le Buone Abitudini (quelle con il +) sono attività che puoi fare più volte al giorno, come \"Mangiare verdure, \"Fare sport\" ecc. Le Cattive Abitudini (quelle con il -) sono attività che dovresti evitare, come \"Mordersi le unghie\", \"Mangiare fritto\" ecc. Le Abitudini con un + ed un - hanno una scelta buona ed una cattiva, come prendere le scale al posto di usare l'ascensore. Le Buone Abitudini garantiscono punti esperienza ed oro.Lle Cattive Abitudini tolgono punti vita.\n\nLe Dailies sono attività che compi ogni giorno, come \"Lavare i denti\" o \"Controllare la mail\". Puoi semplicemente assegnare una Daily ai giorni in cui vuoi impostarla cliccando su Modifica. Se salti una Daily assegnata, il tuo Avatar subirà danno durante la notte. Fai attenzione a non aggiungere troppe Daily in una sola volta!\n\nI To-Do si trovano nella tua lista To-Do. Completando una To-Do guadagni oro e punti esperienza. Non perderai mai punti vita dalle To-Do. Puoi aggiungere una data di scadenza alle To-Do cliccando su Modifica.", "webFaqAnswer1": "Le Buone Abitudini (quelle con il ) sono attività che puoi fare più volte al giorno, come \"Mangiare verdure, \"Fare sport\" ecc. Le Cattive Abitudini quelle con il ) sono attività che dovresti evitare, come \"Mordersi le unghie\", \"Mangiare fritto\" ecc. Le Abitudini con un ed un hanno una scelta buona ed una cattiva, come prendere le scale al posto di usare l'ascensore. Le Buone Abitudini garantiscono punti esperienza ed oro. Le Cattive Abitudini tolgono punti vita.\n

\nLe Dailies sono attività che compi ogni giorno, come \"Lavare i denti\" o \"Controllare la mail\". Puoi semplicemente assegnare una Daily ai giorni in cui vuoi impostarla cliccando su Modifica. Se salti una Daily assegnata, il tuo Avatar subirà danno durante la notte. Fai attenzione a non aggiungere troppe Daily in una sola volta!\n

\nI To-Do si trovano nella tua lista To-Do. Completando una To-Do guadagni oro e punti esperienza.Non perderai mai punti vita dalle To-Do. Puoi aggiungere una data di scadenza alle To-Do cliccando su Modifica.", - "faqQuestion2": "Quali sono alcuni attività d'esempio?", + "faqQuestion2": "Quali sono alcuni esempi di attività?", "iosFaqAnswer2": "La Wiki ha 4 liste di attività d'esempio per prendere ispirazione:\n

\n* [Sample Habits](http://habitica.wikia.com/wiki/Sample_Habits)\n* [Sample Dailies](http://habitica.wikia.com/wiki/Sample_Dailies)\n* [Sample To-Dos](http://habitica.wikia.com/wiki/Sample_To-Dos)\n* [Sample Custom Rewards](http://habitica.wikia.com/wiki/Sample_Custom_Rewards)", "webFaqAnswer2": "La Wiki ha 4 liste di attività d'esempio per prendere ispirazione:\n* [Sample Habits](http://habitica.wikia.com/wiki/Sample_Habits)\n* [Sample Dailies](http://habitica.wikia.com/wiki/Sample_Dailies)\n* [Sample To-Dos](http://habitica.wikia.com/wiki/Sample_To-Dos)\n* [Sample Custom Rewards](http://habitica.wikia.com/wiki/Sample_Custom_Rewards)", "faqQuestion3": "Perchè le mie attività cambiano colore?", @@ -31,7 +31,7 @@ "iosFaqAnswer9": "First, you need to join or start a Party (see above). Although you can battle monsters alone, we recommend playing in a group, because this will make Quests much easier. Plus, having a friend to cheer you on as you accomplish your tasks is very motivating!\n\n Next, you need a Quest Scroll, which are stored under Menu > Items. There are three ways to get a scroll:\n\n - At level 15, you get a Quest-line, aka three linked quests. More Quest-lines unlock at levels 30, 40, and 60 respectively. \n - When you invite people to your Party, you'll be rewarded with the Basi-List Scroll!\n - You can buy Quests from the Quests Page on the [website](https://habitica.com/#/options/inventory/quests) for Gold and Gems. (We will add this feature to the app in a future update.)\n\n To battle the Boss or collect items for a Collection Quest, simply complete your tasks normally, and they will be tallied into damage overnight. (Reloading by pulling down on the screen may be required to see the Boss's health bar go down.) If you are fighting a Boss and you missed any Dailies, the Boss will damage your Party at the same time that you damage the Boss. \n\n After level 11 Mages and Warriors will gain Skills that allow them to deal additional damage to the Boss, so these are excellent classes to choose at level 10 if you want to be a heavy hitter.", "webFaqAnswer9": "First, you need to join or start a party (under Social > Party). Although you can battle monsters alone, we recommend playing in a group, because this will make quests much easier. Plus, having a friend to cheer you on as you accomplish your tasks is very motivating!\n

\n Next, you need a Quest Scroll, which are stored under Inventory > Quests. There are three ways to get a scroll:\n

\n * When you invite people to your party, you’ll be rewarded with the Basi-List Scroll!\n * At level 15, you get a Quest-line, i.e., three linked quests. More Quest-lines unlock at levels 30, 40, and 60 respectively.\n * You can buy Quests from the Quests Page (Inventory > Quests) for Gold and Gems.\n

\n To battle the Boss or collect items for a Collection Quest, simply complete your tasks normally, and they will be tallied into damage overnight. (Reloading may be required to see the Boss's Health bar go down.) If you are fighting a Boss and you missed any Dailies, the Boss will damage your party at the same time that you damage the Boss.\n

\n After level 11 Mages and Warriors will gain Skills that allow them to deal additional damage to the Boss, so these are excellent classes to choose at level 10 if you want to be a heavy hitter.", "faqQuestion10": "Cosa sono le Gemme, e come le ottengo? ", - "iosFaqAnswer10": "Gems are purchased with real money by tapping on the gem icon in the header. When people buy gems, they are helping us to keep the site running. We're very grateful for their support!\n\n In addition to buying gems directly, there are three other ways players can gain gems:\n\n * Win a Challenge on the [website](https://habitica.com) that has been set up by another player under Social > Challenges. (We will be adding Challenges to the app in a future update!)\n * Subscribe on the [website](https://habitica.com/#/options/settings/subscription) and unlock the ability to buy a certain number of gems per month.\n * Contribute your skills to the Habitica project. See this wiki page for more details: [Contributing to Habitica](http://habitica.wikia.com/wiki/Contributing_to_Habitica).\n\n Keep in mind that items purchased with gems do not offer any statistical advantages, so players can still make use of the app without them!", + "iosFaqAnswer10": "Le Gemme vengono comprate con soldi reali cliccando sull'icona della gemma nell'intestazione. Quando le persone si abbonano o comprano Gemme, ci aiutano a mantenere il sito attivo. Siamo molto grati per il loro sostegno!\n\nOltre a comprare le Gemme direttamente, ci sono altri tre modi in cui i giocatori possono ottenere Gemme:\n\n* Vincere una Sfida nel [sito](https://habitica.com) che è stata creata da una altro giocatore sotto Social > Sfide. (Aggiungeremo le Sfide all'app in un futuro aggiornamento!)\n* Abbonarsi al [sito](https://habitica.com/#/options/settings/subscription) e sbloccare la capacità di comprare un certo numero di gemme al mese.\n* Contribuire con le tue abilità al progetto Habitica. Consulta questa pagina della wiki per maggiori informazioni: [Contribuire ad Habitica](http://habitica.wikia.com/wiki/Contributing_to_Habitica).\n\nRicorda che gli oggetti comprati con le Gemme non offrono nessun vantaggio statistico, perciò i giocatori possono comunque utilizzare il sito anche senza di esse!", "webFaqAnswer10": "Le Gemme vengono [comprate con soldi reali](https://habitica.com/#/options/settings/subscription), anche se [gli abbonati](https://habitica.com/#/options/settings/subscription) possono comprare Gemme in cambio di Oro. Quando le persone si abbonano o comprano Gemme, ci aiutano a mantenre il sito attivo. Siamo molto grati per il loro sostegno!\n

\n Oltre a comprare le Gemme direttamente o abbonarsi, ci sono altri due modi in cui i gioctori possono ottenre Gemme:\n

\n * Vincendo una Sfida creata da una altro giocatore sotto Social > Sfide.\n * Contribuire con le tue abilità al progetto Habitica. Consulta questa pagina della wiki per maggiori informazioni: [Contribuire ad Habitica](http://habitica.wikia.com/wiki/Contributing_to_Habitica)\n

\n Ricorda che gli oggetti comprati con le Gemme non offrono nessun vantaggio statistico, perciò i giocatori possono comunque utilizzare il sito anche senza di esse!", "faqQuestion11": "Come posso segnalare un bug o dare dei suggerimenti?", "iosFaqAnswer11": "Puoi segnalare un bug, richiedere una funzione, o inviare commenti in Menu > Segnala un Bug e Menu > Invia Commenti! Faremo tutto il possibile per aiutarti.", diff --git a/common/locales/it/front.json b/common/locales/it/front.json index 1ab8375cdc..30094cf6ff 100644 --- a/common/locales/it/front.json +++ b/common/locales/it/front.json @@ -6,7 +6,7 @@ "althaireQuote": "Essere continuamente in missione mi motiva a completare tutte le mie daily e i miei to-do. La mia motivazione più grande è non deludere la mia squadra.", "andeeliaoQuote": "Un sito fantastico, ho iniziato solo qualche giorno fa e sono già più produttiva e riesco a gestire meglio il mio tempo!", "autumnesquirrelQuote": "Ora procrastino meno al lavoro e nelle faccende di casa, e pago le bollette in tempo.", - "businessSample1": "Conferma 1 pagina dell'inventario", + "businessSample1": "Conferma 1 pagina dell'Inventario", "businessSample2": "20 min di archiviazione", "businessSample3": "Organizza le e-mail ricevute", "businessSample4": "Prepara 1 documento per il cliente", diff --git a/common/locales/it/gear.json b/common/locales/it/gear.json index 552b0fa056..deb98deea0 100644 --- a/common/locales/it/gear.json +++ b/common/locales/it/gear.json @@ -126,7 +126,7 @@ "weaponSpecialSummer2015MageNotes": "Un potere nascosto brilla nelle pietre preziose di questo bastone. Aumenta l'Intelligenza di <%= int %> e la Percezione di <%= per %>. Edizione limitata, estate 2015.", "weaponSpecialSummer2015HealerText": "Bacchetta delle Onde", "weaponSpecialSummer2015HealerNotes": "Cura il mal di mare e i mali del mare! Aumenta l'Intelligenza di <%= int %>. Edizione limitata, estate 2015.", - "weaponSpecialFall2015RogueText": "Bat-tle Ax", + "weaponSpecialFall2015RogueText": "Ascia da Bat-taglia", "weaponSpecialFall2015RogueNotes": "Fearsome To-Dos cower before the flapping of this ax. Increases Strength by <%= str %>. Limited Edition 2015 Autumn Gear.", "weaponSpecialFall2015WarriorText": "Asse di Legno", "weaponSpecialFall2015WarriorNotes": "Ottimo per sollevare cose nei cambi di grano e/o per picchiare le attività. Aumenta Forza di <%= str %>. Edizione Limitata, Equipaggiamento Autunnale 2015.", @@ -149,15 +149,19 @@ "weaponArmoireRancherLassoText": "Lazzo da Cowboy", "weaponArmoireRancherLassoNotes": "Lazzo: lo strumento ideale per radunare e raccogliere. Aumenta la Forza di <%= str %>, la Percezione di <%= per %> e l'Intelligenza di <%= int %>. Baule Incantato: Set del Ranch (Oggetto 3 di 3)", "weaponArmoireMythmakerSwordText": "Spada del Costruttore di Leggende", - "weaponArmoireMythmakerSwordNotes": "Nonostante sembri umile, questa spada ha forgiato numerosi eroi mitici. Aumenta Forza e Percezione di <%= attrs %> ciascuna. Baule Incantato: Set della Toga Dorata (Oggetto 3 di 3)", + "weaponArmoireMythmakerSwordNotes": "Though it may seem humble, this sword has made many mythic heroes. Increases Perception and Strength by <%= attrs %> each. Enchanted Armoire: Golden Toga Set (Item 3 of 3).", "weaponArmoireIronCrookText": "Uncino di Ferro", - "weaponArmoireIronCrookNotes": "Fieramente forgiato dal ferro, questo uncino di ferro é ottimo per radunare pecore. Aumenta Percezione e Forza di <%= attrs %> ciascuna. Baule Incantato: Set del Ferro Uncinato (Oggetto 3 di 3)", + "weaponArmoireIronCrookNotes": "Fiercely hammered from iron, this iron crook is good at herding sheep. Increases Perception and Strength by <%= attrs %> each. Enchanted Armoire: Horned Iron Set (Item 3 of 3).", "weaponArmoireGoldWingStaffText": "Bastone dell'Ala Dorata", "weaponArmoireGoldWingStaffNotes": "Le ali su questo bastone svolazzano e si intrecciano costantemente. Aumenta tutti gli attributi di <%= attrs %> ciascuna. Baule Incantato: Oggetto Indipendente.", "weaponArmoireBatWandText": "Bacchetta del Pipstrello", "weaponArmoireBatWandNotes": "Questa bacchetta può trasformare qualunque attività in un pipistrello! Salutalo e guardalo volare via. Aumenta l'Intelligenza <%= int %> di e la Percezione di <%= per % . Baule Incantato: Oggetto Indipendente.", "weaponArmoireShepherdsCrookText": "Uncino del Pastore", "weaponArmoireShepherdsCrookNotes": "Utile per l'allevamento di grifoni. Aumenta la Costituzione di <%= con %>. Baule Incantato: Set del Pastore (Oggetto 1 di 3).", + "weaponArmoireCrystalCrescentStaffText": "Crystal Crescent Staff", + "weaponArmoireCrystalCrescentStaffNotes": "Summon the power of the crescent moon with this shining staff! Increases Intelligence and Strength by <%= attrs %> each. Enchanted Armoire: Crystal Crescent Set (Item 3 of 3).", + "weaponArmoireBlueLongbowText": "Blue Longbow", + "weaponArmoireBlueLongbowNotes": "Ready... Aim... Fire! This bow has great range. Increases Perception by 9, Constitution by 8, and Strength by 7. Enchanted Armoire: Independent Item.", "armor": "armatura", "armorBase0Text": "Vestiti semplici", "armorBase0Notes": "Vestiario comune. Non conferisce alcun bonus.", @@ -222,7 +226,7 @@ "armorSpecialBirthday2015Text": "Bizzarre Vesti da Festa", "armorSpecialBirthday2015Notes": "Buon compleanno, Habitica! Indossa queste Bizzarre Vesti da Festa per celebrare questo giorno fantastico. Non conferisce alcun bonus.", "armorSpecialGaymerxText": "Armatura del Guerriero Arcobaleno", - "armorSpecialGaymerxNotes": "Per celebrare la \"stagione dell'orgoglio\" e il GaymerX, questa speciale armatura è decorata con un raggiante e colorato tema arcobaleno! Il GaymerX è un evento dedicato al gaming e al \"LGBTQ\", ed è aperto a tutti. Si svolge all'InterContinental di San Francisco dall'11 al 13 luglio! Non conferisce alcun bonus.", + "armorSpecialGaymerxNotes": "In celebration of the GaymerX Conference, this special armor is decorated with a radiant, colorful rainbow pattern! GaymerX is a game convention celebrating LGTBQ and gaming and is open to everyone.", "armorSpecialSpringRogueText": "Tuta Felina Elegante", "armorSpecialSpringRogueNotes": "Curata in ogni dettaglio. Aumenta la Percezione di <%= per %>. Edizione limitata, primavera 2014.", "armorSpecialSpringWarriorText": "Armatura Trifoglio", @@ -271,10 +275,10 @@ "armorSpecialSummer2015MageNotes": "Un potere nascosto risiede negli sbuffi di queste maniche. Aumenta l'Intelligenza di <%= int %> . Edizione Limitata Equipaggiamento Estate 2015.", "armorSpecialSummer2015HealerText": "Armatura del Marinaio", "armorSpecialSummer2015HealerNotes": "Quest'armatura fa sapere a tutti che tu sei un onesto mercante marinaio che non sognerebbe mai di comportarsi come una canaglia. Aumenta la Costituzione di <%= con %>. Edizione Limitata Equipaggiamento Estate 2015.", - "armorSpecialFall2015RogueText": "Bat-tle Armor", + "armorSpecialFall2015RogueText": "Armatura da Bat-taglia", "armorSpecialFall2015RogueNotes": "Fly into bat-tle! Increases Perception by <%= per %>. Limited Edition 2015 Autumn Gear.", - "armorSpecialFall2015WarriorText": "Scarecrow Armor", - "armorSpecialFall2015WarriorNotes": "Despite being stuffed with straw, this armor is extremely hefty! Increases Constitution by <%= con %>. Limited Edition 2015 Autumn Gear.", + "armorSpecialFall2015WarriorText": "Armatura da Spaventapasseri", + "armorSpecialFall2015WarriorNotes": "Nonostante sia imbottita di paglia, questa armatura è estremamente robusta! Aumenta la Constituzione di <%= con %>. Edizione Limitata, autunno 2015.", "armorSpecialFall2015MageText": "Stitched Robes", "armorSpecialFall2015MageNotes": "Every stitch in this armor shimmers with enchantment. Increases Intelligence by <%= int %>. Limited Edition 2015 Autumn Gear.", "armorSpecialFall2015HealerText": "Potioner Robes", @@ -304,11 +308,13 @@ "armorMystery201504Text": "Veste da Ape Operaia", "armorMystery201504Notes": "Diventerai produttivo come un'ape operaia in questa attraente veste! Non conferisce alcun bonus. Oggetto per abbonati, aprile 2015.", "armorMystery201506Text": "Tuta da Immersione", - "armorMystery201506Notes": "Snorkel through a coral reef in this brightly-colored swim suit! Confers no benefit. June 2015 Subscriber Item.", + "armorMystery201506Notes": "Fai snorkeling attraverso una barriera corallina in questo costume da bagno dai colori vivaci! Non conferisce alcun bonus. Oggetto per abbonati, giugno 2015.", "armorMystery201508Text": "Costume da Ghepardo", "armorMystery201508Notes": "Corri come il fulmine con indosso il morbido Costume da Ghepardo! Non conferisce benefici. Oggetto per abbonati Agosto 2015.", "armorMystery201509Text": "Costume da Lupo Mannaro", "armorMystery201509Notes": "Questo È un costume, giusto? Non conferisce alcun bonus. Oggetto per abbonati, settembre 2015.", + "armorMystery201511Text": "Wooden Armor", + "armorMystery201511Notes": "Considering this armor was carved directly from a magical log, it's surprisingly comfortable. Confers no benefit. November 2015 Subscriber Item.", "armorMystery301404Text": "Completo Steampunk", "armorMystery301404Notes": "Raffinato, a dir poco impeccabile! Non conferisce alcun bonus. Oggetto per abbonati, febbraio 3015.", "armorArmoireLunarArmorText": "Armatura Lunare Lenitiva", @@ -327,6 +333,8 @@ "armorArmoireShepherdRobesNotes": "Il tessuto è fresco e traspirante, perfetto per una calda giornata di allevamento dei grifoni nel deserto. Aumenta la Forza e la Percezione di <%= attrs %> ciascuna. Baule Incantato: Set del Pastore (Oggetto 2 di 3).", "armorArmoireRoyalRobesText": "Vesti Regali", "armorArmoireRoyalRobesNotes": "Meraviglioso sovrano, governa tutto il giorno! Aumenta la Costituzione, l'Intelligenza, e la Percezione di <%= attrs %> ciascuna. Baule Incantato: Set Regale (Oggetto 3 di 3).", + "armorArmoireCrystalCrescentRobesText": "Crystal Crescent Robes", + "armorArmoireCrystalCrescentRobesNotes": "These magical robes are luminescent at night. Increases Constitution and Perception by <%= attrs %> each. Enchanted Armoire: Crystal Crescent Set (Item 2 of 3).", "headgear": "copricapo", "headBase0Text": "Nessun elmo", "headBase0Notes": "Non indossi nessun copricapo.", @@ -439,15 +447,15 @@ "headSpecialSummer2015HealerText": "Cappello da Marinaio", "headSpecialSummer2015HealerNotes": "Con il tuo cappello da marinaio piantato fermamente in testa, puoi navigare anche i mari più tempestosi! Aumenta l'intelligenza di <%= int %>. Edizione Limitata Equipaggiamento Estate 2015.", "headSpecialFall2015RogueText": "Ali da Bat-taglia", - "headSpecialFall2015RogueNotes": "Echolocate your enemies with this powerful helm! Increases Perception by <%= per %>. Limited Edition 2015 Autumn Gear.", - "headSpecialFall2015WarriorText": "Scarecrow Hat", + "headSpecialFall2015RogueNotes": "Ecolocalizza i tuoi nemici con questo potente elmo! Aumenta la Percezione di <%= per %>. Edizione limitata, autunno 2015.", + "headSpecialFall2015WarriorText": "Cappello da Spaventapasseri", "headSpecialFall2015WarriorNotes": "Everyone would want this hat--if they only had a brain. Increases Strength by <%= str %>. Limited Edition 2015 Autumn Gear.", "headSpecialFall2015MageText": "Stitched Hat", "headSpecialFall2015MageNotes": "Every stitch in this hat augments its power. Increases Perception by <%= per %>. Limited Edition 2015 Autumn Gear.", "headSpecialFall2015HealerText": "Cappello di rana", "headSpecialFall2015HealerNotes": "Questo é un cappello estremamente serio di cui sono degli solo gli alchimisti più avanzati. Aumenta l'Intelligenza di <%= int %>. Edizione Limitata Equipaggiamento Autunnale 2015.", "headSpecialGaymerxText": "Elmo del Guerriero Arcobaleno", - "headSpecialGaymerxNotes": "Per celebrare la \"stagione dell'orgoglio\" e il GaymerX, questo speciale elmo è decorato con un raggiante e colorato tema arcobaleno! Il GaymerX è un evento dedicato al gaming e al \"LGBTQ\", ed è aperto a tutti. Si svolge all'InterContinental di San Francisco dall'11 al 13 luglio! Non conferisce alcun bonus.", + "headSpecialGaymerxNotes": "In celebration of the GaymerX Conference, this special helmet is decorated with a radiant, colorful rainbow pattern! GaymerX is a game convention celebrating LGTBQ and gaming and is open to everyone.", "headMystery201402Text": "Elmo Alato", "headMystery201402Notes": "Questa tiara alata rende chi la indossa veloce come il vento! Non conferisce alcun bonus. Oggetto per abbonati, febbraio 2014.", "headMystery201405Text": "Fiamma della Mente", @@ -470,6 +478,8 @@ "headMystery201508Notes": "Questo comodo cappello da ghepardo é molto lanuginoso! Non conferisce alcun bonus. Oggetto per abbonati Agosto 2015.", "headMystery201509Text": "Maschera da Lupo Mannaro", "headMystery201509Notes": "Questa È una maschera, giusto? Non conferisce alcun bonus. Oggetto per abbonati, settembre 2015.", + "headMystery201511Text": "Log Crown", + "headMystery201511Notes": "Count the number of rings to learn how old this crown is. Confers no benefit. November 2015 Subscriber Item.", "headMystery301404Text": "Cilindro Elegante", "headMystery301404Notes": "Un cilindro per i più fini gentiluomini! Oggetto per abbonati, gennaio 3015. Non conferisce alcun bonus.", "headMystery301405Text": "Cilindro Base", @@ -485,7 +495,7 @@ "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: Rancher Set (Item 1 of 3).", "headArmoireBlueHairbowText": "Fiocchetto Blu", - "headArmoireBlueHairbowNotes": "Become perceptive, tough, and smart while wearing this beautiful Blue Hairbow! Increases Perception by <%= per %>, Constitution by <%= con %>, and Intelligence by <%= int %>. Enchanted Armoire: Independent Item.", + "headArmoireBlueHairbowNotes": "Diventa percettivo, resistente, e intelligente indossando questo meraviglioso Fiocchetto Blu! Aumenta la Percezione di <%= per %>, la Costituzione di <%= con %>, e l'Intelligenza di <%= int %>. Baule Incantato: Oggetto Indipendente.", "headArmoireRoyalCrownText": "Corona Regale", "headArmoireRoyalCrownNotes": "Hooray for the ruler, mighty and strong! Increases Strength by <%= str %>. Enchanted Armoire: Royal Set (Item 1 of 3).", "headArmoireGoldenLaurelsText": "Allori Dorati", @@ -506,6 +516,8 @@ "headArmoireBlueFloppyHatNotes": "Molti incantesimi sono stati cuciti in questo semplice cappello, dandogli un colore blu brillante. Aumenta Costituzione, Intelligenza e Percezione di <%= attrs %> ciascuna. Baule Incantato: Oggetto Indipendente.", "headArmoireShepherdHeaddressText": "Cappello del Pastore", "headArmoireShepherdHeaddressNotes": "Talvolta i grifoni che allevi si divertono a masticare questo cappello, ma ti fa comunque sembrare piú intelligente. Aumenta l'Intelligenza di <%= int %>. Baule Incantato: Set Pastore (Oggetto 3 di 3).", + "headArmoireCrystalCrescentHatText": "Crystal Crescent Hat", + "headArmoireCrystalCrescentHatNotes": "The design on this hat waxes and wanes with the phases of the moon. Increases Intelligence and Perception by <%= attrs %> each. Enchanted Armoire: Crystal Crescent Set (Item 1 of 3).", "offhand": "oggetto per mano da scudo", "shieldBase0Text": "Nessun equipaggiamento nella mano da scudo", "shieldBase0Notes": "Nessuno scudo o arma secondaria.", @@ -577,21 +589,21 @@ "shieldSpecialSummer2015WarriorNotes": "Crafted of deep-ocean metal by the artisans of Dilatory, this shield shines like the sand and the sea. Increases Constitution by <%= con %>. Limited Edition 2015 Summer Gear.", "shieldSpecialSummer2015HealerText": "Scudo Robusto", "shieldSpecialSummer2015HealerNotes": "Use this shield to bash away bilge rats. Increases Constitution by <%= con %>. Limited Edition 2015 Summer Gear.", - "shieldSpecialFall2015RogueText": "Bat-tle Ax", + "shieldSpecialFall2015RogueText": "Ascia da Bat-taglia", "shieldSpecialFall2015RogueNotes": "Fearsome To-Dos cower before the flapping of this ax. Increases Strength by <%= str %>. Limited Edition 2015 Autumn Gear.", - "shieldSpecialFall2015WarriorText": "Birdseed Bag", - "shieldSpecialFall2015WarriorNotes": "It's true that you're supposed to be SCARING the crows, but there's nothing wrong with making friends! Increases Constitution by <%= con %>. Limited Edition 2015 Autumn Gear.", - "shieldSpecialFall2015HealerText": "Stirring Stick", - "shieldSpecialFall2015HealerNotes": "This stick can stir anything without melting, dissolving, or bursting into flame! It can also be used to fiercely poke enemy tasks. Increases Constitution by <%= con %>. Limited Edition 2015 Autumn Gear.", + "shieldSpecialFall2015WarriorText": "Sacchetto di Becchime", + "shieldSpecialFall2015WarriorNotes": "È vero che dovresti SPAVENTARE i corvi, ma non c'è niente di male nel farsi degli amici! Aumenta la Costituzione di <%= con %>. Edizione Limitata, autunno 2015.", + "shieldSpecialFall2015HealerText": "Bastoncino Mescolante", + "shieldSpecialFall2015HealerNotes": "Questo bastoncino può mescolare qualsiasi cosa senza sciogliersi, dissolversi, o andare a fuoco! Può anche essere usato per attaccare Attività nemiche. Aumenta la Costituzione di <%= con%>. Edizione Limitata Equipaggiamento Autunnale 2015.", "shieldMystery301405Text": "Scudo Orologio", "shieldMystery301405Notes": "Con questo scudo il tempo sarà sempre dalla tua parte! Non conferisce alcun bonus. Oggetto per abbonati, giugno 3015.", "shieldArmoireGladiatorShieldText": "Scudo da Gladiatore", "shieldArmoireGladiatorShieldNotes": "Per essere un gladiatore devi...eh, lasciamo stare, piuttosto respingi tutti con il tuo scudo. Aumenta la Costituzione di <%= con %> e la Forza di <%= str %>. Scrigno Incantato: Set Gladiatore (oggetto 3 di 3)", "shieldArmoireMidnightShieldText": "Scudo Mezzanotte", "shieldArmoireMidnightShieldNotes": "Questo scudo è più potente allo scoccare della mezzanotte! Aumenta la Costituzione di <%= con %> e la Forza di <%= str %>. Baule Incantato: Oggetto indipendente.", - "shieldArmoireRoyalCaneText": "Royal Cane", - "shieldArmoireRoyalCaneNotes": "Hooray for the ruler, worthy of song! Increases Constitution, Intelligence, and Perception by <%= attrs %> each. Enchanted Armoire: Royal Set (Item 2 of 3).", - "back": "Back Accessory", + "shieldArmoireRoyalCaneText": "Bastone da passeggio Regale.", + "shieldArmoireRoyalCaneNotes": "Urrá per il sovrano, degno di canzoni! Aumenta Costituzione, Intelligenza e Percezione di <%= attrs %> ciascuna. Baule Incantato: Set Regale (Oggetto 2 di 3).", + "back": "Accessorio da schiena.", "backBase0Text": "Nessun accessorio da schiena", "backBase0Notes": "Nessun accessorio da schiena.", "backMystery201402Text": "Ali Dorate", @@ -602,10 +614,10 @@ "backMystery201410Notes": "Fluttua nella notte con queste robuste ali. Non conferiscono alcun bonus. Oggetto per abbonati, ottobre 2014.", "backMystery201504Text": "Ali da Ape Operaia", "backMystery201504Notes": "Bzz bzz bzz! Svolazza da un'attività all'altra. Non conferisce alcun bonus. Oggetto per abbonati, aprile 2015.", - "backMystery201507Text": "Rad Surfboard", - "backMystery201507Notes": "Surf off the Diligent Docks and ride the waves in Inkomplete Bay! Confers no benefit. July 2015 Subscriber Item.", - "backMystery201510Text": "Goblin Tail", - "backMystery201510Notes": "Prehensile and powerful! Confers no benefit. October 2015 Subscriber Item.", + "backMystery201507Text": "Tavola da surf da sballo", + "backMystery201507Notes": "Fai surf sui Moli Motivati e cavalca le onde sulla Baia Inkompleta! Non conferisce alcun bonus. Oggetto per abbonati, Luglio 2015.", + "backMystery201510Text": "Coda di Goblin.", + "backMystery201510Notes": "Prensile e potente! Non conferisce alcun bonus. Oggetto per abbonati, Ottobre 2015. ", "backSpecialWonderconRedText": "Mantello Maestoso", "backSpecialWonderconRedNotes": "Fruscia con forza ed eleganza. Non conferisce alcun bonus. Edizione speciale da convegno.", "backSpecialWonderconBlackText": "Mantello Furtivo", @@ -676,8 +688,8 @@ "headAccessoryMystery201409Notes": "Queste potenti corna cambiano colore come le foglie autunnali. Non conferiscono alcun bonus. Oggetto per abbonati, settembre 2014.", "headAccessoryMystery201502Text": "Ali del Pensiero", "headAccessoryMystery201502Notes": "Lascia che la tua immaginazione prenda il volo! Non conferisce alcun bonus. Oggetto per abbonati, febbraio 2015.", - "headAccessoryMystery201510Text": "Goblin Horns", - "headAccessoryMystery201510Notes": "These fearsome horns are slightly slimy. Confers no benefit. October 2015 Subscriber Item.", + "headAccessoryMystery201510Text": "Corna di Goblin", + "headAccessoryMystery201510Notes": "Queste terrificanti corna sono leggermente viscide. Non conferisce alcun bonus. Oggetto per abbonati, ottobre 2015.", "headAccessoryMystery301405Text": "Occhiali da Testa", "headAccessoryMystery301405Notes": "\"Gli occhiali sono per i tuoi occhi\", dicevano. \"Nessuno vuole degli occhiali solo per tenerli in testa\", dicevano. Hah! Ora mostra quanto si sbagliano! Non conferisce alcun bonus. Oggetto per abbonati, agosto 3015.", "eyewear": "Eyewear", diff --git a/common/locales/it/generic.json b/common/locales/it/generic.json index 1659c95bed..e661338dd9 100644 --- a/common/locales/it/generic.json +++ b/common/locales/it/generic.json @@ -140,12 +140,12 @@ "firstStreakAchievement": "Serie di 21 giorni", "streakAchievementCount": "<%= streaks %> Serie di 21 giorni", "twentyOneDays": "Hai completato la tua Daily per 21 giorni di fila!", - "dontBreakStreak": "Amazing job. Don't break the streak!", - "dontStop": "Non Fermarti Ora!", + "dontBreakStreak": "Ottimo lavoro. Non interrompere la serie!", + "dontStop": "Non fermarti ora!", "levelUpShare": "Sono salito di livello in Habitica migliorando le mie abitudini nella vita reale!", "questUnlockShare": "Ho sbloccato una nuova missione in Habitica!", - "hatchPetShare": "I hatched a new pet by completing my real-life tasks!", - "raisePetShare": "I raised a pet into a mount by completing my real-life tasks!", + "hatchPetShare": "Ho fatto nascere un nuovo animaletto completando le mie attività nella vita reale!", + "raisePetShare": "Ho fatto crescere un animaletto completando le mie attività nella vita reale!", "wonChallengeShare": "Ho vinto una sfida in Habitica!", "achievementShare": "Ho guadagnato una nuova medaglia in Habitica!" } \ No newline at end of file diff --git a/common/locales/it/groups.json b/common/locales/it/groups.json index fbc4f24032..e6db75c894 100644 --- a/common/locales/it/groups.json +++ b/common/locales/it/groups.json @@ -3,7 +3,7 @@ "innCheckOut": "Esci dalla Locanda", "innCheckIn": "Riposa nella Locanda", "innText": "Stai riposando nella Locanda! Mentre sei qui, le tue Daily non ti danneggeranno alla fine della giornata, ma si resetteranno comunque ogni giorno. Fai attenzione: se stai partecipando ad una missione Boss, il Boss ti danneggerà comunque per le Daily mancate dei tuoi compagni di squadra a meno che non stiano riposando anche loro nella Locanda! Inoltre, il tuo danno al Boss (o la raccolta di oggetti) non avrà effetto finchè non lasci la Locanda.", - "innTextBroken": "Stai riposando nella Locanda, credo... Mentre sei qui, le tue Daily non ti danneggeranno alla fine della giornata, ma si resetteranno comunque ogni giorno... Se stai partecipando ad una missione Boss, il Boss ti danneggerà comunque per le Daily mancate dei tuoi compagni di squadra... a meno che non stiano riposando anche loro nella Locanda... Inoltre, il tuo danno al Boss (o gli oggetti raccolti) non avrà effetto finché non lasci la Locanda... sono così stanco...", + "innTextBroken": "Stai riposando nella Locanda, credo... Mentre sei qui, le tue Daily non ti danneggeranno alla fine della giornata, ma si resetteranno comunque ogni giorno... Se stai partecipando ad una missione Boss, il Boss ti danneggerà comunque per le Daily mancate dei tuoi compagni di squadra... a meno che non stiano riposando anche loro nella Locanda... Inoltre, il tuo danno al Boss (o gli oggetti raccolti) non avrà effetto finché non lasci la Locanda... che stanchezza...", "lfgPosts": "Sei in cerca di una squadra? Guarda qui! (in inglese)", "tutorial": "Tutorial", "glossary": "Glossario", @@ -90,7 +90,7 @@ "leaveParty": "Lasciare la squadra?", "sendPM": "Invia messaggio privato", "send": "Invia", - "messageSentAlert": "Messaggio inviato", + "messageSentAlert": "Messaggio inviato!", "pmHeading": "Messaggio privato a <%= name %>", "clearAll": "Cancella tutti i messaggi", "confirmDeleteAllMessages": "Vuoi davvero cancellare tutti i messaggi ricevuti? Gli altri utenti potranno ancora vedere i messaggi che gli hai inviato.", @@ -147,5 +147,5 @@ "partyChatEmpty": "La chat della squadra è vuota! Scrivi un messaggio nella casella qui sopra per cominciare una conversazione.", "guildChatEmpty": "La chat della gilda è vuota! Scrivi un messaggio nella casella qui sopra per cominciare una conversazione.", "possessiveParty": "Squadra di <%= name %>", - "requestAcceptGuidelines": "If you would like to post messages in the Tavern or any party or guild chat, please first read our <%= linkStart %>Community Guidelines<%= linkEnd %> and then click the button below to indicate that you accept them." + "requestAcceptGuidelines": "Se vuoi pubblicare messaggi nella chat della Taverna o di una qualsiasi squadra o gilda, per favore prima leggi le <%= linkStart %>Linee guida della community<%= linkEnd %> e successivamente clicca sul pulsante qui sotto per indicare che le accetti." } \ No newline at end of file diff --git a/common/locales/it/limited.json b/common/locales/it/limited.json index 406a0f89b6..9e4ecb411a 100644 --- a/common/locales/it/limited.json +++ b/common/locales/it/limited.json @@ -21,6 +21,7 @@ "valentineCardAchievementText": "Aww, tu e il tuo amico dovete volervi proprio bene! Inviati o ricevuti <%= cards %> biglietti di San Valentino.", "polarBear": "Orso Polare", "turkey": "Tacchino", + "gildedTurkey": "Gilded Turkey", "polarBearPup": "Cucciolo di Orso Polare", "jackolantern": "Zucca di Halloween", "seasonalShop": "Negozio Stagionale", diff --git a/common/locales/it/noscript.json b/common/locales/it/noscript.json index 6057268ef2..2be7eaa71e 100644 --- a/common/locales/it/noscript.json +++ b/common/locales/it/noscript.json @@ -1,6 +1,6 @@ { - "jsDisabledHeading": "Alas! Your browser doesn't have JavaScript enabled", - "jsDisabledHeadingFull": "Alas! Your browser doesn't have JavaScript enabled and without it, Habitica can't work properly", - "jsDisabledText": "Habitica can't properly display the site without it!", - "jsDisabledLink": "Please enable JavaScript to continue!" + "jsDisabledHeading": "Ahimé! Non hai abilitato JavaScript nel tuo browser", + "jsDisabledHeadingFull": "Ahimé! Non hai abilitato JavaScript nel tuo browser, e senza, Habitica non può funzionare bene", + "jsDisabledText": "Habitica non può funzionare correttamente senza di esso!", + "jsDisabledLink": "Per favore abilita JavaScript per continuare!" } \ No newline at end of file diff --git a/common/locales/it/npc.json b/common/locales/it/npc.json index a76ffb3678..98f7b43a43 100644 --- a/common/locales/it/npc.json +++ b/common/locales/it/npc.json @@ -7,7 +7,7 @@ "daniel": "Daniel", "danielText": "Benvenuto nella Taverna! Resta per un po' e incontra la gente del posto. Se hai bisogno di riposare (vacanza? malattia?), ti sistemerò nella Locanda. Mentre riposi, le tue Daily non ti danneggeranno alla fine del giorno, ma potrai comunque spuntarle.", "danielText2": "Fai attenzione: se stai partecipando ad una missione Boss, il boss ti danneggerà comunque per le Daily non completate dei tuoi compagni di squadra! Inoltre, il tuo danno al Boss (o la raccolta di oggetti) non avrà effetto finchè non lasci la Locanda.", - "danielTextBroken": "Benvenuto nella Taverna... Credo... Se hai bisogno di riposare, ti sistemerò nella Locanda... Mentre riposi, le tue Daily non ti danneggeranno alla fine del giorno, ma potrai comunque spuntarle... se ne hai le forze...", + "danielTextBroken": "Benvenuto nella Taverna... Credo... Se hai bisogno di riposare, ti sistemerò nella Locanda... Mentre riposi, le tue Giornaliere non ti danneggeranno alla fine del giorno, ma potrai comunque spuntarle... se ne hai le forze...", "danielText2Broken": "Oh... Se stai partecipando ad una missione Boss, il boss ti danneggerà comunque per le Daily non completate dei tuoi compagni di squadra... Inoltre, il tuo danno al Boss (o gli oggetti raccolti) non avrà effetto finché non lasci la Locanda...", "alexander": "Alexander il Mercante", "welcomeMarket": "Benvenuto nel Mercato! Compra uova rare e pozioni! Vendi la merce che ti avanza! Commissiona servizi utili! Vieni a vedere cosa abbiamo da offrire.", diff --git a/common/locales/it/pets.json b/common/locales/it/pets.json index 7c70246bfc..956a22d364 100644 --- a/common/locales/it/pets.json +++ b/common/locales/it/pets.json @@ -1,13 +1,13 @@ { "pets": "Animali", "petsFound": "Animali trovati", - "magicPets": "Animali di Pozioni Magica ", + "magicPets": "Animali di Pozioni Magiche", "rarePets": "Animali rari", "questPets": "Animali delle missioni", "mounts": "Cavalcature", "mountsTamed": "Cavalcature domate", "questMounts": "Cavalcature delle missioni", - "magicMounts": "Cavalcature di Pozioni Magica", + "magicMounts": "Cavalcature di Pozioni Magiche", "rareMounts": "Cavalcature rare", "etherealLion": "Leone Etereo", "veteranWolf": "Lupo Veterano", @@ -61,10 +61,10 @@ "hatchedPet": "E' nato un <%= egg %> <%= potion %>!", "displayNow": "Mostra ora", "displayLater": "Mostra più tardi", - "earnedCompanion": "With all your productivity, you've earned a new companion. Feed it to make it grow!", + "earnedCompanion": "Con tutta la tua produttività, ti sei guadagnato un nuovo compagno. Nutrilo per farlo crescere!", "feedPet": "Dare da mangiare <%= article %><%= text %> al tuo <%= name %>?", "useSaddle": "Mettere la sella a <%= pet %>?", - "raisedPet": "You grew a <%= pet %>!", + "raisedPet": "Hai fatto crescere un <%= pet %>!", "earnedSteed": "Completando le tue attività, hai ottenuto un fidato destriero!", "rideNow": "Cavalca ora", "rideLater": "Cavalca più tardi", diff --git a/common/locales/it/quests.json b/common/locales/it/quests.json index 3a51572445..fe06dc0824 100644 --- a/common/locales/it/quests.json +++ b/common/locales/it/quests.json @@ -38,8 +38,8 @@ "bossDmg2": "Solo i partecipanti potranno combattere il boss e condividere il bottino della missione.", "bossDmg1Broken": "Ogni Daily e To-Do completata e ogni Habit positiva danneggiano il boss... Puoi infliggere danni maggiori con le attività più rosse, con Attacco Brutale e con Fiammata... I boss danneggeranno ogni partecipante per le Daily mancate (moltiplicate per la Forza del boss) oltre al loro normale danno, quindi tieni in forze la tua squadra completando le tue Daily... I danni inflitti e ricevuti dal boss sono calcolati al cambio di giorno (all'ora da te impostata)...", "bossDmg2Broken": "Solo i partecipanti combatteranno il boss e si divideranno il bottino della missione...", - "tavernBossInfo": "Complete Dailies and To-Dos and score positive Habits to damage the World Boss! Incomplete Dailies fill the Exhaust Strike Bar. When the Exhaust 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 not resting in the Inn will have their tasks tallied.", - "tavernBossInfoBroken": "Complete Dailies and To-Dos and score positive Habits to damage the World Boss... Incomplete Dailies fill the Exhaust Strike Bar... When the Exhaust 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 not resting in the Inn will have their tasks tallied...", + "tavernBossInfo": "Competa Attività Giornaliere e To-Do e conquista Abitudini positive per danneggiare il Boss Mondiale! Attività Giornaliere non completate riempiono la Barra del Colpo Esaustivo. Quando la Barra del Colpo Esaustivo é piena, il Boss Mondiale attaccherà un PNG. Un Boss Mondiale non danneggerà mai giocatori individuali o account in nessuna maniera. Solo le Attivitá di account attivi che non stanno riposando nella Locanda verranno conteggiate.", + "tavernBossInfoBroken": "Competa Attività Giornaliere e To-Do e conquista Abitudini positive per danneggiare il Boss Mondiale! Attività Giornaliere non completate riempiono la Barra del Colpo Esaustivo. Quando la Barra del Colpo Esaustivo é piena, il Boss Mondiale attaccherà un PNG. Un Boss Mondiale non danneggerà mai giocatori individuali o account in nessuna maniera. Solo le Attivitá di account attivi che non stanno riposando nella Locanda verranno conteggiate.", "bossColl1": "Per ottenere gli oggetti, completa delle attività positive. Gli oggetti delle missioni compaiono come quelli normali; non li vedrai però fino al giorno dopo, quando tutto quello che hai trovato verrà raccolto e aggiunto agli oggetti già trovati.", "bossColl2": "Solo i partecipanti potranno collezionare gli oggetti e condividere il bottino della missione.", "bossColl1Broken": "Per raccogliere oggetti, completa le tue attività positive... Gli oggetti delle missioni compaiono come oggetti normali; tuttavia, non vedrai gli oggetti fino al giorno successivo, dopodiché tutto ciò che hai trovato verrà conteggiato e aggiunto ai tuoi oggetti.", @@ -78,5 +78,5 @@ "whichQuestStart": "Che missione vuoi cominciare?", "getMoreQuests": "Ottieni altre missioni", "unlockedAQuest": "Hai sbloccato una missione!", - "leveledUpReceivedQuest": "You leveled up to Level <%= level %> and received a quest scroll!" + "leveledUpReceivedQuest": "Sei salito di livello a Livello <%= level %> e hai ricevuto una pergamena della missione!" } \ No newline at end of file diff --git a/common/locales/it/questscontent.json b/common/locales/it/questscontent.json index 5259281cbe..71a366b3c5 100644 --- a/common/locales/it/questscontent.json +++ b/common/locales/it/questscontent.json @@ -215,7 +215,7 @@ "questWhaleCompletion": "Dopo molto duro lavoro, la balena finalmente cessa il suo lamento portentoso. \"Sembra che stesse affogando nelle onde delle abitudini negative\", spiega @zoebeagle. \"Grazie al tuo impegno costate, siamo riusciti a cambiare la situazione!\" Mentre entri nel sottomarino, diverse uova di balena fluttuano verso di te, e tu le raccogli.", "questWhaleDropWhaleEgg": "Balena (Uovo)", "questWhaleUnlockText": "Sblocca l'acquisto delle uova di balena nel Mercato", - "questDilatoryDistress1Text": "Dilatory Distress, Part 1: Message in a Bottle", + "questDilatoryDistress1Text": "Dilatoria sotto Attacco, Parte 1: Messaggio in Bottiglia", "questDilatoryDistress1Notes": "Un messaggio in una bottiglia é arrivato dalla nuovamente ricostruita città di Dilatoria! C'é scritto: \"Cari abitanti di Habitica, abbiamo bisogno del vostro aiuto un'altra volta. La nostra principessa é sparita e la città é tenuta sotto assedio da misteriosi demoni dell'acqua! Le Canocchie stanno trattenendo gli attaccanti. Per favore aiutateci!\" Per intraprendere il lungo viaggio verso la città sommersa, é necessario essere in grado di respirare sott'acqua. Fortunatamente gli alchimisti @Benga e @hazel possono renderlo possibile! Devi solo trovare gli ingredienti adatti. ", "questDilatoryDistress1Completion": "Indossi l'armatura con le pinne e nuoti fino a Dilatoria più velocemente che puoi. La gente del mare e i loro alleati canocchie sono riusciti a tenere i mostri fuori dalla città per il momento, ma stanno perdendo. Non fai quasi in tempo ad arrivare all'interno delle mura del castello che l'orribile assedio comincia! ", "questDilatoryDistress1CollectFireCoral": "Corallo di Fuoco", @@ -225,53 +225,53 @@ "questDilatoryDistress2Notes": "L'assedio può essere visto da miglia di distanza: migliaia di teschi senza corpo si affrettano attraverso un portale nelle pareti del crepaccio e vanno in direzione di Dilatoria.

Quando incontri Re Manta nella sua sala della guerra, i suoi occhi sembrano infossati, e la sua faccia é preoccupata. \"Mia figlia Adva é scomparsa dentro al Crepaccio Oscuro appena prima che l'assedio cominciasse. Per favore, trovala e portala a casa sana e salve! Ti presterò il mio Cerchietto del Corallo di Fuoco per aiutarti. Se avrai successo, sarà tuo.\"", "questDilatoryDistress2Completion": "Sconfiggi l'infernale orda di teschi, ma non ti senti affatto più vicino a trovare Adva. Parli a @Kiwibot, l'investigatore reale, per sapere se lei ha qualche idea. \"Le canocchie che difendono la città devono aver visto Adva scappare,\" dice @Kiwibot. \"Prova a seguirle dentro al Crepaccio Oscuro.\"", "questDilatoryDistress2Boss": "Sciame di Teschi dell'Acqua", - "questDilatoryDistress2RageTitle": "Swarm Respawn", - "questDilatoryDistress2RageDescription": "Swarm Respawn: This bar fills when you don't complete your Dailies. When it is full, the Water Skull Swarm will heal 30% of its remaining health!", + "questDilatoryDistress2RageTitle": "Rinascita dello Sciame", + "questDilatoryDistress2RageDescription": "Rinascita dello Sciame: Questa barra si riempie quando non completi le tue Attività giornaliere. Quando é piena, lo Sciame di Teschi d'Acqua curerà il 30% della sua salute restante!", "questDilatoryDistress2RageEffect": "`Water Skull Swarm uses SWARM RESPAWN!`\n\nEmboldened by their victories, more skulls pour forth from the crevasse, bolstering the swarm!", "questDilatoryDistress2DropSkeletonPotion": "Pozione Scheletro", "questDilatoryDistress2DropCottonCandyBluePotion": "Pozione Blu Zucchero Filato", "questDilatoryDistress2DropHeadgear": "Tiara di Corallo di Fuoco (Copricapo)", - "questDilatoryDistress3Text": "Dilatory Distress, Part 3: Not a Mere Maid", + "questDilatoryDistress3Text": "Dilatoria sotto Attacco, Parte 3: Non una semplice serva", "questDilatoryDistress3Notes": "Segui le canocchie nelle profondità del Crepaccio, e scopri una fortezza subacquea. La Principessa Adva, scortata da altri teschi acquatici, ti aspetta nella sala principale. \"Mio padre ti ha mandato, vero? Digli che io rifiuto di tornare. Sono soddisfatta di rimanere qui ed esercitarmi nella mia stregoneria. Vattene ora, o scoprirai la furia della nuova regina dell'oceano!\" Ava sembra molto decisa, ma mentre parla, tu noti uno strano pendente di rubino sul suo collo brillare inquietantemente... Forse le sue illusioni cesserebbero se tu lo rompessi? ", "questDilatoryDistress3Completion": "Finalmente riesci a strappare il pendente stregato dal collo di Adva e gettarlo via. Adva si stringe la testa. \"Dove sono? Cos'é successo qui?\" Dopo aver sentito la storia, si acciglia. \"Questa collana mi é stata data da uno strano ambasciatore - una donna chiama 'Tzina'. Non ricordo nulla dopo di ciò!\"

Tornato a Dilatoria, Manta é sopraffatto dalla gioia per il tuo successo. \"Permettimi di ricompensarti con questo tridente e scudo! Li ho ordinati da @aisean e @starsystemic come dono per Adva, ma... preferirei non mettere armi nelle sue mani nell'immediato futuro.\"", - "questDilatoryDistress3Boss": "Adva, the Usurping Mermaid", + "questDilatoryDistress3Boss": "Adva, la Sirena Usurpatrice", "questDilatoryDistress3DropFish": "Pesce (Cibo)", - "questDilatoryDistress3DropWeapon": "Trident of Crashing Tides (Weapon)", - "questDilatoryDistress3DropShield": "Moonpearl Shield (Shield-Hand Item)", - "questCheetahText": "Such a Cheetah", + "questDilatoryDistress3DropWeapon": "Tridente delle Maree Fragorose (Arma)", + "questDilatoryDistress3DropShield": "Scudo di Perle Lunari (Oggetto da mano secondaria)", + "questCheetahText": "Un tal Ghepardo", "questCheetahNotes": "As you hike across the Sloensteadi Savannah with your friends @PainterProphet, @tivaquinn, @Unruly Hyena, and @Crawford, you're startled to see a Cheetah screeching past with a new Habitican clamped in its jaws. Under the Cheetah's scorching paws, tasks burn away as though complete -- before anyone has the chance to actually finish them! The Habitican sees you and yells, \"Please help me! This Cheetah is making me level too quickly, but I'm not getting anything done. I want to slow down and enjoy the game. Make it stop!\" You fondly remember your own fledgling days, and know that you have to help the newbie by stopping the Cheetah!", - "questCheetahCompletion": "The new Habitican is breathing heavily after the wild ride, but thanks you and your friends for your help. \"I'm glad that Cheetah won't be able to grab anyone else. It did leave some Cheetah eggs for us, so maybe we can raise them into more trustworthy pets!\"", + "questCheetahCompletion": "Il nuovo abitante di Habitica ha il fiatone dopo la cavalcata selvaggia, ma ringrazia te e i tuoi amici per il vostro aiuto. \"Sono felice che il Ghepardo non potrà prendersi nessun altro. Ha lasciato dietro di sé un po' di uova di Ghepardo per noi, quindi magari possiamo allevare per farne degli animali domestici!\"", "questCheetahBoss": "Ghepardo", "questCheetahDropCheetahEgg": "Ghepardo (Uovo)", "questCheetahUnlockText": "Sblocca l'acquisto delle uova di ghepardo nel Mercato", - "questHorseText": "Ride the Night-Mare", + "questHorseText": "Cavalca il Destriero dell'Incubo", "questHorseNotes": "While relaxing in the Tavern with @beffymaroo and @JessicaChase, the talk turns to good-natured boasting about your adventuring accomplishments. Proud of your deeds, and perhaps getting a bit carried away, you brag that you can tame any task around. A nearby stranger turns toward you and smiles. One eye twinkles as he invites you to prove your claim by riding his horse.\nAs you all head for the stables, @UncommonCriminal whispers, \"You may have bitten off more than you can chew. That's no horse - that's a Night-Mare!\" Looking at its stamping hooves, you begin to regret your words...", "questHorseCompletion": "It takes all your skill, but finally the horse stamps a couple of hooves and nuzzles you in the shoulder before allowing you to mount. You ride briefly but proudly around the Tavern grounds while your friends cheer. The stranger breaks into a broad grin.\n\"I can see that was no idle boast! Your determination is truly impressive. Take these eggs to raise horses of your own, and perhaps we'll meet again one day.\" You take the eggs, the stranger tips his hat... and vanishes.", - "questHorseBoss": "Night-Mare", + "questHorseBoss": "Destriero dell'Incubo", "questHorseDropHorseEgg": "Cavallo (Uovo)", "questHorseUnlockText": "Sblocca l'acquisto delle uova di cavallo nel Mercato", - "questBurnoutText": "Burnout and the Exhaust Spirits", + "questBurnoutText": "Burnout e gli Spiriti Esausti", "questBurnoutNotes": "It is well past midnight, still and stiflingly hot, when Redphoenix and scout captain Kiwibot abruptly burst through the city gates. \"We need to evacuate all the wooden buildings!\" Redphoenix shouts. \"Hurry!\"

Kiwibot grips the wall as she catches her breath. \"It's draining people and turning them into Exhaust Spirits! That's why everything was delayed. That's where the missing people have gone. It's been stealing their energy!\"

\"'It'?'\" asks Lemoness.

And then the heat takes form.

It rises from the earth in a billowing, twisting mass, and the air chokes with the scent of smoke and sulphur. Flames lick across the molten ground and contort into limbs, writhing to horrific heights. Smoldering eyes snap open, and the creature lets out a deep and crackling cackle.

Kiwibot whispers a single word.

\"Burnout.\"", "questBurnoutCompletion": "Burnout is DEFEATED!

With a great, soft sigh, Burnout slowly releases the ardent energy that was fueling its fire. As the monster curls quietly into ashes, its stolen energy shimmers through the air, rejuvenating the Exhaust Spirits and returning them to their true forms.

Ian, Daniel, and the Seasonal Sorceress cheer as Habiticans rush to greet them, and all the missing citizens of the Flourishing Fields embrace their friends and families. The final Exhaust Spirit transforms into the Joyful Reaper herself!

\"Look!\" whispers @Baconsaur, as the ashes begin to glitter. Slowly, they resolve into hundreds of shining phoenixes!

One of the glowing birds alights on the Joyful Reaper's skeletal arm, and she grins at it. \"It has been a long time since I've had the exquisite privilege to behold a phoenix in the Flourishing Fields,\" she says. \"Although given recent occurrences, I must say, this is highly thematically appropriate!\"

Her tone sobers, although (naturally) her grin remains. \"We're known for being hard-working here, but we are also known for our feasts and festivities. Rather ironic, I suppose, that as we strove to plan a spectacular party, we refused to permit ourselves any time for fun. We certainly won't make the same mistake twice!\"

She claps her hands. \"Now - let's celebrate!\"", "questBurnoutCompletionChat": "`Burnout is DEFEATED!`\n\nWith a great, soft sigh, Burnout slowly releases the ardent energy that was fueling its fire. As the monster curls quietly into ashes, its stolen energy shimmers through the air, rejuvenating the Exhaust Spirits and returning them to their true forms.\n\nIan, Daniel, and the Seasonal Sorceress cheer as Habiticans rush to greet them, and all the missing citizens of the Flourishing Fields embrace their friends and families. The final Exhaust Spirit transforms into the Joyful Reaper herself!\n\n\"Look!\" whispers @Baconsaur, as the ashes begin to glitter. Slowly, they resolve into hundreds of shining phoenixes!\n\nOne of the glowing birds alights on the Joyful Reaper's skeletal arm, and she grins at it. \"It has been a long time since I've had the exquisite privilege to behold a phoenix in the Flourishing Fields,\" she says. \"Although given recent occurrences, I must say, this is highly thematically appropriate!\"\n\nHer tone sobers, although (naturally) her grin remains. \"We're known for being hard-working here, but we are also known for our feasts and festivities. Rather ironic, I suppose, that as we strove to plan a spectacular party, we refused to permit ourselves any time for fun. We certainly won't make the same mistake twice!\"\n\nShe claps her hands. \"Now - let's celebrate!\"\n\nAll Habiticans receive:\n\nPhoenix Pet\nPhoenix Mount\nAchievement: Savior of the Flourishing Fields\nBasic Candy\nVanilla Candy\nSand Candy\nCinnamon Candy\nChocolate Candy\nRotten Candy\nSour Pink Candy\nSour Blue Candy\nHoney Candy", "questBurnoutBoss": "Burnout", - "questBurnoutBossRageTitle": "Exhaust Strike", - "questBurnoutBossRageDescription": "When this gauge fills, Burnout will unleash its Exhaust Strike on Habitica!", + "questBurnoutBossRageTitle": "Colpo d'Esaurimento", + "questBurnoutBossRageDescription": "Quando questa barra si riempie, Burnout userà il suo Colpo dell'Esaurimento su Habitica!", "questBurnoutDropPhoenixPet": "Fenice (Animale)", "questBurnoutDropPhoenixMount": "Fenice (Cavalcatura)", "questBurnoutBossRageQuests": "`Burnout uses EXHAUST STRIKE!`\n\nOh no! Despite our best efforts, we've let some Dailies get away from us, and now Burnout is inflamed with energy! With a crackling snarl, it engulfs Ian the Quest Master in a surge of spectral fire. As fallen quest scrolls smolder, the smoke clears, and you see that Ian has been drained of energy and turned into a drifting Exhaust Spirit!\n\nOnly defeating Burnout can break the spell and restore our beloved Quest Master. Let's keep our Dailies in check and defeat this monster before it attacks again!", "questBurnoutBossRageSeasonalShop": "`Burnout uses EXHAUST STRIKE!`\n\nAhh!!! Our incomplete Dailies have fed the flames of Burnout, and now it has enough energy to strike again! It lets loose a gout of spectral flame that sears the Seasonal Shop. You're horrified to see that the cheery Seasonal Sorceress has been transformed into a drooping Exhaust Spirit.\n\nWe have to rescue our NPCs! Hurry, Habiticans, complete your tasks and defeat Burnout before it strikes for a third time!", "questBurnoutBossRageTavern": "`Burnout uses EXHAUST STRIKE!`\n\nMany Habiticans have been hiding from Burnout in the Tavern, but no longer! With a screeching howl, Burnout rakes the Tavern with its white-hot hands. As the Tavern patrons flee, Daniel is caught in Burnout's grip, and transforms into an Exhaust Spirit right in front of you!\n\nThis hot-headed horror has gone on for too long. Don't give up... we're so close to vanquishing Burnout for once and for all!", - "questFrogText": "Swamp of the Clutter Frog", - "questFrogNotes": "As you and your friends are slogging through the Swamps of Stagnation, @starsystemic points at a large sign. \"Stay on the path -- if you can.\"

\"Surely that isn't hard!\" @RosemonkeyCT says. \"It's broad and clear.\"

But as you continue, you notice that path is gradually overtaken by the muck of the swamp, laced with bits of strange blue debris and clutter, until it's impossible to proceed.

As you look around, wondering how it got this messy, @Jon Arjinborn shouts, \"Look out!\" An angry frog leaps from the sludge, clad in dirty laundry and lit by blue fire. You will have to overcome this poisonous Clutter Frog to progress!", - "questFrogCompletion": "The frog cowers back into the muck, defeated. As it slinks away, the blue slime fades, leaving the way ahead clear.

Sitting in the middle of the path are three pristine eggs. \"You can even see the tiny tadpoles and through the clear casing!\" @Breadstrings says. \"Here, you should take them.\"", - "questFrogBoss": "Clutter Frog", + "questFrogText": "Palude della Rana del Disordine", + "questFrogNotes": "Mentre tu e i tuoi amici state avanzando faticosamente attraverso le Paludi della Stagnazione, @starsystemic indica un grande cartello. \"Rimanete sul sentiero -- se riuscite\"

\"Non può essere così difficile!\" dice @RosemonkeyCT. \"É largo e benvisibile.\"

Ma mentre continuate, vi accorgete che il sentiero viene gradualmente sommerso dalla mucillagine della palude, mista a strani pezzi di detriti blu e macerie, finché é impossibile procedere.

Mentre vi guardate intorno, chiedendo come ha fatto a diventare così sporca, @Jon Arjinbon grida, \"Attenti!\" Una rana infuriata salta fuori dalla melma, vestita di biancheria sporca e accesa di fuoco blu. Dovrete superare questa velenosa Rana delle Macerie per andare oltre!\"", + "questFrogCompletion": "La rana si ritira nella mucillagine, sconfitta. Mentre salta via, la melma blu sbiadisce, aprendo la strana innanzi.

Appoggiate nel mezzo del sentiero ci sono tre uova perfettamente pulite. \"Si vedono persino i minuscoli girini attraverso il guscio!\" dice @Breaedstrings. \"Ecco, dovresti prenderle.\"", + "questFrogBoss": "Rana del Disordine", "questFrogDropFrogEgg": "Rana (Uovo)", "questFrogUnlockText": "Sblocca l'acquisto delle uova di rana nel Mercato", - "questSnakeText": "The Serpent of Distraction", - "questSnakeNotes": "It takes a hardy soul to live in the Sand Dunes of Distraction. The arid desert is hardly a productive place, and the shimmering dunes have led many a traveler astray. However, something has even the locals spooked. The sands have been shifting and upturning entire villages. Residents claim a monster with an enormous serpentine body lies in wait under the sands, and they have all pooled together a reward for whomever will help them find and stop it. The much-lauded snake charmers @EmeraldOx and @PainterProphet have agreed to help you summon the beast. Can you stop the Serpent of Distraction?", - "questSnakeCompletion": "With assistance from the charmers, you banish the Serpent of Distraction. Though you were happy to help the inhabitants of the Dunes, you can't help but feel a little sad for your fallen foe. While you contemplate the sights, @LordDarkly approaches you. \"Thank you! It's not much, but I hope this can express our gratitude properly.\" He hands you some Gold and... some Snake eggs! You will see that majestic animal again after all.", - "questSnakeBoss": "Serpent of Distraction", - "questSnakeDropSnakeEgg": "Snake (Egg)", - "questSnakeUnlockText": "Unlocks purchasable Snake eggs in the Market" + "questSnakeText": "Il Serpente dell Distrazione", + "questSnakeNotes": "Ci vuole un'anima resistente per vivere tra le Dune di Sabbia della Distrazione. L'arido deserto non è certo un luogo produttivo, e le scintillanti dune hanno portato molti viaggiatori fuori strada. Tuttavia, qualcosa ha spaventato anche la gente del posto. Le sabbie stanno spostando e capovolgendo interi villaggi. I residenti sostengono che un mostro con un enorme corpo di serpente giace in attesa sotto la sabbia, e hanno tutti messi insieme una ricompensa per chiunque li aiuti a trovarlo e a fermarlo. i tanto lodati incantatori di serpenti @EmeraldOx e @PainterProphet hanno accosentito ad aiutarti ad evocare la bestia. Riuscirai a fermare il Serpente della Distrazione?", + "questSnakeCompletion": "Con l'aiuto degli incantatori, riesci a scacciare il Serpente della Distrazione. Anche se sei felice di aver aiutato gli abitanti delle Dune, non puoi fare a meno di essere un po' triste per il tuo nemico caduto. Mentre contempli la vista @LordDarkly ti si avvicina. \"Grazie! Non è molto, ma spero che questo possa esprimere adeguatamente la nostra gratitudine.\" Ti porge un po' d'Oro e... alcune uova di serpente! Vedrai ancora una volta quel maestoso animale, dopo tutto.", + "questSnakeBoss": "Serpente della Distrazione", + "questSnakeDropSnakeEgg": "Serpente (Uovo)", + "questSnakeUnlockText": "Sblocca l'acquisto delle uova di serpente nel Mercato" } \ No newline at end of file diff --git a/common/locales/it/settings.json b/common/locales/it/settings.json index 8fe1e95c57..18d152a759 100644 --- a/common/locales/it/settings.json +++ b/common/locales/it/settings.json @@ -143,5 +143,8 @@ "gemCapExtra": "Limite Gemme Extra:", "mysticHourglasses": "Clessidre Mistiche", "paypal": "PayPal", - "amazonPayments": "Pagamenti su Amazon" + "amazonPayments": "Pagamenti su Amazon", + "timezone": "Time Zone", + "timezoneUTC": "Habitica uses the time zone set on your PC, which is: <%= utc %>", + "timezoneInfo": "If that time zone is wrong, first reload this page using your browser's reload or refresh button to ensure that Habitica has the most recent information. If it is still wrong, adjust the time zone on your PC and then reload this page again.

If you use Habitica on other PCs or mobile devices, the time zone must be the same on them all. If your Dailies have been reseting at the wrong time, repeat this check on all other PCs and on a browser on your mobile devices." } \ No newline at end of file diff --git a/common/locales/it/subscriber.json b/common/locales/it/subscriber.json index 5466cb260c..081667ea3c 100644 --- a/common/locales/it/subscriber.json +++ b/common/locales/it/subscriber.json @@ -60,7 +60,7 @@ "timeTravelersTitleNoSub": "<%= linkStartTyler %>Tyler<%= linkEnd %> e <%= linkStartVicky %>Vicky<%= linkEnd %>", "timeTravelersTitle": "Misteriosi viaggiatori del tempo", "timeTravelersPopoverNoSub": "Hai bisogno di una Clessidra Mistica per evocare i misteriosi viaggiatori del tempo! Gli <%= linkStart %>abbonati<%= linkEnd %> ne ottengono una ogni tre mesi di abbonamento consecutivi. Torna qui quando avrai una Clessidra Mistica, e i viaggiatori del tempo ti porteranno un raro animale, cavalcatura o set di Oggetti Misteriosi dal passato...o forse persino dal futuro!", - "timeTravelersPopover": "Abbiamo notato che possiedi una Clessidra Mistica, quindi saremo felici di tornare indietro nel tempo per te! Scegli l'animale, la cavalcatura o il set di Oggetti Misteriosi che desideri. Puoi vedere una lista degli oggetti dei set passati qui! Se questi non ti soddisfano, forse preferiresti uno dei nostri raffinati e futuristici Set di Oggetti Steampunk?", + "timeTravelersPopover": "Abbiamo notato che possiedi una Clessidra Mistica, quindi saremo felici di tornare indietro nel tempo per te! Scegli l'animale, la cavalcatura o il set di Oggetti Misteriosi che desideri. Puoi vedere una lista degli oggetti dei set passati qui! Se questi non ti soddisfano, forse preferiresti uno dei nostri raffinati e futuristici set di oggetti steampunk?", "timeTravelersAlreadyOwned": "Congratulazioni! Possiedi già tutto ciò che i Viaggiatori del Tempo possono attualmente offrire. Grazie per il tuo supporto al sito!", "mysticHourglassPopover": "La Clessidra Mistica ti permette di acquistare alcuni oggetti a disponibilità limitata, come i set mensili di Oggetti Misteriosi le ricompense degli eventi mondiali, dal passato!", "subUpdateCard": "Aggiorna Carta", diff --git a/common/locales/it/tasks.json b/common/locales/it/tasks.json index 1d51194b80..6884bd2d62 100644 --- a/common/locales/it/tasks.json +++ b/common/locales/it/tasks.json @@ -54,7 +54,7 @@ "complete": "Completi", "dated": "Con scadenza", "due": "Incomplete", - "notDue": "Not Due", + "notDue": "Non dovuto", "grey": "Grigie", "score": "Punti", "rewards": "Ricompense", @@ -75,7 +75,7 @@ "startDateHelp": "Imposta la data in cui l'attività sarà \"attiva\". Non sarà necessario completarla prima di quel giorno.", "streakName": "Medaglie Serie", "streakText": "Ha completato <%= streaks %> serie di 21 giorni nelle Daily.", - "streakSingular": "Streaker", + "streakSingular": "Perfezionista", "streakSingularText": "Ha completato una serie di 21 giorni su una Daily.", "perfectName": "Giorni Perfetti", "perfectText": "Ha completato tutte le Daily attive <%= perfects %> volte. Grazie a questa medaglia ottieni un bonus a tutti gli attributi pari a +livello/2 per il giorno successivo. Per i livelli superiori a 100 non c'è alcun effetto aggiuntivo oltre al bonus.", @@ -88,8 +88,7 @@ "fortifyText": "La fortificazione farà tornare tutte le attività allo stato neutro (colore giallo), proprio come se le avessi appena create, e riempirà la tua barra della salute. Questo è un ottimo aiuto se le tue attività rosse stanno rendendo il gioco troppo difficile, o se quelle blu stanno rendendo il gioco troppo semplice. Se ripartire con calma suona come una buona idea, spendi qualche gemma e fai vedere alle tue attività chi comanda!", "sureDelete": "Vuoi davvero eliminare questa attività?", "streakCoins": "Bonus serie!", - "pushTaskToTop": "Metti in cima alla lista", - "pushTaskToBottom": "Metti in fondo alla lista", + "pushTaskToTop": "Push task to top. Hold ctrl or cmd to push to bottom.", "emptyTask": "Inserisci prima il titolo dell'attività.", "dailiesRestingInInn": "Stai riposando nella Locanda! Le tue Daily NON ti danneggeranno stanotte, PERÒ si resetteranno comunque ogni giorno. Se stai partecipando ad una missione, non infliggerai danni/raccoglierai oggetti finchè non lasci la Locanda, ma puoi comunque essere danneggiato dal Boss se i tuoi compagni di squadra non completano le proprie Daily.", "habitHelp1": "Gli Habit Positivi sono quelli che completi spesso. Ti premiano con Oro ed Esperienza ogni volta che clicchi <%= plusIcon %>.", diff --git a/common/locales/ja/backgrounds.json b/common/locales/ja/backgrounds.json index 2fbddb5940..d39a64e4c0 100644 --- a/common/locales/ja/backgrounds.json +++ b/common/locales/ja/backgrounds.json @@ -125,5 +125,12 @@ "backgroundNightDunesText": "Night Dunes", "backgroundNightDunesNotes": "Walk peacefully through the Night Dunes.", "backgroundSunsetOasisText": "Sunset Oasis", - "backgroundSunsetOasisNotes": "Bask in the Sunset Oasis." + "backgroundSunsetOasisNotes": "Bask in the Sunset Oasis.", + "backgrounds122015": "SET 19: Released December 2015", + "backgroundAlpineSlopesText": "Alpine Slopes", + "backgroundAlpineSlopesNotes": "Ski on the Alpine Slopes.", + "backgroundSnowySunriseText": "Snowy Sunrise", + "backgroundSnowySunriseNotes": "Gaze at the Snowy Sunrise.", + "backgroundWinterTownText": "Winter Town", + "backgroundWinterTownNotes": "Bustle through a Winter Town." } \ No newline at end of file diff --git a/common/locales/ja/faq.json b/common/locales/ja/faq.json index 5f7e1e4780..0cc78b9bf9 100644 --- a/common/locales/ja/faq.json +++ b/common/locales/ja/faq.json @@ -2,7 +2,7 @@ "frequentlyAskedQuestions": "よくある質問", "faqQuestion0": "I'm confused. Where do I get an overview?", "iosFaqAnswer0": "First, you'll set up tasks that you want to do in your everyday life. Then, as you complete the tasks in real life and check them off, you'll earn experience and gold. Gold is used to buy equipment and some items, as well as custom rewards. Experience causes your character to level up and unlock content such as Pets, Skills, and Quests! You can customize your character under Menu > Customize Avatar.\n\n Some basic ways to interact: click the (+) in the upper-right-hand corner to add a new task. Tap on an existing task to edit it, and swipe left on a task to delete it. You can sort tasks using Tags in the upper-left-hand corner, and expand and contract checklists by clicking on the checklist bubble.", - "webFaqAnswer0": "First, you'll set up tasks that you want to do in your everyday life. Then, as you complete the tasks in real life and check them off, you'll earn Experience and Gold. Gold is used to buy equipment and some items, as well as custom rewards. Experience causes your character to level up and unlock content such as pets, skills, and quests! For more detail, the wiki has an excellent step-by-step overview of the game [right here](http://habitica.wikia.com/wiki/Habitica_Wiki).", + "webFaqAnswer0": "First, you'll set up tasks that you want to do in your everyday life. Then, as you complete the tasks in real life and check them off, you'll earn Experience and Gold. Gold is used to buy equipment and some items, as well as custom rewards. Experience causes your character to level up and unlock content such as pets, skills, and quests! For more detail, check out a step-by-step overview of the game at [Help -> Overview for New Users](https://habitica.com/static/overview).", "faqQuestion1": "How do I set up my tasks?", "iosFaqAnswer1": "Good Habits (the ones with a +) are tasks that you can do many times a day, such as eating vegetables. Bad Habits (the ones with a -) are tasks that you should avoid, like biting nails. Habits with a + and a - have a good choice and a bad choice, like taking the stairs vs. taking the elevator. Good Habits award experience and gold. Bad Habits subtract health.\n\n Dailies are tasks that you have to do every day, like brushing your teeth or checking your email. You can adjust the days that a Daily is due by tapping to edit it. If you skip a Daily that is due, your avatar will take damage overnight. Be careful not to add too many Dailies at once!\n\n To-Dos are your To-Do list. Completing a To-Do earns you gold and experience. You never lose health from To-Dos. You can add a due date to a To-Do by tapping to edit.", "webFaqAnswer1": "Good Habits (the ones with a ) are tasks that you can do many times a day, such as eating vegetables. Bad Habits (the ones with a ) are tasks that you should avoid, like biting nails. Habits with a and a have a good choice and a bad choice, like taking the stairs vs. taking the elevator. Good Habits award Experience and Gold. Bad Habits subtract Health.\n

\n Dailies are tasks that you have to do every day, like brushing your teeth or checking your email. You can adjust the days that a Daily is due by clicking the pencil item to edit it. If you skip a Daily that is due, your avatar will take damage overnight. Be careful not to add too many Dailies at once!\n

\n To-Dos are your To-Do list. Completing a To-Do earns you Gold and Experience. You never lose Health from To-Dos. You can add a due date to a To-Do by clicking the pencil icon to edit.", diff --git a/common/locales/ja/gear.json b/common/locales/ja/gear.json index e262ea1653..581667a937 100644 --- a/common/locales/ja/gear.json +++ b/common/locales/ja/gear.json @@ -149,15 +149,19 @@ "weaponArmoireRancherLassoText": "牧童の投げ縄", "weaponArmoireRancherLassoNotes": "Lassos: the ideal tool for rounding up and wrangling. Increases Strength by <%= str %>, Perception by <%= per %>, and Intelligence by <%= int %>. Enchanted Armoire: Rancher Set (Item 3 of 3).", "weaponArmoireMythmakerSwordText": "Mythmaker Sword", - "weaponArmoireMythmakerSwordNotes": "Though it may seem humble, this sword has made many mythic heroes. Increases Perception and Strength by <%= attrs %> each. Enchanted Armoire: Golden Toga Set (Item 3 of 3)", + "weaponArmoireMythmakerSwordNotes": "Though it may seem humble, this sword has made many mythic heroes. Increases Perception and Strength by <%= attrs %> each. Enchanted Armoire: Golden Toga Set (Item 3 of 3).", "weaponArmoireIronCrookText": "Iron Crook", - "weaponArmoireIronCrookNotes": "Fiercely hammered from iron, this iron crook is good at herding sheep. Increases Perception and Strength by <%= attrs %> each. Enchanted Armoire: Horned Iron Set (Item 3 of 3)", + "weaponArmoireIronCrookNotes": "Fiercely hammered from iron, this iron crook is good at herding sheep. Increases Perception and Strength by <%= attrs %> each. Enchanted Armoire: Horned Iron Set (Item 3 of 3).", "weaponArmoireGoldWingStaffText": "Gold Wing Staff", "weaponArmoireGoldWingStaffNotes": "The wings on this staff constantly flutter and twist. Increases all attributes by <%= attrs %> each. Enchanted Armoire: Independent Item.", "weaponArmoireBatWandText": "Bat Wand", "weaponArmoireBatWandNotes": "This wand can turn any task into a bat! Wave it about and watch them fly away. Increases Intelligence by <%= int %> and Perception by <%= per %>. Enchanted Armoire: Independent Item.", "weaponArmoireShepherdsCrookText": "Shepherd's Crook", "weaponArmoireShepherdsCrookNotes": "Useful for herding gryphons. Increases Constitution by <%= con %>. Enchanted Armoire: Shepherd Set (Item 1 of 3).", + "weaponArmoireCrystalCrescentStaffText": "Crystal Crescent Staff", + "weaponArmoireCrystalCrescentStaffNotes": "Summon the power of the crescent moon with this shining staff! Increases Intelligence and Strength by <%= attrs %> each. Enchanted Armoire: Crystal Crescent Set (Item 3 of 3).", + "weaponArmoireBlueLongbowText": "Blue Longbow", + "weaponArmoireBlueLongbowNotes": "Ready... Aim... Fire! This bow has great range. Increases Perception by 9, Constitution by 8, and Strength by 7. Enchanted Armoire: Independent Item.", "armor": "鎧", "armorBase0Text": "無地の服", "armorBase0Notes": "普通の服。効果なし。", @@ -222,7 +226,7 @@ "armorSpecialBirthday2015Text": "ばかげたパーティーローブ", "armorSpecialBirthday2015Notes": "Habiticaの誕生日おめでとう!この素晴らしい日を祝うために、このばかげたパーティーローブを着てください。効果なし。", "armorSpecialGaymerxText": "虹色の戦士の鎧", - "armorSpecialGaymerxNotes": "プライドシーズンとGaymerXを記念するこの特殊な鎧は、輝くカラフルな虹模様で飾られている! GaymerXはLGBTQやゲームを祝うゲーム大会で、誰でも参加することができる。これは、7月の11日-13日までにサンフランシスコのダウンタウンインターコンチネンタルで開催される!効果なし。", + "armorSpecialGaymerxNotes": "In celebration of the GaymerX Conference, this special armor is decorated with a radiant, colorful rainbow pattern! GaymerX is a game convention celebrating LGTBQ and gaming and is open to everyone.", "armorSpecialSpringRogueText": "キャットスーツ", "armorSpecialSpringRogueNotes": "完璧に手入れを施されている。知覚が<%= per %>上がる。2014年春季限定版装備。", "armorSpecialSpringWarriorText": "クローバーの鎧", @@ -309,6 +313,8 @@ "armorMystery201508Notes": "Run fast as a flash in the fluffy Cheetah Costume! Confers no benefit. August 2015 Subscriber Item.", "armorMystery201509Text": "Werewolf Costume", "armorMystery201509Notes": "これ本当に衣装だよね?効果なし。2015年9月購読者アイテム。", + "armorMystery201511Text": "Wooden Armor", + "armorMystery201511Notes": "Considering this armor was carved directly from a magical log, it's surprisingly comfortable. Confers no benefit. November 2015 Subscriber Item.", "armorMystery301404Text": "スチームパンクスーツ", "armorMystery301404Notes": "小粋な、そして、颯爽とした!効果なし。3015年2月購読者アイテム。", "armorArmoireLunarArmorText": "Soothing Lunar Armor", @@ -327,6 +333,8 @@ "armorArmoireShepherdRobesNotes": "The fabric is cool and breathable, perfect for a hot day herding gryphons in the desert. Increases Strength and Perception by <%= attrs %> each. Enchanted Armoire: Shepherd Set (Item 2 of 3).", "armorArmoireRoyalRobesText": "Royal Robes", "armorArmoireRoyalRobesNotes": "Wonderful ruler, rule all day long! Increases Constitution, Intelligence, and Perception by <%= attrs %> each. Enchanted Armoire: Royal Set (Item 3 of 3).", + "armorArmoireCrystalCrescentRobesText": "Crystal Crescent Robes", + "armorArmoireCrystalCrescentRobesNotes": "These magical robes are luminescent at night. Increases Constitution and Perception by <%= attrs %> each. Enchanted Armoire: Crystal Crescent Set (Item 2 of 3).", "headgear": "ヘッドギア", "headBase0Text": "兜なし", "headBase0Notes": "ヘッドギアなし", @@ -447,7 +455,7 @@ "headSpecialFall2015HealerText": "Hat of Frog", "headSpecialFall2015HealerNotes": "This is an extremely serious hat that is worthy of only the most advanced potioners. Increases Intelligence by <%= int %>. Limited Edition 2015 Autumn Gear.", "headSpecialGaymerxText": "虹色の戦士の兜", - "headSpecialGaymerxNotes": "プライドシーズンとGaymerXを記念するこの特殊な兜は、輝くカラフルな虹模様で飾られている!GaymerXはLGBTQやゲームを祝うゲーム大会で、誰でも参加することができる。これは、7月の11日-13日までにサンフランシスコのダウンタウンインターコンチネンタルで開催される!効果がない。", + "headSpecialGaymerxNotes": "In celebration of the GaymerX Conference, this special helmet is decorated with a radiant, colorful rainbow pattern! GaymerX is a game convention celebrating LGTBQ and gaming and is open to everyone.", "headMystery201402Text": "羽かぶと", "headMystery201402Notes": "この羽のついた頭飾りは着用者に風のスピードを吹き込みます!効果なし。2014年2月購読者アイテム。", "headMystery201405Text": "マインドの炎", @@ -470,6 +478,8 @@ "headMystery201508Notes": "This cozy cheetah hat is very fuzzy! Confers no benefit. August 2015 Subscriber Item.", "headMystery201509Text": "Werewolf Mask", "headMystery201509Notes": "これ本当にマスクだよね?効果なし。2015年9月購読者アイテム。", + "headMystery201511Text": "Log Crown", + "headMystery201511Notes": "Count the number of rings to learn how old this crown is. Confers no benefit. November 2015 Subscriber Item.", "headMystery301404Text": "ファンシートップハット", "headMystery301404Notes": "最上の良家の人々のためのファンシートップハット!3015年1月購読者アイテム。効果なし。", "headMystery301405Text": "ベーシックトップハット", @@ -506,6 +516,8 @@ "headArmoireBlueFloppyHatNotes": "Many spells have been sewn into this simple hat, giving it a brilliant blue color. Increases Constitution, Intelligence, and Perception by <%= attrs %> each. Enchanted Armoire: Independent Item.", "headArmoireShepherdHeaddressText": "Shepherd Headdress", "headArmoireShepherdHeaddressNotes": "Sometimes the gryphons that you herd like to chew on this headdress, but it makes you seem more intelligent nonetheless. Increases Intelligence by <%= int %>. Enchanted Armoire: Shepherd Set (Item 3 of 3).", + "headArmoireCrystalCrescentHatText": "Crystal Crescent Hat", + "headArmoireCrystalCrescentHatNotes": "The design on this hat waxes and wanes with the phases of the moon. Increases Intelligence and Perception by <%= attrs %> each. Enchanted Armoire: Crystal Crescent Set (Item 1 of 3).", "offhand": "利き手でないほうの手のアイテム", "shieldBase0Text": "利き手でないほうの手の装備はありません", "shieldBase0Notes": "盾、またはセカンドウェポンがありません。", diff --git a/common/locales/ja/limited.json b/common/locales/ja/limited.json index 8cc7606bff..188bbd48e4 100644 --- a/common/locales/ja/limited.json +++ b/common/locales/ja/limited.json @@ -21,6 +21,7 @@ "valentineCardAchievementText": "ああ、貴方と貴方の友達はとっても仲がいいんですね!<%= cards %> 個のバレンタインカードを送信または受信しました。", "polarBear": "シロクマ", "turkey": "シチメンチョウ", + "gildedTurkey": "Gilded Turkey", "polarBearPup": "シロクマの子", "jackolantern": "ジャック・オ・ランタン", "seasonalShop": "季節品ショップ", diff --git a/common/locales/ja/settings.json b/common/locales/ja/settings.json index 998559baa3..a31112720b 100644 --- a/common/locales/ja/settings.json +++ b/common/locales/ja/settings.json @@ -143,5 +143,8 @@ "gemCapExtra": "Gem Cap Extra:", "mysticHourglasses": "Mystic Hourglasses:", "paypal": "PayPal", - "amazonPayments": "Amazon Payments" + "amazonPayments": "Amazon Payments", + "timezone": "Time Zone", + "timezoneUTC": "Habitica uses the time zone set on your PC, which is: <%= utc %>", + "timezoneInfo": "If that time zone is wrong, first reload this page using your browser's reload or refresh button to ensure that Habitica has the most recent information. If it is still wrong, adjust the time zone on your PC and then reload this page again.

If you use Habitica on other PCs or mobile devices, the time zone must be the same on them all. If your Dailies have been reseting at the wrong time, repeat this check on all other PCs and on a browser on your mobile devices." } \ No newline at end of file diff --git a/common/locales/ja/tasks.json b/common/locales/ja/tasks.json index 66f757765e..74c182220b 100644 --- a/common/locales/ja/tasks.json +++ b/common/locales/ja/tasks.json @@ -88,8 +88,7 @@ "fortifyText": "Fortify will return all your tasks to a neutral (yellow) state, as if you'd just added them, and top your Health off to full. This is great if all your red tasks are making the game too hard, or all your blue tasks are making the game too easy. If starting fresh sounds much more motivating, spend the Gems and catch a reprieve!", "sureDelete": "本当にこのタスクを削除しても良いですか?", "streakCoins": "連続実行ボーナス!", - "pushTaskToTop": "タスクを一番上に上げる", - "pushTaskToBottom": "タスクを一番下に下げる", + "pushTaskToTop": "Push task to top. Hold ctrl or cmd to push to bottom.", "emptyTask": "タスクのタイトルをまず入力してください。", "dailiesRestingInInn": "あなたは宿に泊まっています!日課が未実施でも今晩あなたはダメージを受けません。ですが日課は毎日リフレッシュされます。もしクエスト中であれば、宿をチェックアウトするまでダメージをうけたりアイテムを集めたりできません、ですがあなたのパーティの仲間が日課をスキップしたら、あなたはダメージを受けます。", "habitHelp1": "よい習慣は、あなたがよく行っている行動です。<%= plusIcon %> をクリックするたびに、良い習慣からコインと経験値を獲得することができます。", diff --git a/common/locales/nl/backgrounds.json b/common/locales/nl/backgrounds.json index 81541d6dc2..3d7cdfb63a 100644 --- a/common/locales/nl/backgrounds.json +++ b/common/locales/nl/backgrounds.json @@ -125,5 +125,12 @@ "backgroundNightDunesText": "Nachtduinen", "backgroundNightDunesNotes": "Maak een vredige wandeling door de nachtduinen.", "backgroundSunsetOasisText": "Oase bij zonsondergang", - "backgroundSunsetOasisNotes": "Baadt in de ondergaande oasezon." + "backgroundSunsetOasisNotes": "Baadt in de ondergaande oasezon.", + "backgrounds122015": "SET 19: Released December 2015", + "backgroundAlpineSlopesText": "Alpine Slopes", + "backgroundAlpineSlopesNotes": "Ski on the Alpine Slopes.", + "backgroundSnowySunriseText": "Snowy Sunrise", + "backgroundSnowySunriseNotes": "Gaze at the Snowy Sunrise.", + "backgroundWinterTownText": "Winter Town", + "backgroundWinterTownNotes": "Bustle through a Winter Town." } \ No newline at end of file diff --git a/common/locales/nl/communityguidelines.json b/common/locales/nl/communityguidelines.json index 6e3e92ac12..af575ed6a5 100644 --- a/common/locales/nl/communityguidelines.json +++ b/common/locales/nl/communityguidelines.json @@ -25,7 +25,7 @@ "commGuidePara011b": "op GitHub/Wikia", "commGuidePara011c": "op Wikia", "commGuidePara011d": "op GitHub", - "commGuidePara012": "Als je moderator-gerelateerde problemen of zorgen hebt, stuur dan een mail naar Lemoness (leslie@habitica).", + "commGuidePara012": "Als een probleem hebt met of zorgen over een specifieke moderator, stuur alsjeblieft een e-mail naar Lemoness (leslie@habitica).", "commGuidePara013": "In een gemeenschap zo groot als Habitica is het zo dat gebruikers komen en gaan en dat ook beheerders soms hun mantels neer moeten leggen om te ontspannen. De volgende mensen zijn emeritus beheerder. Ze handelen niet meer met het gezag van een beheerder, maar toch willen we hun werk eren!", "commGuidePara014": "Emeritus beheerders:", "commGuideHeadingPublicSpaces": "Openbare ruimtes in Habitica", @@ -71,9 +71,9 @@ "commGuidePara043": "Habitica gebruikt GitHub om bugs bij te houden en bijdrages te leveren aan de programmacode. Dat is de smidse waar onze onvermoeibare Blacksmiths de functionaliteiten smeden! Alle regels voor openbare ruimtes zijn van toepassing. Wees beleefd tegen de Blacksmiths - ze hebben er een hele kluif aan om de site in de lucht te houden. Hoera voor de Blacksmiths!", "commGuidePara044": "De volgende gebruikers zijn leden van de Habitica-repo:", "commGuideHeadingWiki": "Wiki", - "commGuidePara045": "De Habitica-wiki verzamelt informatie over de website. Er zijn ook een paar fora, vergelijkbaar met de gildes in Habitica. Daarom zijn alle regels voor openbare ruimtes van toepassing.", + "commGuidePara045": "De Habitica-wiki verzamelt informatie over de website. Zij host ook een paar fora, vergelijkbaar met de gildes in Habitica. Daarom zijn alle regels voor openbare ruimtes daar ook van toepassing.", "commGuidePara046": "De Habitica-wiki kan beschouwd worden als een database voor alles wat met Habitica te maken heeft. Er zijn artikelen over de functionaliteiten van de site, spelhandleidingen, tips voor hoe je kunt bijdragen aan Habitica en plekken waar je je gilde of groep kunt aanprijzen of kunt stemmen over bepaalde onderwerpen", - "commGuidePara047": "Omdat de wiki gehost wordt door Wikia, zijn, naast de regels die door Habitica en de Habitica-wiki vastgesteld zijn, ook de algemene voorwaarden van Wikia van toepassing.", + "commGuidePara047": "Omdat de wiki gehost wordt door Wikia, zijn naast de regels die door Habitica en de Habitica-wiki vastgesteld zijn, ook de algemene voorwaarden van Wikia van toepassing.", "commGuidePara048": "De wiki is een samenwerking tussen alle redacteurs, dus er zijn enkele aanvullende richtlijnen van toepassing:", "commGuideList04A": "Vraag nieuwe pagina's of grote veranderingen aan op het Wiki Trello-board", "commGuideList04B": "Sta open voor suggesties over jouw redactievoorstellen", diff --git a/common/locales/nl/content.json b/common/locales/nl/content.json index f63699f12f..d04707b33c 100644 --- a/common/locales/nl/content.json +++ b/common/locales/nl/content.json @@ -100,7 +100,7 @@ "questEggFrogAdjective": "prinselijke", "questEggSnakeText": "Slang", "questEggSnakeMountText": "Slang", - "questEggSnakeAdjective": "een kronkelende", + "questEggSnakeAdjective": "een slissende", "eggNotes": "Vind een uitbroedtoverdrank om over dit ei te gieten en er zal een <%= eggAdjective(locale) %> <%= eggText(locale) %> uitkomen.", "hatchingPotionBase": "Normale", "hatchingPotionWhite": "Witte", diff --git a/common/locales/nl/faq.json b/common/locales/nl/faq.json index f2e4d137e4..8cb683fd76 100644 --- a/common/locales/nl/faq.json +++ b/common/locales/nl/faq.json @@ -2,7 +2,7 @@ "frequentlyAskedQuestions": "Veelgestelde vragen", "faqQuestion0": "Ik ben in de war. Waar kan ik een overzicht vinden? ", "iosFaqAnswer0": "Allereerst zet je de taken op die je in je dagelijkse leven wil doen. Vervolgens, als je de taken volbrengt en afvinkt, verdien je ervaring en goud. Goud wordt gebruikt om uitrusting en sommige voorwerpen te kopen, evenals voor persoonlijke beloningen. Ervaring zorgt ervoor dat je karakter omhoog gaat in niveau en dat je spelinhoud als huisdieren, vaardigheden en queesten vrijspeelt! Je kunt je karakter aanpassen onder Menu > Avatar aanpassen.\n\nWat simpele dingen om te beginnen: klik op de (+) in de rechterbovenhoek om een nieuwe taak toe te voegen. Tik op een bestaande taak om hem aan te passen en veeg hem naar links om de taak te verwijderen. Je kunt taken sorteren door labels te gebruiken in de linkerbovenhoek en checklists in- en uitklappen door op het checklist-bolletje te klikken.", - "webFaqAnswer0": "Allereerst zet je de taken op die je in je dagelijkse leven wil doen. Vervolgens, als je de taken volbrengt en afvinkt, verdien je ervaring en goud. Goud wordt gebruikt om uitrusting en sommige voorwerpen te kopen, evenals voor persoonlijke beloningen. Ervaring zorgt ervoor dat je karakter omhoog gaat in level en dat je spelinhoud als huisdieren, vaardigheden en queesten vrijspeeld! Voor meer informatie heeft de wiki een uitstekende stap-voor-stap uitleg van het spel. [Hier te vinden.](http://habitica.wikia.com/wiki/Habitica_Wiki).", + "webFaqAnswer0": "First, you'll set up tasks that you want to do in your everyday life. Then, as you complete the tasks in real life and check them off, you'll earn Experience and Gold. Gold is used to buy equipment and some items, as well as custom rewards. Experience causes your character to level up and unlock content such as pets, skills, and quests! For more detail, check out a step-by-step overview of the game at [Help -> Overview for New Users](https://habitica.com/static/overview).", "faqQuestion1": "Hoe stel ik mijn taken in?", "iosFaqAnswer1": "Goede gewoonten (degenen met een +) zijn taken die je meerdere keren per dag kunt doen, zoals groenten eten. Slechte gewoonten (degenen met een -) zijn taken die je zou moeten nalaten, zoals op je nagels bijten. Gewoonten met een + en een - hebben een goede en een slechte keuze, bijvoorbeeld de trap nemen tegenover de lift nemen. Goede gewoonten belonen je met ervaring en goud. Slechte gewoonten doen je levenspunten verliezen.\n\nDagelijkse taken zijn taken die je iedere dag moet doen, zoals je tanden poetsen of je e-mail bekijken. Je kunt de dagen aanpassen waarop je een bepaalde dagelijkse taak moet doen door erop te drukken en hem te bewerken. Als je een dagelijkse taak overslaat op een dag dat hij gedaan moet worden, zal je avatar gedurende de nacht schade oplopen. Wees voorzichtig en voeg niet teveel dagelijkse taken tegelijk toe!\n\nTo-do's zijn de dingen die je nog een keer moet doen. Een to-do afvinken levert geld en ervaringspunten op. Je kunt nooit levenspunten kwijtraken door een to-do. Je kunt een geplande voltooiingsdatum toevoegen aan een to-do door er op te tikken om hem aan te passen.", "webFaqAnswer1": "Goede gewoonten (degenen met een ) zijn taken die je meerdere keren per dag kunt doen, zoals groenten eten. Slechte gewoonten (degenen met een ) zijn taken die je zou moeten nalaten, zoals op je nagels bijten. Gewoonten met een en een hebben een goede en een slechte keuze, bijvoorbeeld de trap nemen tegenover de lift nemen. Goede gewoonten belonen je met ervaring en goud. Slechte gewoonten doen je levenspunten verliezen.\n

\nDagelijkse taken zijn taken die je iedere dag moet doen, zoals je tanden poetsen of je e-mail bekijken. Je kunt de dagen aanpassen waarop je een bepaalde dagelijkse taak moet doen door erop te drukken en hem te bewerken. Als je een dagelijkse taak overslaat op een dag dat hij gedaan moet worden, zal je avatar gedurende de nacht schade oplopen. Wees voorzichtig en voeg niet teveel dagelijkse taken tegelijk toe!\n

\nTo-do's zijn de dingen die je nog een keer moet doen. Een to-do afvinken levert geld en ervaringspunten op. Je kunt nooit levenspunten kwijtraken door een to-do. Je kunt een geplande voltooiingsdatum toevoegen aan een to-do toevoegen door er op te drukken om hem aan te passen.", @@ -10,8 +10,8 @@ "iosFaqAnswer2": "De wiki heeft vier lijsten van voorbeeldtaken om als inspiratie te gebruiken:\n

\n* [Voorbeeld gewoontes](http://habitica.wikia.com/wiki/Sample_Habits)\n* [Voorbeeld dagelijkse taken](http://habitica.wikia.com/wiki/Sample_Dailies)\n* [Voorbeeld to-do's](http://habitica.wikia.com/wiki/Sample_To-Dos)\n* [Voorbeeld persoonlijke beloningen](http://habitica.wikia.com/wiki/Sample_Custom_Rewards)", "webFaqAnswer2": "De wiki heeft vier lijsten van voorbeeldtaken om als inspiratie te gebruiken:\n* [Voorbeeld gewoontes](http://habitica.wikia.com/wiki/Sample_Habits)\n* [Voorbeeld dagelijkse taken](http://habitica.wikia.com/wiki/Sample_Dailies)\n* [Voorbeeld to-do's](http://habitica.wikia.com/wiki/Sample_To-Dos)\n* [Voorbeeld persoonlijke beloningen](http://habitica.wikia.com/wiki/Sample_Custom_Rewards)", "faqQuestion3": "Waarom veranderen mijn taken van kleur?", - "iosFaqAnswer3": "Je taken veranderen van kleur afhankelijk van hoe goed je ze op dat moment voltooid! Iedere taak begint als neutraal geel. Voltooi dagelijkse taken of positieve gewoonten en ze veranderen naar blauw. Mis een dagelijkse taak of geef toe aan een slechte gewoonte en de taak veranderd naar rood. Hoe roder de taak, hoe meer je beloond zult worden, maar als het een dagelijkse taak of slechte gewoonte is, des te meer schade doet hij je! Dit helpt je te motiveren om problematische taken te voltooien.", - "webFaqAnswer3": "Je taken veranderen van kleur afhankelijk van hoe goed je ze op dat moment voltooid! Iedere taak begint als neutraal geel. Voltooi dagelijkse taken of positieve gewoonten en ze veranderen naar blauw. Mis een dagelijkse taak of geef toe aan een slechte gewoonte en de taak veranderd naar rood. Hoe roder de taak, hoe meer je beloond zult worden, maar als het een dagelijkse taak of slechte gewoonte is, des te meer schade doet hij je! Dit helpt je te motiveren om problematische taken te voltooien.", + "iosFaqAnswer3": "Je taken veranderen van kleur afhankelijk van hoe goed je ze op dat moment voltooit! Iedere taak begint als neutraal geel. Voltooi dagelijkse taken of positieve gewoonten en ze veranderen naar blauw. Mis een dagelijkse taak of geef toe aan een slechte gewoonte en de taak verandert naar rood. Hoe roder de taak, hoe meer je beloond zult worden, maar als het een dagelijkse taak of slechte gewoonte is, des te meer schade doet hij je! Dit helpt je te motiveren om problematische taken te voltooien.", + "webFaqAnswer3": "Je taken veranderen van kleur afhankelijk van hoe goed je ze op dat moment voltooit! Iedere taak begint als neutraal geel. Voltooi dagelijkse taken of positieve gewoonten en ze veranderen naar blauw. Mis een dagelijkse taak of geef toe aan een slechte gewoonte en de taak verandert naar rood. Hoe roder de taak, hoe meer je beloond zult worden, maar als het een dagelijkse taak of slechte gewoonte is, des te meer schade doet hij je! Dit helpt je te motiveren om problematische taken te voltooien.", "faqQuestion4": "Waarom heeft mijn avatar levenspunten verloren en hoe krijg ik ze terug?", "iosFaqAnswer4": "Er zijn verschillende dingen die je kunnen schaden. Ten eerste: als je dagelijkse taken 's nachts incompleet zijn, doen ze schade. Ten tweede: als je een slechte gewoonte aanklikt, zal het je schade doen. Tenslotte: als je in een gevecht met een eindbaas bent met je groep en een van je groepsleden niet al zijn/haar taken gedaan heeft, dan zal de baas je aanvallen.\n\nDe belangrijkste manier om te genezen is om een level omhoog te gaan, dat herstelt al je levenspunten. Je kunt ook met goud een gezondheidsdrankje kopen in de beloningskolom. Daarbij, op level 10 en daarboven, kun je ervoor kiezen om een genezer te worden en dan kun je genezingsvaardigheden leren. Als je in een groep zit met een genezer, kan deze je ook genezen.", "webFaqAnswer4": "Er zijn verschillende dingen die je kunnen schaden. Ten eerste: als je dagelijkse taken 's nachts incompleet zijn, doen ze schade. Ten tweede: als je een slechte gewoonte aanklikt, zal het je schade doen. Tenslotte: als je in een gevecht met een eindbaas bent met je groep en een van je groepsleden niet al zijn/haar taken gedaan heeft, dan zal de baas je aanvallen.\n

\nDe belangrijkste manier om te genezen is om een level omhoog te gaan, dat herstelt al je levenspunten. Je kunt ook met goud een gezondheidsdrankje kopen in de beloningskolom. Daarbij, op level 10 en daarboven, kun je ervoor kiezen om een genezer te worden en dan kun je genezingsvaardigheden leren. Als je in een groep zit (onder Sociaal > Groep) met een genezer, kan deze je ook genezen.", @@ -39,6 +39,6 @@ "faqQuestion12": "Hoe strijd ik tegen een Wereldbaas?", "iosFaqAnswer12": "Wereldbazen zijn speciale monsters die in de herberg verschijnen. Alle actieve gebruikers vechten automatisch tegen de baas en hun taken en vaardigheden beschadigen de baas zoals gebruikelijk.\n\nJe kunt ook tegelijkertijd een normale queeste aan het doen zijn. Je taken en vaardigheden tellen dan zowel tegen de wereldbaas als tegen de baas/ verzamelqueeste van je groep.\n\nEen wereldbaas zal jou of je account nooit beschadigen. In plaats daarvan heeft het een furie-balk die vult wanneer gebruikers dagelijkse taken overslaan. Als de furie-balk gevuld is, valt de baas een van de NPC's op de site aan en hun afbeelding verandert dan.\n\nJe kunt meer lezen over [wereldbazen uit het verleden](http://habitica.wikia.com/wiki/World_Bosses) op de wiki.", "webFaqAnswer12": "Wereldbazen zijn speciale monsters die in de herberg verschijnen. Alle actieve gebruikers vechten automatisch tegen de baas en hun taken en vaardigheden beschadigen de baas zoals gebruikelijk.\n

\nJe kunt ook tegelijkertijd een normale queeste aan het doen zijn. Je taken en vaardigheden tellen dan zowel tegen de wereldbaas als tegen de baas/ verzamelqueeste van je groep.\n

\nEen wereldbaas zal jou of je account nooit beschadigen. In plaats daarvan heeft het een furie-balk die vult wanneer gebruikers dagelijkse taken overslaan. Als de furie-balk gevuld is, valt de baas een van de NPC's op de site aan en hun afbeelding verandert dan.\n

\nJe kunt meer lezen over [wereldbazen uit het verleden](http://habitica.wikia.com/wiki/World_Bosses) op de wiki.", - "iosFaqStillNeedHelp": "Als je een vraag hebt die niet in deze lijst staat, vraag het in de herberg-chat onder Sociaal > Herberg! We zijn blij dat we kunnen helpen.", + "iosFaqStillNeedHelp": "Als je een vraag hebt die niet in deze lijst staat, vraag het in de herberg-chat onder Menu > Herberg! We zijn blij dat we kunnen helpen.", "webFaqStillNeedHelp": "Als je een vraag hebt die niet op deze lijst staat, vraag het in de [Newbies gilde](https://habitica.com/#/options/groups/guilds/5481ccf3-5d2d-48a9-a871-70a7380cee5a)! We zijn blij je te kunnen helpen." } \ No newline at end of file diff --git a/common/locales/nl/front.json b/common/locales/nl/front.json index 95c08a6753..597d3f8dcd 100644 --- a/common/locales/nl/front.json +++ b/common/locales/nl/front.json @@ -83,7 +83,7 @@ "landingend4": "die perfect zijn voor families, leraren, groepen en bedrijven.", "landingfeatureslink": "onze functionaliteiten", "landingp1": "Het probleem met de meeste productiviteits-apps op de markt is dat ze geen reden geven om ze te blijven gebruiken. Habitica lost dit op door het creëren van gewoontes leuk te maken! Door je te belonen voor je successen en te bestraffen voor je uitglijders zorgt Habitica voor een motivatie van buitenaf om je je dagelijkse activiteiten te doen voltooien.", - "landingp2": "Elke keer dat je een positieve gewoonte bekrachtigt, een dagelijkse taak volbrengt, of een oude to-do voltooit, beloont Habitica je onmiddellijk met ervaringspunten en goud. Naarmate je meer ervaring krijgt, kun je stijgen in niveau, waardoor je statistieken verhoogd worden en er meer functies vrijkomen, zoals klasses en huisdieren. Je kunt goud uitgeven aan spelvoorwerpen die veranderen hoeveel ervaringspunten je verdient of aan gepersonaliseerde beloningen die je hebt gemaakt om je te motiveren. Wanneer zelfs de kleinste successen je onmiddellijk een beloning opleveren, is het minder waarschijnlijk dat je dingen uitstelt.", + "landingp2": "Elke keer dat je een positieve gewoonte bekrachtigt, een dagelijkse taak volbrengt, of een oude to-do voltooit, beloont Habitica je onmiddellijk met ervaringspunten en goud. Naarmate je meer ervaring krijgt, kun je stijgen in niveau, waardoor je statistieken verhoogd worden en er meer functies ontgrendelen, zoals klassen en huisdieren. Je kunt goud uitgeven aan spelvoorwerpen die veranderen hoeveel ervaringspunten je verdient of aan gepersonaliseerde beloningen die je hebt gemaakt om je te motiveren. Wanneer zelfs de kleinste successen je onmiddellijk een beloning opleveren, is het minder waarschijnlijk dat je dingen uitstelt.", "landingp2header": "Onmiddellijke voldoening", "landingp3": "Wanneer je je laat verleiden tot een slechte gewoonte of je een dagelijkse taak laat liggen, verlies je gezondheidspunten. Als je gezondheid te laag wordt ga je dood en verlies je een deel van je voortgang. Door meteen consequenties aan je gedrag te verbinden kan Habitica je helpen te stoppen met uitstelgedrag en slechte gewoontes voordat ze serieuze problemen veroorzaken in de echte wereld.", "landingp3header": "Consequenties", @@ -183,7 +183,7 @@ "apps": "Apps", "notifyAndroidApp": "Wil je bericht van ons ontvangen als de Android app klaar is? Schrijf je in op deze mailinglijst!", "checkOutIOSApp": "Probeer onze nieuwe iOS App uit!", - "imagine1": "Stel je een leven voor dat net zo leuk is als het spelen van een spel.", + "imagine1": "Stel je voor dat het verbeteren van je leven net zo leuk is als het spelen van een spel.", "landingCopy1": "Vorder door je taken in het echte leven af te vinken.", "landingCopy2": "Speel met vrienden tegen eindbazen om verantwoordelijk te zijn in je levensdoelen.", "landingCopy3": "Sluit je aan bij <%= userCount %> anderen die spelenderwijs hun levens verbeteren!", diff --git a/common/locales/nl/gear.json b/common/locales/nl/gear.json index 3c19e5d3a5..f1d1d66166 100644 --- a/common/locales/nl/gear.json +++ b/common/locales/nl/gear.json @@ -149,15 +149,19 @@ "weaponArmoireRancherLassoText": "Cowboylasso", "weaponArmoireRancherLassoNotes": "Lasso's: het ideale gereedschap voor vangen en hangen. Verhoogt Kracht met <%= str %>, Perceptie met <%= per %> en Intelligentie met <%= int %>. Betoverd kabinet: cowboyset (voorwerp 3 van 3).", "weaponArmoireMythmakerSwordText": "Zwaard van de mythemaker", - "weaponArmoireMythmakerSwordNotes": "Het lijkt misschien nederig, maar dit zwaard heeft menig held tot mythe gemaakt. Verhoogt Perceptie en Kracht met elk <%= attrs %>. Betoverd Kabinet: Gouden Togaset (Onderdeel 3 van 3)", + "weaponArmoireMythmakerSwordNotes": "Though it may seem humble, this sword has made many mythic heroes. Increases Perception and Strength by <%= attrs %> each. Enchanted Armoire: Golden Toga Set (Item 3 of 3).", "weaponArmoireIronCrookText": "IJzeren staf", - "weaponArmoireIronCrookNotes": "Deze ijzeren staf is van heftig gehamerd ijzer en kan goed schapen hoeden. Verhoogt Perceptie en Kracht met elk <%= attrs %>. Betoverd Kabinet: Gehoornde Yzerset (Onderdeel 3 van 3)", + "weaponArmoireIronCrookNotes": "Fiercely hammered from iron, this iron crook is good at herding sheep. Increases Perception and Strength by <%= attrs %> each. Enchanted Armoire: Horned Iron Set (Item 3 of 3).", "weaponArmoireGoldWingStaffText": "Goudgevleugelde staf", "weaponArmoireGoldWingStaffNotes": "De vleugels op deze staf zijn altijd aan het trillen en draaien. Verhoogt elk attribuut met <%= attrs%>. Betoverd kabinet: losstaand voorwerp.", "weaponArmoireBatWandText": "Vleermuisstaf", "weaponArmoireBatWandNotes": "Deze staf kan iedere taak in een vleermuis veranderen! Zwaai hem in het rond en zie ze wegvliegen. verhoogt intelligentie met <%= int %> en perceptie met <%= per %>. Betoverd kabinet: Onafhankelijk voorwerp.", "weaponArmoireShepherdsCrookText": "Herdersstaf", "weaponArmoireShepherdsCrookNotes": "Handig voor het hoeden van Griffioenen. Verhoogt Lichaam met <%= con %>. Betoverd Kabinet: Herdersset (voorwerp 1 van 3).", + "weaponArmoireCrystalCrescentStaffText": "Crystal Crescent Staff", + "weaponArmoireCrystalCrescentStaffNotes": "Summon the power of the crescent moon with this shining staff! Increases Intelligence and Strength by <%= attrs %> each. Enchanted Armoire: Crystal Crescent Set (Item 3 of 3).", + "weaponArmoireBlueLongbowText": "Blue Longbow", + "weaponArmoireBlueLongbowNotes": "Ready... Aim... Fire! This bow has great range. Increases Perception by 9, Constitution by 8, and Strength by 7. Enchanted Armoire: Independent Item.", "armor": "wapenrusting", "armorBase0Text": "Eenvoudige kleding", "armorBase0Notes": "Normale kleding. Verleent geen voordelen.", @@ -222,7 +226,7 @@ "armorSpecialBirthday2015Text": "Dwaze feestmantel", "armorSpecialBirthday2015Notes": "Gefeliciteerd met je verjaardag, Habitica! Draag deze dwaze feestmantel om deze prachtige dag te vieren. Verleent geen voordelen.", "armorSpecialGaymerxText": "Harnas van de Regenboogkrijger", - "armorSpecialGaymerxNotes": "Om het pride-seizoen en GaymerX te herdenken heeft dit harnas een stralend en kleurrijk regenboogpatroon! GaymerX is een spelconferentie in het teken van LHBTQ en gamen, en iedereen is welkom. Het vindt plaats in het InterContinental in hartje San Francisco op 11-13 juli! Verleent geen voordelen.", + "armorSpecialGaymerxNotes": "In celebration of the GaymerX Conference, this special armor is decorated with a radiant, colorful rainbow pattern! GaymerX is a game convention celebrating LGTBQ and gaming and is open to everyone.", "armorSpecialSpringRogueText": "Kittig pakje", "armorSpecialSpringRogueNotes": "Onberispelijk verzorgd. Verhoogt Perceptie met <%= per %>. Beperkte oplage lente-uitrusting 2014.", "armorSpecialSpringWarriorText": "Klavertjes-stalen harnas", @@ -309,6 +313,8 @@ "armorMystery201508Notes": "Ren zo snel als de bliksem in dit pluizige cheetahkostuum! Verleent geen voordelen. Abonnee-uitrusting augustus 2015.", "armorMystery201509Text": "Weerwolvenkostuum", "armorMystery201509Notes": "Dit IS een kostuum, toch? Verleent geen voordelen. Abonnee-uitrusting september 2015.", + "armorMystery201511Text": "Wooden Armor", + "armorMystery201511Notes": "Considering this armor was carved directly from a magical log, it's surprisingly comfortable. Confers no benefit. November 2015 Subscriber Item.", "armorMystery301404Text": "Steampunkpak", "armorMystery301404Notes": "Net en zwierig, niet? Verleent geen voordelen. Abonnee-uitrusting februari 3015.", "armorArmoireLunarArmorText": "Kalmerend maanharnas", @@ -327,6 +333,8 @@ "armorArmoireShepherdRobesNotes": "De stof is koel en ademend, perfect voor het hoeden van griffioenen op een hete dag in de woestijn. Verhoogt Kracht en Perceptie elk met <%= attrs %> . Betoverd Kabinet: Herderset (Onderdeel 2 van 3).", "armorArmoireRoyalRobesText": "Koninklijke Mantel", "armorArmoireRoyalRobesNotes": "Wonderbaarlijke heerser, heers de hele dag! Verhoogt Lichaam, Intelligentie en Perceptie elk met <%= attrs %> . Betoverd Kabinet: Koninklijke set (Onderdeel 3 van 3).", + "armorArmoireCrystalCrescentRobesText": "Crystal Crescent Robes", + "armorArmoireCrystalCrescentRobesNotes": "These magical robes are luminescent at night. Increases Constitution and Perception by <%= attrs %> each. Enchanted Armoire: Crystal Crescent Set (Item 2 of 3).", "headgear": "hoofdbescherming", "headBase0Text": "Geen helm", "headBase0Notes": "Geen hoofdbescherming.", @@ -447,7 +455,7 @@ "headSpecialFall2015HealerText": "Kikkerhoed", "headSpecialFall2015HealerNotes": "Dit is een extreem serieuze hoed die alleen de meest ontwikkelde toverdrankbrouwers waardig is. Verhoogt intelligentie met <%= int %>. Beperkte oplage herfstuitrusting 2015.", "headSpecialGaymerxText": "Helm van de Regenboogkrijger", - "headSpecialGaymerxNotes": "Om het pride-seizoen en GaymerX te herdenken is deze speciale helm versierd met een stralend, kleurrijk regenboogpatroon! GaymerX is een spelconferentie waar in het teken van LHBTQ en gamen, en iedereen is welkom. Het vindt plaats in het InterContinental in hartje San Francisco op 11-13 juli! Verleent geen voordelen.", + "headSpecialGaymerxNotes": "In celebration of the GaymerX Conference, this special helmet is decorated with a radiant, colorful rainbow pattern! GaymerX is a game convention celebrating LGTBQ and gaming and is open to everyone.", "headMystery201402Text": "Gevleugelde helm", "headMystery201402Notes": "Deze gevleugelde diadeem doordrenkt de drager met de snelheid van de wind! Verleent geen voordelen. Abonnee-uitrusting februari 2014.", "headMystery201405Text": "Geestvlam", @@ -470,6 +478,8 @@ "headMystery201508Notes": "Deze knusse cheetahhoed is erg pluizig! Verleent geen voordelen. Abonnee-uitrusting augustus 2015.", "headMystery201509Text": "Weerwolvenmasker", "headMystery201509Notes": "Dit IS een masker toch? Verleent geen voordelen. Abonnee-uitrusting september 2015.", + "headMystery201511Text": "Log Crown", + "headMystery201511Notes": "Count the number of rings to learn how old this crown is. Confers no benefit. November 2015 Subscriber Item.", "headMystery301404Text": "Chique hoge hoed", "headMystery301404Notes": "Een chique hoge hoed voor lieden van deftigen huize! Abonnee-uitrusting januari 3015. Verleent geen voordelen.", "headMystery301405Text": "Standaard hoge hoed", @@ -506,6 +516,8 @@ "headArmoireBlueFloppyHatNotes": "Vele spreuken zijn genaaid in deze eenvoudige hoed, daardoor kreeg het deze briljante blauwe kleur. Verhoogt Lichaam, Intelligentie en Perceptie elk met <%= attrs%>. Betoverd kabinet: Onafhankelijk voorwerp.", "headArmoireShepherdHeaddressText": "Herders Hoofdtooi", "headArmoireShepherdHeaddressNotes": "Soms houden jouw griffioenen ervan om van deze hoofdtooi te snoepen, maar het maakt je daardoor des te intelligenter. Verhoogt Intelligentie met <%= int %>. Betoverd kabinet: Herder set (voorwerp 3 van 3). ", + "headArmoireCrystalCrescentHatText": "Crystal Crescent Hat", + "headArmoireCrystalCrescentHatNotes": "The design on this hat waxes and wanes with the phases of the moon. Increases Intelligence and Perception by <%= attrs %> each. Enchanted Armoire: Crystal Crescent Set (Item 1 of 3).", "offhand": "artikel voor schildhand", "shieldBase0Text": "Geen uitrusting voor schildhand", "shieldBase0Notes": "Geen schild of tweede wapen.", diff --git a/common/locales/nl/generic.json b/common/locales/nl/generic.json index d79337eb36..f3f0a2fb86 100644 --- a/common/locales/nl/generic.json +++ b/common/locales/nl/generic.json @@ -69,9 +69,9 @@ "habiticaDayPluralText": "Heeft <%= number %> naamdagen gevierd! Dankjewel dat je een fantastische gebruiker bent.", "achievementDilatory": "Redder van Dralen", "achievementDilatoryText": "Heeft geholpen de Donkere Draak van Dralen te verslaan tijdens het Zomerse Spetterevenement 2014!", - "costumeContest": "Costume Contestant", - "costumeContestText": "Participated in the Habitoween Costume Contest. See some of the entries on the Habitica blog!", - "costumeContestTextPlural": "Participated in <%= number %> Habitoween Costume Contests. See some of the entries on the Habitica blog!", + "costumeContest": "Deelnemer verkleedwedstrijd", + "costumeContestText": "Heeft meegedaan aan de verkleedwedstrijd voor Halloween. Bekijk enkele van de inzendingen op de blog van Habitica!", + "costumeContestTextPlural": "Heeft meegedaan aan <%= number %> verkleedwedstrijden voor Halloween. Bekijk enkele van de inzendingen op de blog van Habitica!", "memberSince": "- Lid sinds", "lastLoggedIn": "- Laatst ingelogd op", "notPorted": "Deze functie is nog niet overgedragen van de originele site.", diff --git a/common/locales/nl/groups.json b/common/locales/nl/groups.json index 5d70c05ae1..0f289a3bd4 100644 --- a/common/locales/nl/groups.json +++ b/common/locales/nl/groups.json @@ -137,7 +137,7 @@ "startAParty": "Een groep beginnen", "addToParty": "Iemand aan je groep toevoegen", "likePost": "Klik hier als je dit bericht leuk vindt!", - "partyExplanation1": "Speel Habitica met vrienden en blijf verantwoordelijk!", + "partyExplanation1": "Speel Habitica met vrienden om verantwoordelijk te blijven!", "partyExplanation2": "Strijd tegen monsters en maak uitdagingen!", "partyExplanation3": "Nodig je vrienden uit om een queeste-perkamentrol te krijgen!", "wantToStartParty": "Wil je een groep oprichten?", @@ -147,5 +147,5 @@ "partyChatEmpty": "Je groepschat is leeg! Typ een bericht in het bovenstaande vak om een conversatie te beginnen.", "guildChatEmpty": "De gildechat is leeg! Typ een bericht in het bovenstaande vak om een conversatie te beginnen.", "possessiveParty": "<%= name %>s groep", - "requestAcceptGuidelines": "If you would like to post messages in the Tavern or any party or guild chat, please first read our <%= linkStart %>Community Guidelines<%= linkEnd %> and then click the button below to indicate that you accept them." + "requestAcceptGuidelines": "Als je berichten in de herberg of een groep- of gildechat wilt plaatsen, lees dan eerst onze <%= linkStart %>Gemeenschapsrichtlijnen<%= linkEnd %> en klik dan op de knop onderaan om aan te geven dat je ze accepteert." } \ No newline at end of file diff --git a/common/locales/nl/limited.json b/common/locales/nl/limited.json index a4eb48798e..d88b6a5c3b 100644 --- a/common/locales/nl/limited.json +++ b/common/locales/nl/limited.json @@ -21,6 +21,7 @@ "valentineCardAchievementText": "Aww, jij en je vriend moeten wel heel erg veel om elkaar geven! Heeft <%= cards %> valentijnskaarten verzonden of ontvangen.", "polarBear": "IJsbeer", "turkey": "Kalkoen", + "gildedTurkey": "Gilded Turkey", "polarBearPup": "IJsbeerwelp", "jackolantern": "Jack-O-Lantern-pompoen", "seasonalShop": "Seizoenswinkel", diff --git a/common/locales/nl/noscript.json b/common/locales/nl/noscript.json index 6057268ef2..fe0cc56f23 100644 --- a/common/locales/nl/noscript.json +++ b/common/locales/nl/noscript.json @@ -1,6 +1,6 @@ { - "jsDisabledHeading": "Alas! Your browser doesn't have JavaScript enabled", - "jsDisabledHeadingFull": "Alas! Your browser doesn't have JavaScript enabled and without it, Habitica can't work properly", - "jsDisabledText": "Habitica can't properly display the site without it!", - "jsDisabledLink": "Please enable JavaScript to continue!" + "jsDisabledHeading": "Helaas! Je browser heeft Javascript niet geactiveerd", + "jsDisabledHeadingFull": "Helaas! Je browser heeft Javascript niet geactiveerd en zonder dat kan Habitica niet goed werken", + "jsDisabledText": "Habitica kan zonder dat de site niet goed weergeven!", + "jsDisabledLink": "Activeer alsjeblieft Javascript om door te gaan!" } \ No newline at end of file diff --git a/common/locales/nl/npc.json b/common/locales/nl/npc.json index 00fb3f4a4e..68c293f9f0 100644 --- a/common/locales/nl/npc.json +++ b/common/locales/nl/npc.json @@ -8,7 +8,7 @@ "danielText": "Welkom in de Herberg! Blijf en tijdje en ontmoet de stamgasten. Als je wat rust nodig hebt (vakantie? ziekte?), zal ik je een kamer geven in de herberg. Terwijl je ingecheckt bent, zullen je Dagelijkse Taken je geen pijn doen aan het einde van de dag, maar je kunt ze nog steeds afkruisen.", "danielText2": "Wees gewaarschuwd: Als je meedoet aan een queeste met een eindbaas, zal de eindbaas je nog steeds pijn doen voor de gemiste dagelijkse taken van je groepsgenoten, tenzij ze ook in de herberg verblijven! Je zult zelf ook geen schade toebrengen aan de eindbaas (of voorwerpen krijgen) totdat je de Herberg verlaat.", "danielTextBroken": "Welkom in de herberg... Denk ik... Als je rust nodig hebt, zal ik je onderbrengen in de herberg... Zolang je ingecheckt bent, zullen je dagelijkse taken je geen pijn doen aan het eind van de dag... Je kunt ze nog wel afvinken... Als je daar de energie voor hebt...", - "danielText2Broken": "Oh... Als je meedoet aan een queeste met een eindbaas, zal de eindbaas je nog steeds pijn doen voor de gemiste dagelijkse taken van je groepsgenoten... Je zult zelf ook geen schade toebrengen aan de eindbaas (of voorwerpen krijgen) totdat je de Herberg verlaat...", + "danielText2Broken": "Oh... Als je meedoet aan een queeste met een eindbaas, zal de eindbaas je nog steeds pijn doen voor de gemiste dagelijkse taken van je groepsgenoten... Je zult zelf ook geen schade toebrengen aan de eindbaas (of voorwerpen vinden) totdat je de Herberg verlaat...", "alexander": "Alexander de Koopman", "welcomeMarket": "Welkom op de markt! Koop zeldzame eieren en drankjes! Verkoop je overschot! Gebruik nuttige diensten! Kom langs en bekijk zelf wat we voor je hebben.", "displayItemForGold": "Wil je een <%= itemType %> verkopen?", @@ -19,14 +19,14 @@ "justin": "Justin", "ian": "Ian", "ianText": "Welkom in de queestenwinkel! Hier kun je queesten inzetten om samen met je vrienden monsters te verslaan. Neem een kijkje aan de rechterkant om te bekijken welke prachtige queesten te koop zijn!", - "ianBrokenText": "Welkom in de queestenwinkel... Hier kun je queesten inzetten om samen met je vrienden monsters te verslaan... Neem een kijkje aan de rechterkant om te bekijken welke prachtige queesten te koop zijn...", + "ianBrokenText": "Welkom in de queestenwinkel... Hier kun je queeste-perkamentrollen gebruiken om samen met je vrienden monsters te verslaan... Neem een kijkje aan de rechterkant om te bekijken welke prachtige queesten er te koop zijn...", "USD": "USD ($)", "newStuff": "Nieuwe informatie", "cool": "Een andere keer lezen", "dismissAlert": "Boodschap verbergen", "donateText1": "Voegt 20 edelstenen toe aan je account. Edelstenen kunnen worden gebruikt om speciale digitale objecten te kopen, zoals shirts en kapsels.", "donateText2": "Steun Habitica", - "donateText3": "Habitica is een open-sourceproject dat afhankelijk is van onze gebruikers voor ondersteuning. Het geld dat jij uitgeeft aan edelstenen helpt ons om de servers te laten lopen, een kleine sta groep medewerkers te onderhouden, nieuwe functies te ontwikkelen en onze vrijwillige programmeurs te prikkelen. Bedankt voor je gulheid!", + "donateText3": "Habitica is een open-sourceproject dat afhankelijk is van onze gebruikers voor ondersteuning. Het geld dat jij uitgeeft aan edelstenen helpt ons om de servers te laten lopen, een kleine stafgroep medewerkers te onderhouden, nieuwe functies te ontwikkelen en onze vrijwillige programmeurs te prikkelen. Bedankt voor je gulheid!", "donationDesc": "20 edelstenen, donatie aan Habitica", "payWithCard": "Betaal met creditcard", "payNote": "Opmerking: PayPal doet er soms lang over om een betaling te verwerken. We raden je aan te betalen met een creditcard.", @@ -61,7 +61,7 @@ "tourMarketPage": "Vanaf niveau 3 kun je eieren en uitbroedtoverdranken vinden als je een taak afvinkt. Ze verschijnen hier - gebruik ze om huisdieren uit te broeden! Je kunt ook artikelen kopen in de markt.", "tourHallPage": "Welkom in de Heldenhal, waar mensen die een bijdrage leveren aan Habitica worden geëerd. Door programmeren, kunst, muziek, schrijven, of zelfs door behulpzaam te zijn hebben zij edelstenen, exclusieve uitrusting en prestigieuze titels verdiend. Als je wilt, kun jij ook bijdragen aan Habitica!", "tourPetsPage": "Dit is de Stal! Na niveau 3 kan je huisdieren laten uitkomen door middel van eieren en toverdranken. Als je een huisdier laat uitkomen in de markt verschijnt het hier! Klik op het plaatje van een huisdier om het aan je avatar toe te voegen. Voer je huisdieren met het voedsel wat je vindt na niveau 3 om ze te laten uitgroeien tot krachtige rijdieren.", - "tourMountsPage": "Als je een huisdier genoeg hebt gevoerd en het in een rijdier verandert, verschijnt het hier. (Huisdieren, rijdieren en voedsel zijn beschikbaar na niveau 3.) Klik op een rijdier om op te zadelen!", + "tourMountsPage": "Als je een huisdier genoeg gevoerd hebt en het in een rijdier verandert, verschijnt het hier. (Huisdieren, rijdieren en voedsel zijn beschikbaar na niveau 3.) Klik op een rijdier om op te zadelen!", "tourEquipmentPage": "Hier wordt je uitrusting opgeslagen. Je strijduitrusting heeft effect op je statistieken. Als je wilt dat je avatar er anders uitziet zonder dat de statistieken veranderen, zet dan \"Kostuum gebruiken\" aan.", "tourOkay": "Oké!", "tourAwesome": "Super!", diff --git a/common/locales/nl/quests.json b/common/locales/nl/quests.json index 4de13a5a7f..32fe399cf9 100644 --- a/common/locales/nl/quests.json +++ b/common/locales/nl/quests.json @@ -42,7 +42,7 @@ "tavernBossInfoBroken": "Voltooi dagelijkse taken en to-do's en vink positieve gewoontes af om de Wereldbaas schade toe te brengen... Onvoltooide dagelijkse taken vullen de 'Oncontroleerbare Furie'-balk... Als de 'Oncontroleerbare Furie'-balk vol is, valt de Wereldbaas een NPC aan... Een Wereldbaas zal nooit schade doen aan individuele spelers of accounts... Alleen de taken van actieve accounts, die niet verblijven in de herberg, worden meegerekend...", "bossColl1": "Om vondsten te verzamelen moet je positieve taken doen. De vondsten van de queeste werken hetzelfde als normale vondsten; je zult de vondsten echter niet zien tot de volgende dag, wanneer alles wat je hebt gevonden wordt opgeteld en aan de buit wordt toegevoegd.", "bossColl2": "Alleen deelnemers kunnen vondsten verzamelen en de buit delen.", - "bossColl1Broken": "Om vondsten te verzamelen moet je positieve taken doen... De vondsten van de queeste werken hetzelfde als normale vondsten; je zult de vondsten echter niet zien tot de volgende dag, wanneer alles wat je hebt gevonden wordt opgeteld en aan de buit wordt toegevoegd...", + "bossColl1Broken": "Om vondsten te verzamelen moet je positieve taken doen... Voorwerpen van queesten vind je hetzelfde als normale vondsten; je zult ze echter niet zien tot de volgende dag, wanneer alles wat je gevonden hebt wordt opgeteld en aan de buit wordt toegevoegd...", "bossColl2Broken": "Alleen deelnemers kunnen vondsten verzamelen en de buit delen...", "abort": "Afbreken", "leaveQuest": "Queeste verlaten", diff --git a/common/locales/nl/settings.json b/common/locales/nl/settings.json index 5e9e824b85..49b6ae1676 100644 --- a/common/locales/nl/settings.json +++ b/common/locales/nl/settings.json @@ -14,11 +14,11 @@ "startCollapsedPop": "Deze optie verbergt aanvankelijk de lijst met labels als je een taak opent om hem te bewerken.", "startAdvCollapsed": "Geavanceerde opties in taken aanvankelijk ingeklapt laten zien", "startAdvCollapsedPop": "Deze optie verbergt de geavanceerde opties wanneer je voor het eerst een taak opent om hem te bewerken.", - "dontShowAgain": "Dit bericht niet meer tonen", - "suppressLevelUpModal": "Geen pop up tonen als ik een hoger niveau bereik", - "suppressHatchPetModal": "Geen pop up tonen als ik een huisdier uitbroed", - "suppressRaisePetModal": "Geen pop up tonen als ik een huisdier opvoed naar een rijdier", - "suppressStreakModal": "Geen pop up tonen als ik een serie-prestatie bereik", + "dontShowAgain": "Laat dit niet meer zien", + "suppressLevelUpModal": "Geen pop-up tonen wanneer ik een hoger niveau bereik", + "suppressHatchPetModal": "Geen pop-up tonen wanneer ik een huisdier uitbroed", + "suppressRaisePetModal": "Geen pop-up tonen wanneer ik een huisdier laat uitgroeien tot een rijdier", + "suppressStreakModal": "Geen pop-up tonen wanneer ik een serie-prestatie bereik", "showTour": "Rondleiding starten", "restartTour": "Herhaal de introductierondleiding van toen je net begon met Habitica.", "showBailey": "Bailey laten zien", @@ -143,5 +143,8 @@ "gemCapExtra": "Extra edelsteencapaciteit:", "mysticHourglasses": "Mystieke zandlopers:", "paypal": "PayPal", - "amazonPayments": "Amazon-betalingen" + "amazonPayments": "Amazon-betalingen", + "timezone": "Time Zone", + "timezoneUTC": "Habitica uses the time zone set on your PC, which is: <%= utc %>", + "timezoneInfo": "If that time zone is wrong, first reload this page using your browser's reload or refresh button to ensure that Habitica has the most recent information. If it is still wrong, adjust the time zone on your PC and then reload this page again.

If you use Habitica on other PCs or mobile devices, the time zone must be the same on them all. If your Dailies have been reseting at the wrong time, repeat this check on all other PCs and on a browser on your mobile devices." } \ No newline at end of file diff --git a/common/locales/nl/tasks.json b/common/locales/nl/tasks.json index 73d983a509..d78705dcae 100644 --- a/common/locales/nl/tasks.json +++ b/common/locales/nl/tasks.json @@ -88,8 +88,7 @@ "fortifyText": "Versterken brengt al je taken terug tot een neutrale (gele) staat, alsof je ze net toegevoegd hebt, en vult je gezondheidsbalk weer helemaal aan. Dit is geweldig wanneer al die rode taken het spel te moeilijk maken, of wanneer al je blauwe taken het te makkelijk maken. Als een frisse start bemoedigend klinkt, geef dan een paar edelstenen uit en haal opgelucht adem!", "sureDelete": "Weet je zeker dat je deze taak wilt verwijderen?", "streakCoins": "seriebonus!", - "pushTaskToTop": "Taak bovenaan zetten", - "pushTaskToBottom": "Taak onderaan zetten", + "pushTaskToTop": "Push task to top. Hold ctrl or cmd to push to bottom.", "emptyTask": "Voer eerst de titel van de taak in.", "dailiesRestingInInn": "Je bent aan het uitrusten in de Herberg! Je dagelijkse tagen doen je vannacht GEEN schade, maar ze zullen WEL iedere dag verversen. Als je op een queeste bent, dan doe je geen schade/verzamel je geen voorwerpen tot je uitcheckt, maar je kunt nog steeds schade krijgen van een eindbaas als je groepsleden hun dagelijkse taken overslaan.", "habitHelp1": "Goede gewoontes zijn dingen die je vaak doet. Ze belonen je met goud en ervaringspunten elke keer dat je op <%= plusIcon %> klikt.", diff --git a/common/locales/pl/backgrounds.json b/common/locales/pl/backgrounds.json index af5f72d57f..9867ed5cd8 100644 --- a/common/locales/pl/backgrounds.json +++ b/common/locales/pl/backgrounds.json @@ -125,5 +125,12 @@ "backgroundNightDunesText": "Nocne wydmy", "backgroundNightDunesNotes": "Wybierz się na spacer przez Nocne Wydmy.", "backgroundSunsetOasisText": "Oaza o zachodzie słońca", - "backgroundSunsetOasisNotes": "Odpocznij w oazie o zachodzie słońca." + "backgroundSunsetOasisNotes": "Odpocznij w oazie o zachodzie słońca.", + "backgrounds122015": "SET 19: Released December 2015", + "backgroundAlpineSlopesText": "Alpine Slopes", + "backgroundAlpineSlopesNotes": "Ski on the Alpine Slopes.", + "backgroundSnowySunriseText": "Snowy Sunrise", + "backgroundSnowySunriseNotes": "Gaze at the Snowy Sunrise.", + "backgroundWinterTownText": "Winter Town", + "backgroundWinterTownNotes": "Bustle through a Winter Town." } \ No newline at end of file diff --git a/common/locales/pl/character.json b/common/locales/pl/character.json index 4b41f46da2..cb429a33c3 100644 --- a/common/locales/pl/character.json +++ b/common/locales/pl/character.json @@ -65,10 +65,10 @@ "ultimGearText": "Zdobył najpotężniejsze uzbrojenie następujących klas:", "level": "Poziom", "levelUp": "Zyskujesz poziom!", - "gainedLevel": "You gained a level!", - "leveledUp": "By accomplishing your real-life goals, you've grown to Level <%= level %>!", - "fullyHealed": "You have been fully healed!", - "huzzah": "Huzzah!", + "gainedLevel": "Zdobyłeś poziom!", + "leveledUp": "Realizując cele życia codziennego, osiągnąłeś poziom <%= level %>!", + "fullyHealed": "Zostałeś całkowicie uleczony!", + "huzzah": "Taaak!", "mana": "Mana", "hp": "PZ", "mp": "PM", diff --git a/common/locales/pl/communityguidelines.json b/common/locales/pl/communityguidelines.json index c35021d075..6e8d70d444 100644 --- a/common/locales/pl/communityguidelines.json +++ b/common/locales/pl/communityguidelines.json @@ -69,10 +69,10 @@ "commGuidePara042": "Wszystkie mają precyzyjne reguły, a zasady Przestrzeni Publicznych nadal obowiązują. Użytkownicy powinni unikać zbaczania z tematu na tablicach i kartach. Uwierzcie, tablice i bez tego są przepełnione. Przedłużające się dyskusje powinny być przenoszone do Gildii na Zapleczu.", "commGuideHeadingGitHub": "GitHub", "commGuidePara043": "Habitica używa GitHuba do śledzenia bugów i dostarczania kodu.To kuźnia, w której Kowale bez wytchnienia wytwarzają nowe funkcje! Wszystkie reguły Przestrzeni Społecznych w niej także obowiązują.Bądźcie mili wobec Kowali, jako że podtrzymywanie działania strony kosztuje ich wiele pracy. Na Waszą cześć - wiwat, Kowale!", - "commGuidePara044": "Użytkownicy poniżej są członkami repozytorium kodu Habitiki:", + "commGuidePara044": "Użytkownicy poniżej są członkami repozytorium kodu Habitiki:", "commGuideHeadingWiki": "Wiki", "commGuidePara045": " Wiki Habitica zbiera informacje o tej stronie. Wiki posiada fora podobne do Gildii w Habitice. W związku z tym, wszystkie Zasady Przestrzeni Publicznych dotyczą także stron wiki.", - "commGuidePara046": "Wiki Habitica można nazwać bazą danych na temat Habitiki. Jest źródłem informacji na temat funkcji strony, wskazówek do gry, porad, jak przysłużyć się rozwojowi HabitRPG, a także miejscem na reklamę Waszych gildii i drużyn. Umożliwia też głosowanie na tematy.", + "commGuidePara046": "Wiki Habitica można nazwać bazą danych na temat Habitiki. Jest źródłem informacji na temat funkcji strony, wskazówek do gry, porad, jak przysłużyć się rozwojowi Habitiki, a także miejscem na reklamę Waszych gildii i drużyn. Umożliwia też głosowanie na tematy.", "commGuidePara047": "Ponieważ wiki jest obsługiwana przez Wikię, zasady użytkowania Wikii obowiązują dodatkowo oprócz zasad nałożonych przez Habitikę i wiki Habitica.", "commGuidePara048": "Wiki powstaje przez współpracę wszystkich edytorów, wobec czego dochodzą kolejne reguły:", "commGuideList04A": "Propozycje utworzenia nowych stron lub wprowadzenia większych zmian na wiki zgłaszamy na odpowiedniej tablicy na Trello", diff --git a/common/locales/pl/faq.json b/common/locales/pl/faq.json index b4e7056d06..2fe68079ab 100644 --- a/common/locales/pl/faq.json +++ b/common/locales/pl/faq.json @@ -2,7 +2,7 @@ "frequentlyAskedQuestions": "Najczęściej Zadawane Pytania", "faqQuestion0": "Jestem zdezorientowany. Gdzie znajdę instrukcję?", "iosFaqAnswer0": "Po pierwsze, ustaw zadania, które chcesz wypełniać w swoim życiu na co dzień. Kiedy wykonujesz zadania i odhaczasz je, zdobywasz doświadczenie i złoto. Złoto służy do kupowania ekwipunku i innych przedmiotów, a także ustawionych przez ciebie nagród. Dzięki doświadczeniu twoja postać zdobywa poziomy i odblokowuje możliwości takie jak hodowla chowańców, zdobywanie umiejętności i wypełnianie misji. Swoją postać możesz personalizować w Menu > personanizuj awatar.\nPodstawowe sposoby na iterakcję: kliknij (+) w prawym górnym rogu aby dodać nowe zadanie. Puknij w istniejące zadanie aby je edytować. Przeciągnij zadanie w lewo aby je usunąć. Możesz sortować swoje zadania w lewym górnym rogu. ", - "webFaqAnswer0": "Na początku ustawisz zadania, które chcesz wykonywać w swoim życiu codziennie. Potem, kiedy wypełnisz je w rzeczywistości i odhaczysz tutaj, dostaniesz Doświadczenie i Złoto. Złoto wykorzystuje się do zakupu wyposażenia i różnych przedmiotów jak i nagród. Dzięki Doświadczeniu twoja postać zdobywa poziomy i odblokowuje rzeczy takie jak zwierzęta, umiejętności i zadania! Bardziej szczegółowe informacje oraz instrukcje krok po kroku znajdziesz [tutaj]\nhttp://habitica.wikia.com/wiki/Habitica_Wiki).", + "webFaqAnswer0": "First, you'll set up tasks that you want to do in your everyday life. Then, as you complete the tasks in real life and check them off, you'll earn Experience and Gold. Gold is used to buy equipment and some items, as well as custom rewards. Experience causes your character to level up and unlock content such as pets, skills, and quests! For more detail, check out a step-by-step overview of the game at [Help -> Overview for New Users](https://habitica.com/static/overview).", "faqQuestion1": "Jak ustawić swoje zadania?", "iosFaqAnswer1": "Dobre Nawyki (oznaczone +) to zadania, które możesz wykonać kilka razy dziennie, np. jedzenie warzyw. Złe Nawyki (oznaczone -) to czynności, których powinieneś unikać, takie jak obgryzanie paznokci. Nawyki z plusem oraz minusem symbolizują dobry lub zły wybór, np. wyjście do góry po schodach w przeciwieństwie do wyjechania windą. Dobre Nawyki nagrodzą cię Doświadczeniem i Złotem. Złe Nawyki zmniejszą twoje zdrowie.\n\nCodzienne to zadania, które musisz wykonać każdego dnia, takie jak umycie zębów lub sprawdzenie poczty elektronicznej. Możesz zmienić w jakie dni powinieneś ukończyć Codzienny klikając na dane zadanie. Jeśli pominiesz Codziennie zadanie zaplanowane na dzisiaj twój awatar w nocy otrzyma obrażenia. Uważaj by nie dodać zbyt wielu Codziennych naraz!\n\nDo-Zrobienia stanowią twoją listę zadań do wykonania. Za ukończenie Do-Zrobienia zyskujesz Złoto oraz Doświadczenie. Nigdy nie stracisz punktów zdrowia z powodu zadań Do-Zrobienia. Możesz ustalić ostateczny termin wykonania tego zadania klikając na nie w celu edycji.", "webFaqAnswer1": "Dobre Nawyki (oznaczone ) to zadania, które możesz wykonać kilka razy dziennie, np. jedzenie warzyw. Złe Nawyki (oznaczone ) to czynności, których powinieneś unikać, takie jak obgryzanie paznokci. Nawyki z oraz symbolizują dobry lub zły wybór, np. wyjście do góry po schodach w przeciwieństwie do wyjechania windą. Dobre Nawyki nagrodzą cię Doświadczeniem i Złotem. Złe Nawyki zmniejszą twoje zdrowie.\n

\nCodzienne to zadania, które musisz wykonać każdego dnia, takie jak umycie zębów lub sprawdzenie poczty elektronicznej. Możesz zmienić w jakie dni powinieneś ukończyć Codzienny klikając na dane zadanie. Jeśli pominiesz Codziennie zadanie zaplanowane na dzisiaj twój awatar w nocy otrzyma obrażenia. Uważaj by nie dodać zbyt wielu Codziennych naraz!\n

\nDo-Zrobienia stanowią twoją listę zadań do wykonania. Za ukończenie Do-Zrobienia zyskujesz Złoto oraz Doświadczenie. Nigdy nie stracisz punktów zdrowia z powodu zadań Do-Zrobienia. Możesz ustalić ostateczny termin wykonania tego zadania klikając na nie w celu edycji.", diff --git a/common/locales/pl/gear.json b/common/locales/pl/gear.json index cfe033d27d..faa6180e94 100644 --- a/common/locales/pl/gear.json +++ b/common/locales/pl/gear.json @@ -149,15 +149,19 @@ "weaponArmoireRancherLassoText": "Lasso farmerskie", "weaponArmoireRancherLassoNotes": "Lassa: idealne narzędzia do robienia obław i zaganiania. Zwiększają siłę o <%= str %>, percepcję o <%= per %> i inteligencję o <%= int %>. Zaczarowana szafa: zestaw farmerski (przedmiot 3 z 3).", "weaponArmoireMythmakerSwordText": "Miecz Twórca Legend", - "weaponArmoireMythmakerSwordNotes": "To może zabrzmieć nazbyt skromnie, ale dzięki temu mieczowi świat zyskał wielu mitycznych bohaterów. Zwiększa Percepcję i Siłę o <%= attrs %>. Zaczarowana szafa: zestaw Złota Toga (przedmiot 3 z 3).", + "weaponArmoireMythmakerSwordNotes": "Though it may seem humble, this sword has made many mythic heroes. Increases Perception and Strength by <%= attrs %> each. Enchanted Armoire: Golden Toga Set (Item 3 of 3).", "weaponArmoireIronCrookText": "Żelazny kij pasterski", - "weaponArmoireIronCrookNotes": "Ukształtowany zaciekłymi uderzeniami młota, ten żelazny pręt zakończony hakiem dobrze się sprawi jako kij pasterski. Poprawia percepcję i siłę o <%= attrs %>. Zaczarowana szafa: Zestaw Rogate Żelazo (przedmiot 3 z 3.)", + "weaponArmoireIronCrookNotes": "Fiercely hammered from iron, this iron crook is good at herding sheep. Increases Perception and Strength by <%= attrs %> each. Enchanted Armoire: Horned Iron Set (Item 3 of 3).", "weaponArmoireGoldWingStaffText": "Złotoskrzydła laska", "weaponArmoireGoldWingStaffNotes": "Skrzydła tej laski ciągle trzepoczą i skręcają się. Zwiększa wszystkie atrybuty o <%= attrs %>. Zaczarowana szafa: przedmiot niezależny.", "weaponArmoireBatWandText": "Różdżka nietoperza", "weaponArmoireBatWandNotes": "Ta różdżka może zamienić każde zadanie w nietoperza! Pomachaj nią i patrz jak odlatują. Zwiększa inteligencję o <%= int %> i percepcję o <%= per %>. Zaczarowana szafa: przedmiot niezależny.", "weaponArmoireShepherdsCrookText": "Shepherd's Crook", "weaponArmoireShepherdsCrookNotes": "Useful for herding gryphons. Increases Constitution by <%= con %>. Enchanted Armoire: Shepherd Set (Item 1 of 3).", + "weaponArmoireCrystalCrescentStaffText": "Crystal Crescent Staff", + "weaponArmoireCrystalCrescentStaffNotes": "Summon the power of the crescent moon with this shining staff! Increases Intelligence and Strength by <%= attrs %> each. Enchanted Armoire: Crystal Crescent Set (Item 3 of 3).", + "weaponArmoireBlueLongbowText": "Blue Longbow", + "weaponArmoireBlueLongbowNotes": "Ready... Aim... Fire! This bow has great range. Increases Perception by 9, Constitution by 8, and Strength by 7. Enchanted Armoire: Independent Item.", "armor": "zbroja", "armorBase0Text": "Zwykłe ubranie", "armorBase0Notes": "Zwyczajne ubranie. Nie ma na nic wpływu.", @@ -222,7 +226,7 @@ "armorSpecialBirthday2015Text": "Głupawe Szaty Urodzinowe", "armorSpecialBirthday2015Notes": "Wszystkiego najlepszego z okazji urodzin, Habitiko! Załóż Głupawe Szaty Urodzinowe, aby świętować ten wspaniały dzień. Nie dają żadnych korzyści.", "armorSpecialGaymerxText": "Zbroja tęczowego wojownika", - "armorSpecialGaymerxNotes": "Aby uczcić porę dumy i konwent GaymerX, ta specjalna zbroja jest przyozdobiona lśniącym, kolorowym wzorem tęczy! GaymerX to konwent poświęcony środowisku LGBTQ i grom komputerowym i jest otwarty dla wszystkich. Odbywa się w InterContinental w centrum San Francisco między 11 a 13 lipca! Nie zapewnia żadnych korzyści.", + "armorSpecialGaymerxNotes": "In celebration of the GaymerX Conference, this special armor is decorated with a radiant, colorful rainbow pattern! GaymerX is a game convention celebrating LGTBQ and gaming and is open to everyone.", "armorSpecialSpringRogueText": "Lśniący kostium kota", "armorSpecialSpringRogueNotes": "Nieskazitelnie zadbany. Dodaje <%= per %> punktów percepcji. Edycja Limitowana Wiosna 2014.", "armorSpecialSpringWarriorText": "Koniczystalowa zbroja", @@ -309,6 +313,8 @@ "armorMystery201508Notes": "Biegaj szybko jak błyskawica w tym puszystym kostiumie geparda! Brak dodatkowych korzyści. Przedmiot abonencki, sierpień 2015.", "armorMystery201509Text": "Strój wilkołaka", "armorMystery201509Notes": "To JEST strój, prawda? Brak dodatkowych korzyści. Przedmiot Abonencki, wrzesień 2015.", + "armorMystery201511Text": "Wooden Armor", + "armorMystery201511Notes": "Considering this armor was carved directly from a magical log, it's surprisingly comfortable. Confers no benefit. November 2015 Subscriber Item.", "armorMystery301404Text": "Steampunkowy garnitur", "armorMystery301404Notes": "Elegancki i stylowy! Brak dodatkowych korzyści. Przedmiot Abonencki, luty 2015.", "armorArmoireLunarArmorText": "Księżycowa Kojąca Zbroja", @@ -327,6 +333,8 @@ "armorArmoireShepherdRobesNotes": "Jest z chłodnej i przewiewnej tkaniny, świetna do pasania gryfów w gorące pustynne dni. Zwiększa Siłę i Percepcję o <%= attrs %>. Zaczarowana szafa: zestaw pasterza (przedmiot 2 z 3).", "armorArmoireRoyalRobesText": "Królewskie szaty", "armorArmoireRoyalRobesNotes": "Panuj nam jak najdłużej, od wiosny aż do zimy! Zwiększa kondycję, inteligencję i percepcję o <%= attrs %>. Zaczarowana Szafa: zestaw królewski (przedmiot 3 z 3).", + "armorArmoireCrystalCrescentRobesText": "Crystal Crescent Robes", + "armorArmoireCrystalCrescentRobesNotes": "These magical robes are luminescent at night. Increases Constitution and Perception by <%= attrs %> each. Enchanted Armoire: Crystal Crescent Set (Item 2 of 3).", "headgear": "nakrycie głowy", "headBase0Text": "Bez hełmu", "headBase0Notes": "Bez nakrycia głowy.", @@ -447,7 +455,7 @@ "headSpecialFall2015HealerText": "Żabi Kapelusz", "headSpecialFall2015HealerNotes": "This is an extremely serious hat that is worthy of only the most advanced potioners. Increases Intelligence by <%= int %>. Limited Edition 2015 Autumn Gear.", "headSpecialGaymerxText": "Hełm tęczowego wojownika", - "headSpecialGaymerxNotes": "Aby uczcić porę dumy i konwent GaymerX, ten specjalny hełm jest przyozdobiony lśniącym, kolorowym wzorem tęczy! GaymerX to konwent poświęcony środowisku LGBTQ oraz grom komputerowym i jest otwarty dla każdego. Odbywa się w InterContinental w centrum San Francisco w dniach 11-13 lipca! Brak dodatkowych korzyści.", + "headSpecialGaymerxNotes": "In celebration of the GaymerX Conference, this special helmet is decorated with a radiant, colorful rainbow pattern! GaymerX is a game convention celebrating LGTBQ and gaming and is open to everyone.", "headMystery201402Text": "Skrzydlaty hełm", "headMystery201402Notes": "Ta skrzydlata opaska przepełnia Cię prędkością wiatru! Brak dodatkowych korzyści. Przedmiot Abonencki, luty 2014.", "headMystery201405Text": "Płomień umysłu", @@ -470,6 +478,8 @@ "headMystery201508Notes": "Ten przytulny kapelusz geparda jest bardzo puchaty! Brak dodatkowych korzyści. Przedmiot abonencki, sierpień 2015.", "headMystery201509Text": "Maska wilkołaka", "headMystery201509Notes": "To JEST maska, prawda? Brak dodatkowych korzyści. Przedmiot Abonencki, wrzesień 2015.", + "headMystery201511Text": "Log Crown", + "headMystery201511Notes": "Count the number of rings to learn how old this crown is. Confers no benefit. November 2015 Subscriber Item.", "headMystery301404Text": "Szykowny cylinder", "headMystery301404Notes": "Fantazyjny cylinder dla najwyżej urodzonych. Przedmiot Abonencki, styczeń 2015. Brak dodatkowych korzyści.", "headMystery301405Text": "Klasyczny cylinder", @@ -506,6 +516,8 @@ "headArmoireBlueFloppyHatNotes": "Many spells have been sewn into this simple hat, giving it a brilliant blue color. Increases Constitution, Intelligence, and Perception by <%= attrs %> each. Enchanted Armoire: Independent Item.", "headArmoireShepherdHeaddressText": "Shepherd Headdress", "headArmoireShepherdHeaddressNotes": "Sometimes the gryphons that you herd like to chew on this headdress, but it makes you seem more intelligent nonetheless. Increases Intelligence by <%= int %>. Enchanted Armoire: Shepherd Set (Item 3 of 3).", + "headArmoireCrystalCrescentHatText": "Crystal Crescent Hat", + "headArmoireCrystalCrescentHatNotes": "The design on this hat waxes and wanes with the phases of the moon. Increases Intelligence and Perception by <%= attrs %> each. Enchanted Armoire: Crystal Crescent Set (Item 1 of 3).", "offhand": "Tarcza", "shieldBase0Text": "Brak tarczy w ekwipunku.", "shieldBase0Notes": "Bez tarczy lub drugiej broni.", diff --git a/common/locales/pl/generic.json b/common/locales/pl/generic.json index 903cefca87..0924c7e55a 100644 --- a/common/locales/pl/generic.json +++ b/common/locales/pl/generic.json @@ -112,7 +112,7 @@ "December": "Grudzień", "dateFormat": "Format daty", "achievementStressbeast": "Zbawca Stoikonii", - "achievementStressbeastText": "Pomógł pokonać Ochydną Bestię Stresu poczas Obchoów Cuownej Zimy w 2014.", + "achievementStressbeastText": "Pomógł pokonać Śnieżną Stresobestię poczas Obchoów Cudownej Zimy w 2014.", "achievementBurnout": "Wybawca Kwitnących Pól", "achievementBurnoutText": "Pomógł pokonać Wypaleńca i przywrócić Wycieńczone Duchy do ich prawdziwych postaci podczas obchodów Jesiennego Festiwalu 2015!", "checkOutProgress": "Sprawdź swój postęp w Habitice!", @@ -136,10 +136,10 @@ "thankyou3": "Jestem bardzo wdzięczny - dziękuję!", "thankyouCardAchievementTitle": "Ogromnie wdzięczny", "thankyouCardAchievementText": "Dzięki za bycie wdzięcznym! Wysłał lub otrzymał <%= cards %> kartek z podziękowaniem.", - "streakAchievement": "You earned a streak achievement!", + "streakAchievement": "Zdobyłeś osiągnięcie serii!", "firstStreakAchievement": "21-dniowa seria", "streakAchievementCount": "<%= streaks %> 21-dniowych serii", - "twentyOneDays": "You've completed your Daily for 21 days in a row!", + "twentyOneDays": "Ukończyłeś swoje Codzienne przez 21 dni z rzędu!", "dontBreakStreak": "Amazing job. Don't break the streak!", "dontStop": "Don't Stop Now!", "levelUpShare": "I leveled up in Habitica by improving my real-life habits!", diff --git a/common/locales/pl/groups.json b/common/locales/pl/groups.json index 7eb94a4e1d..de0c3b4c2f 100644 --- a/common/locales/pl/groups.json +++ b/common/locales/pl/groups.json @@ -147,5 +147,5 @@ "partyChatEmpty": "Twój czat drużynowy jest pusty! Napisz wiadomość w powyższym okienku, by zacząć rozmowę.", "guildChatEmpty": "Czat tej gildii jest pusty! Napisz wiadomość w powyższym okienku, by zacząć rozmowę.", "possessiveParty": "Drużyna należąca do <%= name %>", - "requestAcceptGuidelines": "If you would like to post messages in the Tavern or any party or guild chat, please first read our <%= linkStart %>Community Guidelines<%= linkEnd %> and then click the button below to indicate that you accept them." + "requestAcceptGuidelines": "Jeżeli chcesz pisać w Gospodzie lub drużynie, czy też jakimkolwiek czacie gildii, proszę, przeczytaj najpierw <%= linkStart %>Wytyczne Społeczności<%= linkEnd %>, a następnie kliknij poniższy przycisk, aby potwierdzić, że je akceptujesz." } \ No newline at end of file diff --git a/common/locales/pl/limited.json b/common/locales/pl/limited.json index 70f343c6b7..dc5ceb1fa1 100644 --- a/common/locales/pl/limited.json +++ b/common/locales/pl/limited.json @@ -21,6 +21,7 @@ "valentineCardAchievementText": "Och, ty i twój przyjaciel musicie naprawdę troszczyć się o siebie! Wysłał lub otrzymał <%= cards %> kartek walentynkowych.", "polarBear": "Niedźwiedź polarny", "turkey": "Indor", + "gildedTurkey": "Gilded Turkey", "polarBearPup": "Niedźwiadek polarny", "jackolantern": "Lampion z dyni", "seasonalShop": "Sklepik sezonowy", diff --git a/common/locales/pl/messages.json b/common/locales/pl/messages.json index 6a54357e52..53ad59693b 100644 --- a/common/locales/pl/messages.json +++ b/common/locales/pl/messages.json @@ -33,23 +33,23 @@ "armoireExp": "Mocujesz się z Zaczarowaną Szafą i zyskujesz doświadczenie. Masz za swoje!", "messageInsufficientGems": "Masz za mało klejnotów!", "messageAuthPasswordMustMatch": "Hasło i potwierdzenie hasła nie są identyczne", - "messageAuthCredentialsRequired": ":username, :email, :password, :confirmPassword required", + "messageAuthCredentialsRequired": ":username, :email, :password, :confirmPassword wymagane", "messageAuthUsernameTaken": "Nazwa użytkownika już zajęta", "messageAuthEmailTaken": "Adres e-mail już zajęty.", "messageAuthNoUserFound": "Nie znaleziono użytkownika.", "messageAuthMustBeLoggedIn": "Musisz się zalogować.", - "messageAuthMustIncludeTokens": "You must include a token and uid (user id) in your request", - "messageGroupNotFound": "Group not found or you don't have access.", + "messageAuthMustIncludeTokens": "Musisz dołączyć token i uid (identyfikator użytkownika) do swojego zapytania", + "messageGroupNotFound": "Grupa nie została odnaleziona lub nie masz do niej dostępu.", "messageGroupAlreadyInParty": "Już jesteś w drużynie. Spróbuj odświeżyć.", - "messageGroupOnlyLeaderCanUpdate": "Only the group leader can update the group!", + "messageGroupOnlyLeaderCanUpdate": "Tylko przywódca grupy może edytować grupę!", "messageGroupRequiresInvite": "Nie możesz dołączyć do grupy, do której cię nie zaproszono.", - "messageGroupCannotRemoveSelf": "You cannot remove yourself!", + "messageGroupCannotRemoveSelf": "Nie możesz usunąć siebie!", "messageGroupChatBlankMessage": "Nie możesz wysłać pustej wiadomości.", "messageGroupChatLikeOwnMessage": "Nie możesz polubić własnej wiadomości. Nie bądź taki.", "messageGroupChatFlagOwnMessage": "Nie możesz zgłosić własnej wiadomości.", "messageGroupChatFlagAlreadyReported": "Już zgłosiłeś tę wiadomość.", "messageGroupChatNotFound": "Nie znaleziono wiadomości!", - "messageGroupChatAdminClearFlagCount": "Only an admin can clear the flag count!", - "messageUserOperationProtected": "path `<%= operation %>` was not saved, as it's a protected path.", - "messageUserOperationNotFound": "<%= operation %> operation not found" + "messageGroupChatAdminClearFlagCount": "Tylko administrator może wyczyścić licznik flag!", + "messageUserOperationProtected": "Ścieżka `<%= operation %>` nie została zapisana, gdyż jest chronniona przed zapisem.", + "messageUserOperationNotFound": "Operacja <%= operation %> nie znaleziona" } \ No newline at end of file diff --git a/common/locales/pl/noscript.json b/common/locales/pl/noscript.json index 6057268ef2..6df4d4f9f6 100644 --- a/common/locales/pl/noscript.json +++ b/common/locales/pl/noscript.json @@ -1,6 +1,6 @@ { - "jsDisabledHeading": "Alas! Your browser doesn't have JavaScript enabled", - "jsDisabledHeadingFull": "Alas! Your browser doesn't have JavaScript enabled and without it, Habitica can't work properly", - "jsDisabledText": "Habitica can't properly display the site without it!", - "jsDisabledLink": "Please enable JavaScript to continue!" + "jsDisabledHeading": "Niestety! Twoja przeglądarka nie ma włączonej obsługi JavaScript", + "jsDisabledHeadingFull": "Niestety! Twoja przeglądarka nie ma włączonej obsługi JavaScript a bez niej Habitica nie może działać poprawnie.", + "jsDisabledText": "Habitica nie może bez niej wyświetlić strony poprawnie!", + "jsDisabledLink": "Proszę, włącz obsługę JavaScript, aby kontynuować!" } \ No newline at end of file diff --git a/common/locales/pl/npc.json b/common/locales/pl/npc.json index efa2784ab5..e15ed25319 100644 --- a/common/locales/pl/npc.json +++ b/common/locales/pl/npc.json @@ -12,8 +12,8 @@ "alexander": "Handlarz Aleksander", "welcomeMarket": "Witaj na Targu! Tu kupisz rzadkie jaja oraz eliksiry! Sprzedasz nadmiar towaru! Zamówisz usługi! Zobacz, co dla Ciebie mamy.", "displayItemForGold": "Czy chcesz sprzedać <%= itemType %>?", - "displayEggForGold": "Czy chcesz sprzedać <%= itemType %>Jajo?", - "displayPotionForGold": "Czy chcesz sprzedać <%= itemType %>Eliksir?", + "displayEggForGold": "Czy chcesz sprzedać <%= itemType %> Jajo?", + "displayPotionForGold": "Czy chcesz sprzedać <%= itemType %> Eliksir?", "sellForGold": "Sprzedaj za <%= gold %> szt. złota", "buyGems": "Kup Klejnoty", "justin": "Justin", diff --git a/common/locales/pl/pets.json b/common/locales/pl/pets.json index 827a706125..0881d10909 100644 --- a/common/locales/pl/pets.json +++ b/common/locales/pl/pets.json @@ -58,16 +58,16 @@ "firstDrop": "Odblokowałeś System Zdobyczy! Od teraz po ukończeniu zadań, masz niewielką szansę znalezienia przedmiotu, włączając w to jaja, eliksiry i jedzenie! Właśnie znalazłeś <%= eggText %> Jajo! <%= eggNotes %>", "useGems": "Jeśli masz na oku zwierzaka, ale nie możesz się doczekać jego zdobycia, użyj Klejnotów w Ekwipunek > Targ, by go kupić!", "hatchAPot": "Wykluć <%= potion %> <%= egg %>?", - "hatchedPet": "You hatched a <%= potion %> <%= egg %>!", - "displayNow": "Display Now", - "displayLater": "Display Later", - "earnedCompanion": "With all your productivity, you've earned a new companion. Feed it to make it grow!", + "hatchedPet": "Wyklułeś <%= potion %> <%= egg %>!", + "displayNow": "Wyświetl teraz", + "displayLater": "Wyświetl później", + "earnedCompanion": "Swoją produktywnością zyskałeś nowego towarzysza. Nakarm go by urósł!", "feedPet": "Nakarmić <%= text %> twojego <%= name %>?", "useSaddle": "Osiodłać <%= pet %>?", - "raisedPet": "You grew a <%= pet %>!", + "raisedPet": "Wyhodowałeś <%= pet %>!", "earnedSteed": "Dzięki ukończeniu swoich zadań masz teraz wiernego wierzchowca!", - "rideNow": "Ride Now", - "rideLater": "Ride Later", + "rideNow": "Pójdź na przejażdżkę teraz", + "rideLater": "Pójdź na przejażdżkę później", "petName": "<%= potion %> <%= egg %>", "mountName": "<%= potion %> <%= mount %>", "petKeyName": "Klucz do schroniska", diff --git a/common/locales/pl/quests.json b/common/locales/pl/quests.json index 554c787d99..13dc636da2 100644 --- a/common/locales/pl/quests.json +++ b/common/locales/pl/quests.json @@ -25,7 +25,7 @@ "rejected": "Odrzucono", "pending": "Oczekujące", "questStart": "W momencie, gdy wszyscy członkowie zaakceptują lub odrzucą misję, ta rozpoczyna się. Tylko ci, którzy kliknęli 'zaakceptuj' będą mogli brać udział w misji i otrzymają nagrodę. Jeśli któryś ze członków zbyt długo zwleka z wyborem (być może jest nieaktywny?) właściciel misji może rozpocząć ją bez tej osoby, klikając 'Rozpocznij'. Właściciel misji może też zakończyć misję klikając \"Zakończ\", a zwój misji zostanie mu zwrócony.", - "questStartBroken": "Once all members have either accepted or rejected, the quest begins... Only those that clicked \"accept\" will be able to participate in the quest and receive the drops... If members are pending too long (inactive?), the quest owner can start the quest without them by clicking \"Begin\"... The quest owner can also cancel the quest and regain the quest scroll by clicking \"Cancel\"...", + "questStartBroken": "Kiedy wszyscy członkowie zaakceptują lub odrzucą, misja rozpocznie się... Tylko ci, którzy \"zaakceptowali\", będą mogli uczestniczyć w misji i otrzymać nagrodę... Jeżeli czas oczekiwania na uczestników będzie zbyt długi (nieaktywni?), właściciel misji może rozpocząć bez nich, klikając \"Rozpocznij\"... Właściciel misji może również anulować misję i odzyskać zwój misji, klikając \"Anuluj\"...", "begin": "Rozpocznij", "bossHP": "Zdrowie Bossa", "bossStrength": "Siła bossa", @@ -36,14 +36,14 @@ "itemsToCollect": "Przedmioty do zebrania", "bossDmg1": "Każde zakończone Codzienne i Do-Zrobienia oraz każdy pozytywny Nawyk rani bossa. Zrań go bardziej czerwieńszymi zadaniami lub Brutalnym uderzeniem i Eksplozją płomieni. Boss zada obrażenia każdemu uczestnikowi misji za każde pominięte Codzienne (pomnożone przez siłę bossa) jako dodatek do standardowych obrażeń, więc utrzymuj swoją drużynę w zdrowiu przez wypełnianie swoich Codziennych! Wszystkie obrażenia zadane bossowi i przez niego będą podsumowane przez crona (twoje przejście do następnego dnia).", "bossDmg2": "Tylko uczestnicy będą mogli walczyć z bossem i brać udział w podziale łupów.", - "bossDmg1Broken": "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)...", + "bossDmg1Broken": "Każde zakończone zadanie Codzienne i Do-Zrobienia i każdy pozytywny Nawyk zadają obrażenia bossowi... Zrań go bardziej czerwieńszymi zadaniami lub Brutalnym uderzeniem i Eksplozją płomieni... Boss zada obrażenia każdemu uczestnikowi misji za każde zadanie Codzienne, którego nie ukończono (pomnożone przez siłę bossa) oprócz standardowych obrażeń, więc pilnuj stanu zdrowia swojej drużyny, wypełniając codzienne zadania... Wszystkie obrażenia zadane bossowi lub przez niego będą podsumowane przez crona (rozpoczęcie nowego dnia)...", "bossDmg2Broken": "Tylko uczestnicy będą mogli walczyć z bossem i brać udział w podziale łupów...", - "tavernBossInfo": "Complete Dailies and To-Dos and score positive Habits to damage the World Boss! Incomplete Dailies fill the Exhaust Strike Bar. When the Exhaust 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 not resting in the Inn will have their tasks tallied.", + "tavernBossInfo": "Wypełnij zadania Codzienne i Do-Zrobienia i zdobądź punkty za pozytywne Nawyki, aby zadać obrażenia Globalnemu Bossowi! Nieskończone Codzienne wypełniają pasek wzrastania Furii. Kiedy pasek Furii będzie pełny, Globalny Boss zaatakuje NPC-ta. Globalny Boss nigdy nie zada obrażeń indywidualnym graczom ani kontom. Liczą się wyłącznie zadania aktywnych graczy, którzy nie wypoczywają w Gospodzie.", "tavernBossInfoBroken": "Complete Dailies and To-Dos and score positive Habits to damage the World Boss... Incomplete Dailies fill the Exhaust Strike Bar... When the Exhaust 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 not resting in the Inn will have their tasks tallied...", "bossColl1": "Aby zbierać przedmioty, wykonuj pozytywne zadania. Przedmioty misyjne znajdujesz tak samo jak zwykłe, jednakże nie zobaczysz łupów aż do końca dnia – wtedy to wszystkie przedmioty zostaną wyszczególnione i dodane do sterty.", "bossColl2": "Tylko uczestnicy mogą zbierać przedmioty i brać udział w podziale łupów.", "bossColl1Broken": "To collect items, do your positive tasks... Quest items drop just like normal items; however, you won't see the drops until the next day, then everything you've found will be tallied up and contributed to the pile...", - "bossColl2Broken": "Only participants can collect items and share in the quest loot...", + "bossColl2Broken": "Tylko uczestnicy mogą zbierać przedmioty i brać udział w podziale łupów...", "abort": "Przerwij", "leaveQuest": "Opuść misję", "sureLeave": "Czy na pewno chcesz opuścić aktywną misję? Cały twój postęp zostanie stracony.", @@ -58,25 +58,25 @@ "scrollsText1": "Do wykonania misji potrzebna jest drużyna. Jeśli chcesz je wykonywać w pojedynkę,", "scrollsText2": "stwórz pustą drużynę", "scrollsPre": "Jeszcze nie odblokowałeś tej misji!", - "alreadyEarnedQuestLevel": "Już zdobyłeś tą misję dzięki osiągnięciu poziomu <%= level %>.", - "alreadyEarnedQuestReward": "Już zdobyłeś tą misję dzięki ukończeniu <%= priorQuest %>.", + "alreadyEarnedQuestLevel": "Już zdobyłeś tę misję dzięki osiągnięciu poziomu <%= level %>.", + "alreadyEarnedQuestReward": "Już zdobyłeś tę misję dzięki ukończeniu <%= priorQuest %>.", "completedQuests": "Zakończył następujące misje", "mustComplete": "Musisz najpierw ukończyć <%= quest %>.", "mustLevel": "Musisz mieć co najmniej poziom <%= level %>, by rozpocząć tą misję!", "mustLvlQuest": "Musisz mieć co najmniej poziom <%= level %>, żeby kupić tę misję!", - "mustInviteFriend": "By zdobyć tą misję, zaproś przyjaciela do swojej drużyny. Zaprosić kogoś teraz?", - "unlockByQuesting": "By zdobyć tą misję, najpierw ukończ <%= title %>.", + "mustInviteFriend": "By zdobyć tę misję, zaproś przyjaciela do swojej drużyny. Zaprosić kogoś teraz?", + "unlockByQuesting": "By zdobyć tę misję, najpierw ukończ <%= title %>.", "sureCancel": "Czy na pewno chcesz zakończyć tę misję? Wszystkie zaakceptowane zaproszenia zostaną stracone. Właściciel misji zachowa zwój misji.", "sureAbort": "Czy na pewno chcesz porzucić tę misję? Zostanie przerwana dla każdego członka twojej drużyny i cały postęp zostanie stracony. Zwój misji zostanie zwrócony właścicielowi.", "doubleSureAbort": "Czy jesteś pewien? Drużyna się na Ciebie nie obrazi?", "questWarning": "Jeśli nowi gracze dołączą do drużyny zanim rozpocznie się misja, również dostaną zaproszenie do niej. Jednakże kiedy już misja się zacznie, żadni nowi członkowie drużyny nie będą mogli dołączyć do misji.", - "questWarningBroken": "If new players join the party before the quest starts, they will also receive an invitation... However once the quest has started, no new party members can join the quest...", + "questWarningBroken": "Jeżeli nowi gracze dołączą do drużyny przed rozpoczęciem misji, również otrzymają zaproszenie... Jednak po rozpoczęciu misji żaden nowy uczestnik nie może już do niej dołączyć...", "bossRageTitle": "Furia", "bossRageDescription": "Gdy pasek się zapełni, boss wykona atak specjalny!", - "startAQuest": "ROZPOCZNIJ MISJE", - "startQuest": "Rozpocznij Misje", + "startAQuest": "ROZPOCZNIJ MISJĘ", + "startQuest": "Rozpocznij Misję", "whichQuestStart": "Którą misję chcesz rozpocząć?", "getMoreQuests": "Zdobądź więcej misji", "unlockedAQuest": "Odblokowałeś misję!", - "leveledUpReceivedQuest": "You leveled up to Level <%= level %> and received a quest scroll!" + "leveledUpReceivedQuest": "Zyskałeś nowy poziom - Poziom <%= level %> - i otrzymałeś zwój misji!" } \ No newline at end of file diff --git a/common/locales/pl/questscontent.json b/common/locales/pl/questscontent.json index cac1a08ee2..6f8da36837 100644 --- a/common/locales/pl/questscontent.json +++ b/common/locales/pl/questscontent.json @@ -268,10 +268,10 @@ "questFrogBoss": "Śmieciowa Żaba", "questFrogDropFrogEgg": "Żaba (jajo)", "questFrogUnlockText": "Odblokowuje dostęp do kupna żabich jaj na Targu", - "questSnakeText": "The Serpent of Distraction", - "questSnakeNotes": "It takes a hardy soul to live in the Sand Dunes of Distraction. The arid desert is hardly a productive place, and the shimmering dunes have led many a traveler astray. However, something has even the locals spooked. The sands have been shifting and upturning entire villages. Residents claim a monster with an enormous serpentine body lies in wait under the sands, and they have all pooled together a reward for whomever will help them find and stop it. The much-lauded snake charmers @EmeraldOx and @PainterProphet have agreed to help you summon the beast. Can you stop the Serpent of Distraction?", - "questSnakeCompletion": "With assistance from the charmers, you banish the Serpent of Distraction. Though you were happy to help the inhabitants of the Dunes, you can't help but feel a little sad for your fallen foe. While you contemplate the sights, @LordDarkly approaches you. \"Thank you! It's not much, but I hope this can express our gratitude properly.\" He hands you some Gold and... some Snake eggs! You will see that majestic animal again after all.", - "questSnakeBoss": "Serpent of Distraction", + "questSnakeText": "Wąż Rozproszenia", + "questSnakeNotes": "Trzeba mieć silnego ducha, by żyć na Wydmach Rozproszenia. Spieczona słońcem pustynia jest mało produktywnym miejscem, a na lśniących wydmach niejeden wędrowiec się zagubił. Jednak nawet miejscowi boją się czegoś. Piaski przesuwają i wywracają całe wioski. Mieszkańcy twierdzą, że potwór o ogromnym wężowatym cielsku czatuje na nich pod piaskami. Wszyscy razem ustalili nagrodę dla kogoś, kto pomoże im znaleźć i zatrzymać potwora. Znani i chwaleni zaklinacze węży, @EmeraldOx i @PainterProphet, zgodzili się pomóc ci wezwać bestię. Czy zdołasz ją pokonać?", + "questSnakeCompletion": "Z pomocą zaklinaczy wygnaliście Węża Rozproszenia. Cieszysz się, że pomogłeś mieszkańcom Wydm, jednak jest ci smutno z powodu pokonanego przeciwnika. Podczas gdy podziwiasz widoki, podchodzi do ciebie @LordDarkly. \"Dziękuję! To może nie jest wiele, ale mam nadzieję, że wystarczająco wyraża naszą wdzięczność.\" Wręcza ci trochę złota i... kilka jaj węża! Ostatecznie zobaczysz znowu to wspaniałe zwierzę.", + "questSnakeBoss": "Wąż rozproszenia", "questSnakeDropSnakeEgg": "Wąż (jajo)", - "questSnakeUnlockText": "Unlocks purchasable Snake eggs in the Market" + "questSnakeUnlockText": "Odblokowuje dostęp do kupna jaj Węża na Targu" } \ No newline at end of file diff --git a/common/locales/pl/settings.json b/common/locales/pl/settings.json index d3799a3668..557a083a3a 100644 --- a/common/locales/pl/settings.json +++ b/common/locales/pl/settings.json @@ -15,10 +15,10 @@ "startAdvCollapsed": "Zaawansowane Opcje w zadaniach startują zwinięte", "startAdvCollapsedPop": "Jeśli ta opcja jest włączona, Zaawansowane Opcje będą ukryte, gdy po raz pierwszy otworzysz zadanie do edycji.", "dontShowAgain": "Nie pokazuj mi tego więcej", - "suppressLevelUpModal": "Don't show popup when gaining a level", - "suppressHatchPetModal": "Don't show popup when hatching a pet", - "suppressRaisePetModal": "Don't show popup when raising a pet into a mount", - "suppressStreakModal": "Don't show popup when attaining a Streak achievement", + "suppressLevelUpModal": "Nie pokazuj powiadomienia przy zdobywaniu poziomu", + "suppressHatchPetModal": "Nie pokazuj powiadomienia przy wykluwaniu chowańca", + "suppressRaisePetModal": "Nie pokazuj powiadomienia przy przemianie chowańca w wierzchowca", + "suppressStreakModal": "Nie pokazuj powiadomienia przy zdobywaniu Osiągnięcia Serii", "showTour": "Pokaż przewodnik", "restartTour": "Restartuje wprowadzający przewodnik, z czasu gdy dołączyłeś do Habitica", "showBailey": "Pokaż Bailey", @@ -93,7 +93,7 @@ "loginNameDescription2": "Użytkownik → Profil", "loginNameDescription3": ", aby zmienić nazwę, która pojawia się na Twoim avatarze i przy wiadomościach na czacie.", "emailNotifications": "Powiadomienia e-mail", - "wonChallenge": "You won a Challenge!", + "wonChallenge": "Wygrałeś wyzwanie!", "newPM": "Otrzymane wiadomości prywatne", "giftedGems": "Podarowane klejnoty", "giftedGemsInfo": "<%= amount %> klejnotów - przez <%= name %>", @@ -140,8 +140,11 @@ "purchasedPlanExtraMonths": "Posiadasz <%= months %> miesięcy kredytu abonenckiego.", "consecutiveSubscription": "Ciągłość abonamentu", "consecutiveMonths": "Ilość miesięcy z rzędu:", - "gemCapExtra": "Gem Cap Extra:", + "gemCapExtra": "Dodatkowy limit łupów:", "mysticHourglasses": "Mistyczne Klepsydry:", "paypal": "PayPal", - "amazonPayments": "Płatności Amazon" + "amazonPayments": "Płatności Amazon", + "timezone": "Time Zone", + "timezoneUTC": "Habitica uses the time zone set on your PC, which is: <%= utc %>", + "timezoneInfo": "If that time zone is wrong, first reload this page using your browser's reload or refresh button to ensure that Habitica has the most recent information. If it is still wrong, adjust the time zone on your PC and then reload this page again.

If you use Habitica on other PCs or mobile devices, the time zone must be the same on them all. If your Dailies have been reseting at the wrong time, repeat this check on all other PCs and on a browser on your mobile devices." } \ No newline at end of file diff --git a/common/locales/pl/tasks.json b/common/locales/pl/tasks.json index 7482d46bb2..c1f37d4b44 100644 --- a/common/locales/pl/tasks.json +++ b/common/locales/pl/tasks.json @@ -88,8 +88,7 @@ "fortifyText": "Wzmocnienie przywróci wszystkie zadania do wartości neutralnej (żółty kolor), tak jakbyś dopiero co je dodał, a w dodatku uzdrowi cię do pełna. Jest to świetne rozwiązanie, jeśli czerwone zadania sprawiają w grze zbyt wiele trudności lub z powodu niebieskich zadań gra jest zbyt łatwa. Jeśli rozpoczęcie od zera brzmi znacznie bardziej motywująco, to poświęć Klejnoty i poczuj ulgę!", "sureDelete": "Jesteś pewien, że chcesz usunąć to zadanie?", "streakCoins": "Premia za serię!", - "pushTaskToTop": "Prześlij zadanie na górę", - "pushTaskToBottom": "Prześlij zadanie na spód", + "pushTaskToTop": "Push task to top. Hold ctrl or cmd to push to bottom.", "emptyTask": "Najpierw wpisz nazwę zadania.", "dailiesRestingInInn": "Odpoczywasz w Gospodzie! Twoje Codzienne NIE zadadzą ci dzisiaj obrażeń, jednak w dalszym ciągu codziennie BĘDĄ się odświeżać. Jeśli uczestniczysz w misji, nie otrzymasz obrażeń/nie zbierzesz przedmiotów do czasu wymeldowania z Gospody, jednak wciąż możesz otrzymać obrażenia od bossa, jeśli członkowie twojej drużyny ominą swoje Codzienne.", "habitHelp1": "Dobre nawyki są czynnościami, które wykonujesz często. Dostajesz za to nagrody w postaci złota i punktów doświadczenia za każdym razem, gdy klikniesz <%= plusIcon %>.", diff --git a/common/locales/pt/backgrounds.json b/common/locales/pt/backgrounds.json index 9461dfba8f..ad562cff03 100644 --- a/common/locales/pt/backgrounds.json +++ b/common/locales/pt/backgrounds.json @@ -121,9 +121,16 @@ "backgroundSwarmingDarknessNotes": "Trema na Escuridão Fervilhante", "backgrounds112015": "SET 18: Lançado em Novembro de 2015", "backgroundFloatingIslandsText": "Ilhas Flutuantes", - "backgroundFloatingIslandsNotes": "Salte através das Ilhas Flutuantes.", + "backgroundFloatingIslandsNotes": "Saltite nas Ilhas Flutuantes.", "backgroundNightDunesText": "Dunas Noturnas", - "backgroundNightDunesNotes": "Caminhar calmamente através das Dunas à Noite", + "backgroundNightDunesNotes": "Caminhar calmamente pelas Dunas à Noite", "backgroundSunsetOasisText": "Oasis do pôr do sol", - "backgroundSunsetOasisNotes": "Tostar no Oásis Pôr de Sol" + "backgroundSunsetOasisNotes": "Corar no Oásis Pôr de Sol", + "backgrounds122015": "SET 19: Released December 2015", + "backgroundAlpineSlopesText": "Alpine Slopes", + "backgroundAlpineSlopesNotes": "Ski on the Alpine Slopes.", + "backgroundSnowySunriseText": "Snowy Sunrise", + "backgroundSnowySunriseNotes": "Gaze at the Snowy Sunrise.", + "backgroundWinterTownText": "Winter Town", + "backgroundWinterTownNotes": "Bustle through a Winter Town." } \ No newline at end of file diff --git a/common/locales/pt/challenge.json b/common/locales/pt/challenge.json index d5a7586365..9c9d98966e 100644 --- a/common/locales/pt/challenge.json +++ b/common/locales/pt/challenge.json @@ -63,5 +63,5 @@ "congratulations": "Parabéns!", "hurray": "Hurra!", "noChallengeOwner": "sem dono", - "noChallengeOwnerPopover": "Esse desafio não possui um dono porque quem criou o desafio apagou sua conta." + "noChallengeOwnerPopover": "Esse desafio não possui um dono porque quem criou o desafio deletou sua conta." } \ No newline at end of file diff --git a/common/locales/pt/content.json b/common/locales/pt/content.json index 2f25fd60f2..8d5dd1a5b8 100644 --- a/common/locales/pt/content.json +++ b/common/locales/pt/content.json @@ -100,7 +100,7 @@ "questEggFrogAdjective": "um principesco", "questEggSnakeText": "Cobra", "questEggSnakeMountText": "Cobra", - "questEggSnakeAdjective": "a escorregar", + "questEggSnakeAdjective": "uma escorregadia", "eggNotes": "Ache uma poção de eclosão para usar nesse ovo e ele irá eclodir em um <%= eggAdjective(locale) %> <%= eggText(locale) %>.", "hatchingPotionBase": "Básico", "hatchingPotionWhite": "Branco", diff --git a/common/locales/pt/faq.json b/common/locales/pt/faq.json index 44b4b2ae51..9899b1fb22 100644 --- a/common/locales/pt/faq.json +++ b/common/locales/pt/faq.json @@ -2,7 +2,7 @@ "frequentlyAskedQuestions": "Perguntas Frequentes", "faqQuestion0": "Estou confuso. Onde encontro uma visão geral?", "iosFaqAnswer0": "Primeiro, você criará tarefas que você quer realizar no seu dia-a-dia. Então, na medida que você for completando as tarefas na vida real e as marcando, você ganhará experiência e ouro. Ouro é usado para comprar equipamento e alguns itens, assim como recompensas personalizadas. A experiência faz seu personagem passar de nível e destravar conteúdos, tais como Mascotes, Habilidades e Missões! Você pode personalizar seu personagem no Menu > Personalizar Avatar.\n\nAlgumas maneiras básicas de interagir: clique no (+) no canto superior direito e adicione uma nova tarefa. Toque em uma tarefa existente para lhe editar e escorregue para esquerda para lhe deletar. Você pode classificar tarefas usando Etiquetas no canto superior esquerdo e expandir e contrair listas clicando na bolha da lista.", - "webFaqAnswer0": "Primeiro, você precisará configurar tarefas que deseja realizar no seu dia-a-dia. Depois, conforme você faz estas tarefas na vida real e marca elas no jogo, você ganhará Experiência e Ouro. O Ouro é usado para comprar equipamentos e outros items, assim como recompensas customizadas. A Experiência é necessária para subir o nível do seu personagem e desbloquear conteúdos novos, como mascotes, habilidades e missões! Para maiores detalhes, a Wiki possui uma visão geral excelente sobre o jogo [aqui mesmo](http://habitica.wikia.com/wiki/Habitica_Wiki).", + "webFaqAnswer0": "First, you'll set up tasks that you want to do in your everyday life. Then, as you complete the tasks in real life and check them off, you'll earn Experience and Gold. Gold is used to buy equipment and some items, as well as custom rewards. Experience causes your character to level up and unlock content such as pets, skills, and quests! For more detail, check out a step-by-step overview of the game at [Help -> Overview for New Users](https://habitica.com/static/overview).", "faqQuestion1": "Como configuro minhas tarefas?", "iosFaqAnswer1": "Bons Hábitos (aqueles com um +) são tarefas que você pode fazer várias vezes por dia, como comer vegetais. Maus Hábitos (aqueles com um -) são tarefas que você deve evitar, como roer unha. Hábitos com um + e um - tem uma escolha boa e uma escolha ruim, como usar as escadas vs. usar o elevador. Bons Hábitos te dão ouro e experiência. Maus Hábitos subtraem vida.\n\nTarefas Diárias são tarefas que você deve fazer todos os dias, como escovar os dentes ou conferir seu e-mail. Você pode ajustar os dias em que uma tarefa Diária é valida ao edita-la. Se você perder uma Diária que está valendo, seu avatar irá tomar dano no fim do dia. Tome cuidado para não adicionar muitas Diárias de uma vez!\n\nAfazeres é a sua lista de afazeres. Cumprir um Afazer te dá ouro e experiência. Você nunca perde vida com Afazeres. Você pode adicionar um prazo a um Afazer ao edita-lo.", "webFaqAnswer1": "Bons Hábitos (aqueles com um ) são tarefas que você pode fazer várias vezes por dia, como comer vegetais. Maus Hábitos (aqueles com um ) são tarefas que você deve evitar, como roer unha. Hábitos com um e um tem uma escolha boa e uma escolha ruim, como usar as escadas vs. usar o elevador. Bons Hábitos te dão ouro e experiência. Maus Hábitos subtraem vida.\n

\nTarefas Diárias são tarefas que você deve fazer todos os dias, como escovar os dentes ou conferir seu e-mail. Você pode ajustar os dias em que uma tarefa Diária é valida ao edita-la. Se você perder uma Diária que está valendo, seu avatar irá tomar dano no fim do dia. Tome cuidado para não adicionar muitas Diárias de uma vez!\n

\nAfazeres é a sua lista de afazeres. Cumprir um Afazer te dá ouro e experiência. Você nunca perde vida com Afazeres. Você pode adicionar um prazo a um Afazer ao edita-lo.", diff --git a/common/locales/pt/gear.json b/common/locales/pt/gear.json index 291eeedcb6..c80035c59d 100644 --- a/common/locales/pt/gear.json +++ b/common/locales/pt/gear.json @@ -115,7 +115,7 @@ "weaponSpecialSpring2015WarriorText": "Clava de Osso", "weaponSpecialSpring2015WarriorNotes": "É uma legítima clava de osso para cachorrinhos super ferozes e definitivamente não um brinquedo de mastigar que a Feiticeira Sazonal te deu porque quem é um bom garoto! Queeem é um bom garoto? Você!!! Você é um bom garoto!!! Aumenta Força em <%= str %>. Equipamento Edição Limitada de Primavera 2015.", "weaponSpecialSpring2015MageText": "Varinha do Mago", - "weaponSpecialSpring2015MageNotes": "Conjure uma cenoura pra si mesmo com essa varinha. Aumenta Inteligência em <%= int %> e Percepção em <%= per %>. Equipamento Edição Limitada de Primavera 2015.", + "weaponSpecialSpring2015MageNotes": "Conjure uma cenoura pra si mesmo com essa varinha. Aumenta Inteligência em <%= int %> e Percepção em <%= per %>. Equipamento de Primavera Edição Limitada 2015.", "weaponSpecialSpring2015HealerText": "Matraca de Gato", "weaponSpecialSpring2015HealerNotes": "Quando você sacode, faz um clique-claque fascinante que manteria QUALQUER UM entretido por horas. Aumenta Inteligência em <%= int %>. Equipamento Edição Limitada de Primavera 2015.", "weaponSpecialSummer2015RogueText": "Coral Atirador", @@ -129,9 +129,9 @@ "weaponSpecialFall2015RogueText": "Machado de Morcego", "weaponSpecialFall2015RogueNotes": "Afazeres amedrontadores se acovardam frente à esse machado. Aumenta Força em <%= str %>. Equipamento Edição Limitada de Outono 2015.", "weaponSpecialFall2015WarriorText": "Placa de Madeira", - "weaponSpecialFall2015WarriorNotes": "Boa pra levantar coisas ou amassar tarefas. Aumenta Força em <%= str %>. Equipamento Edição Limitada de Outono 2015.", + "weaponSpecialFall2015WarriorNotes": "Boa pra levantar coisas ou amassar tarefas. Aumenta Força em <%= str %>. Equipamento de Outono Edição Limitada 2015.", "weaponSpecialFall2015MageText": "Fio Encantado", - "weaponSpecialFall2015MageNotes": "Uma poderosa Bruxa da Costura pode controlar esse fio encantado sem nem tocar nele! Aumenta Inteligência em <%= int %> e Percepção em <%= per %>. Equipamento Edição Limitada de Outono 2015.", + "weaponSpecialFall2015MageNotes": "Uma poderosa Bruxa da Costura pode controlar esse fio encantado sem nem tocar nele! Aumenta Inteligência em <%= int %> e Percepção em <%= per %>. Equipamento de Outono Edição Limitada 2015.", "weaponSpecialFall2015HealerText": "Poção de Limo de Pântano", "weaponSpecialFall2015HealerNotes": "Fermentado com perfeição! Agora tudo que você precisa é se convencer a beber. Aumenta Inteligência em <%= int %>. Equipamento Edição Limitada de Outono 2015.", "weaponMystery201411Text": "Forcado de Banquete", @@ -149,15 +149,19 @@ "weaponArmoireRancherLassoText": "Laço do Rancheiro", "weaponArmoireRancherLassoNotes": "Laços: a ferramenta ideal para laçar e domar. Aumenta Força em <%= str %>, Percepção em <%= per %> e Inteligência em <%= int %>. Armário Encantado: Conjunto de Rancheiro (Item 3 de 3).", "weaponArmoireMythmakerSwordText": "Espada Criadora de Mitos", - "weaponArmoireMythmakerSwordNotes": "Apesar de parecer simples, esta espada criou muitos heróis míticos. Aumenta a Percepção e Força em <%= attrs %> cada. Armário Encantado: Conjunto de Toga Dourada (Item 3 de 3)", + "weaponArmoireMythmakerSwordNotes": "Though it may seem humble, this sword has made many mythic heroes. Increases Perception and Strength by <%= attrs %> each. Enchanted Armoire: Golden Toga Set (Item 3 of 3).", "weaponArmoireIronCrookText": "Cajado de Ferro", - "weaponArmoireIronCrookNotes": "Martelado violentamente a partir do ferro, este cajado de ferro é bom para pastorear ovelhas. Aumenta a Percepção e a Força em <%= attrs %> cada. Armário Encantado: Conjunto de Ferro Encurvado (Item 3 de 3)", + "weaponArmoireIronCrookNotes": "Fiercely hammered from iron, this iron crook is good at herding sheep. Increases Perception and Strength by <%= attrs %> each. Enchanted Armoire: Horned Iron Set (Item 3 of 3).", "weaponArmoireGoldWingStaffText": "Cajado Asa de Ouro", "weaponArmoireGoldWingStaffNotes": "As asas neste cajado vibram e giram constantemente. Aumenta todos os atributos em <%= attrs %> cada. Armário Encantado: Item Independente.", "weaponArmoireBatWandText": "Varinha de Morcego", "weaponArmoireBatWandNotes": "Esta varinha pode transformar qualquer tarefa em um morcego! Balance a varinha e veja as tarefas voarem para longe. Aumenta Inteligência em <%= int %> e Percepção em <%= per %>. Armário Encantado: Item Independente.", - "weaponArmoireShepherdsCrookText": "Shepherd's Crook", - "weaponArmoireShepherdsCrookNotes": "Useful for herding gryphons. Increases Constitution by <%= con %>. Enchanted Armoire: Shepherd Set (Item 1 of 3).", + "weaponArmoireShepherdsCrookText": "Cajado de Pastor", + "weaponArmoireShepherdsCrookNotes": "Útil para arrebanhar grifos. Aumenta Constituição em <%= con %>. Armário Encantado: Conjunto de Pastor (Item 1 de 3).", + "weaponArmoireCrystalCrescentStaffText": "Crystal Crescent Staff", + "weaponArmoireCrystalCrescentStaffNotes": "Summon the power of the crescent moon with this shining staff! Increases Intelligence and Strength by <%= attrs %> each. Enchanted Armoire: Crystal Crescent Set (Item 3 of 3).", + "weaponArmoireBlueLongbowText": "Blue Longbow", + "weaponArmoireBlueLongbowNotes": "Ready... Aim... Fire! This bow has great range. Increases Perception by 9, Constitution by 8, and Strength by 7. Enchanted Armoire: Independent Item.", "armor": "armadura", "armorBase0Text": "Roupas Modestas", "armorBase0Notes": "Vestimenta ordinária Não concede benefícios.", @@ -222,7 +226,7 @@ "armorSpecialBirthday2015Text": "Túnica Boba de Festa", "armorSpecialBirthday2015Notes": "Feliz Aniversário, Habitica! Vista essas Túnicas Bobas de Festa para celebrar este maravilhoso dia. Não confere benefícios.", "armorSpecialGaymerxText": "Armadura do Guerreiro Arco-Íris", - "armorSpecialGaymerxNotes": "Em celebração da temporada do orgulho e GaymerX, essa armadura especial é decorada com um radiante e colorido arco-íris! GaymerX é uma convenção de jogos celebrando a comunidade LGBTQ e jogos e é aberta a todos. Acontece no InterContinental, no centro de San Francisco, de 11-13 de julho! Não concede benefícios.", + "armorSpecialGaymerxNotes": "In celebration of the GaymerX Conference, this special armor is decorated with a radiant, colorful rainbow pattern! GaymerX is a game convention celebrating LGTBQ and gaming and is open to everyone.", "armorSpecialSpringRogueText": "Traje Elegante de Gato", "armorSpecialSpringRogueNotes": "Impecavelmente arrumado. Aumenta Percepção em <%= per %>. Equipamento Edição Limitada de Primavera 2014.", "armorSpecialSpringWarriorText": "Armadura Trevo-Metálica", @@ -272,13 +276,13 @@ "armorSpecialSummer2015HealerText": "Armadura de Marinheiro", "armorSpecialSummer2015HealerNotes": "Esta armadura deixa todo mundo sabendo que você é um honesto comerciante marinheiro que nunca sonharia em se comportar como um malandro. Aumenta Constituição em <%= con %>. Edição Limitada Conjunto de Verão 2015.", "armorSpecialFall2015RogueText": "Armadura de Morcego", - "armorSpecialFall2015RogueNotes": "Voe para a batalha! Aumenta Percepção em <%= per %>. Equipamento Edição Limitada de Outono 2015.", + "armorSpecialFall2015RogueNotes": "Voe para a batalha! Aumenta Percepção em <%= per %>. Equipamento de Outono Edição Limitada 2015.", "armorSpecialFall2015WarriorText": "Armadura de Espantalho", - "armorSpecialFall2015WarriorNotes": "Apesar ter sido enchida com canudinhos, esta armadura é extremamente forte! Aumenta Constituição em <%= con %>. Equipamento Edição Limitada de Outono 2015.", - "armorSpecialFall2015MageText": "Túnicas Costuradas", - "armorSpecialFall2015MageNotes": "Cada ponto de costura nesta armadura brilha com encanto. Aumenta Inteligência em <%= int %>. Equipamento Edição Limitada de Outono 2015.", - "armorSpecialFall2015HealerText": "Túnicas de Poção", - "armorSpecialFall2015HealerNotes": "O quê? Claro que essa era uma poção de constituição. Não, você definitivamente não está se transformando em um sapo! Não fique coaxando por aí. Aumenta Constituição em <%= con %>. Equipamento Edição Limitada de Outono 2015.", + "armorSpecialFall2015WarriorNotes": "Apesar ter sido enchida com canudinhos, esta armadura é extremamente forte! Aumenta Constituição em <%= con %>. Equipamento de Outono Edição Limitada 2015.", + "armorSpecialFall2015MageText": "Túnica Costurada", + "armorSpecialFall2015MageNotes": "Cada ponto de costura nesta armadura brilha com encanto. Aumenta Inteligência em <%= int %>. Equipamento de Outono Edição Limitada 2015.", + "armorSpecialFall2015HealerText": "Túnica de Poção", + "armorSpecialFall2015HealerNotes": "O quê? Claro que essa era uma poção de constituição. Não, você definitivamente não está se transformando em um sapo! Não fique coaxando por aí. Aumenta Constituição em <%= con %>. Equipamento de Outono Edição Limitada 2015.", "armorMystery201402Text": "Túnicas do Mensageiro", "armorMystery201402Notes": "Cintilantes e resistentes, essas túnicas tem vários bolsos para carregar cartas. Não concede benefícios. Item de Assinante de Fevereiro 2014.", "armorMystery201403Text": "Armadura do Andador da Floresta", @@ -307,8 +311,10 @@ "armorMystery201506Notes": "Faça snorkel por um recife de corais com esse traje de natação colorido e brilhante! Não concede benefícios. Item de Assinante Junho 2015.", "armorMystery201508Text": "Traje de guepardo", "armorMystery201508Notes": "Corra como um raio nesse fofo traje de guepardo! Não concede benefícios. Item de assinante de Agosto de 2015.", - "armorMystery201509Text": "Traje de Lobisomem", + "armorMystery201509Text": "Use o traje", "armorMystery201509Notes": "Este É um traje, não é? Não concede benefícios. Item de Assinante de Setembro 2015.", + "armorMystery201511Text": "Wooden Armor", + "armorMystery201511Notes": "Considering this armor was carved directly from a magical log, it's surprisingly comfortable. Confers no benefit. November 2015 Subscriber Item.", "armorMystery301404Text": "Fantasia Steampunk", "armorMystery301404Notes": "Elegante e distinto. Não concede benefícios. Item de Assinante de Fevereiro 3015.", "armorArmoireLunarArmorText": "Armadura Lunar Tranquilizadora", @@ -323,10 +329,12 @@ "armorArmoireHornedIronArmorNotes": "Martelada violentamente a partir do ferro, esta armadura de ferro encurvado é quase impossível de quebrar. Aumenta a Constituição em <%= con %> e a Percepção em <%= per %>. Armário Encantado: Conjunto de Ferro Encurvado (Item 2 de 3).", "armorArmoirePlagueDoctorOvercoatText": "Sobretudo Doutor Praga", "armorArmoirePlagueDoctorOvercoatNotes": "Um autêntico sobretudo usado pelos médicos que lutam contra a Praga da Procrastinação! Aumenta a inteligência em <%= int %>, Força em <%= str %>, e Constituição em <%= con %>. Armário Encantado: Conjunto Doutor Praga (Item 3 de 3).", - "armorArmoireShepherdRobesText": "Shepherd Robes", - "armorArmoireShepherdRobesNotes": "The fabric is cool and breathable, perfect for a hot day herding gryphons in the desert. Increases Strength and Perception by <%= attrs %> each. Enchanted Armoire: Shepherd Set (Item 2 of 3).", - "armorArmoireRoyalRobesText": "Royal Robes", - "armorArmoireRoyalRobesNotes": "Wonderful ruler, rule all day long! Increases Constitution, Intelligence, and Perception by <%= attrs %> each. Enchanted Armoire: Royal Set (Item 3 of 3).", + "armorArmoireShepherdRobesText": "Túnica de Pastor", + "armorArmoireShepherdRobesNotes": "O tecido é fresco e arejado, perfeito para um dia quente arrebanhando grifos no deserto. Aumenta Força e Percepção em <%= attrs %> cada. Armário Encantado: Conjunto de Pastor (Item 2 de 3).", + "armorArmoireRoyalRobesText": "Túnica Real", + "armorArmoireRoyalRobesNotes": "Maravilhoso governante, governe o dia todo! Aumenta Constiruição, Inteligência, e Percepção em <%= attrs %> cada. Armário Encantado: Conjunto Real (Item 3 de 3).", + "armorArmoireCrystalCrescentRobesText": "Crystal Crescent Robes", + "armorArmoireCrystalCrescentRobesNotes": "These magical robes are luminescent at night. Increases Constitution and Perception by <%= attrs %> each. Enchanted Armoire: Crystal Crescent Set (Item 2 of 3).", "headgear": "capacete", "headBase0Text": "Sem Elmo", "headBase0Notes": "Sem capacete.", @@ -439,7 +447,7 @@ "headSpecialSummer2015HealerText": "Chapéu do Marinheiro", "headSpecialSummer2015HealerNotes": "Com seu chapéu de marinheiro firme na cabeça, você pode navegar até pelos mares mais tempestuosos! Aumenta Inteligência em <%= int %>. Edição Limitada Conjunto de Verão 2015.", "headSpecialFall2015RogueText": "Asas de Morcego", - "headSpecialFall2015RogueNotes": "Assuste seus inimigos com este elmo poderosos! Aumenta Percepção em <%= per %>. Equipamento Edição Limitada de Outono 2015.", + "headSpecialFall2015RogueNotes": "Assuste seus inimigos com este elmo poderosos! Aumenta Percepção em <%= per %>. Equipamento de Outono Edição Limitada 2015.", "headSpecialFall2015WarriorText": "Chapéu de Espantalho", "headSpecialFall2015WarriorNotes": "Todo mundo iria querer este chapéu - se ao menos tivessem um cérebro. Aumenta Força em <%= str %>. Equipamento Edição Limitada de Outono 2015.", "headSpecialFall2015MageText": "Chapéu Costurado", @@ -447,7 +455,7 @@ "headSpecialFall2015HealerText": "Chapéu de Sapo", "headSpecialFall2015HealerNotes": "Este é um chapéu extremamente sério digno apenas dos mais experientes criadores de poções. Aumenta Inteligência em <%= int %>. Equipamento Edição Limitada de Outono 2015.", "headSpecialGaymerxText": "Elmo do Guerreiro Arco-Íris", - "headSpecialGaymerxNotes": "Em celebração da temporada do orgulho e GaymerX, esse elmo especial é decorado com um radiante e colorido arco-íris! GaymerX é uma convenção de jogos celebrando a comunidade LGBTQ e jogos e é aberta a todos. Acontece no InterContinental, no centro de San Francisco, de 11-13 de julho! Não concede benefícios.", + "headSpecialGaymerxNotes": "In celebration of the GaymerX Conference, this special helmet is decorated with a radiant, colorful rainbow pattern! GaymerX is a game convention celebrating LGTBQ and gaming and is open to everyone.", "headMystery201402Text": "Elmo Alado", "headMystery201402Notes": "Essa tiara alada imbui o utilizador com a velocidade do vento! Não concede benefícios. Item de Assinante de Fevereiro 2014.", "headMystery201405Text": "Chamas da Mente", @@ -470,6 +478,8 @@ "headMystery201508Notes": "Esse aconchegante chapéu de guepardo é muito peludo! Não concede benefícios. Item de assinante de agosto de 2015.", "headMystery201509Text": "Máscara de Lobisomem", "headMystery201509Notes": "Esta É uma máscara, não é? Não concede benefícios. Item de Assinante de Setembro 2015.", + "headMystery201511Text": "Log Crown", + "headMystery201511Notes": "Count the number of rings to learn how old this crown is. Confers no benefit. November 2015 Subscriber Item.", "headMystery301404Text": "Cartola Chique", "headMystery301404Notes": "Uma cartola chique para as damas e cavalheiros mais finos! Item de Assinante de Janeiro 3015. Não concede benefícios.", "headMystery301405Text": "Cartola Básica", @@ -487,7 +497,7 @@ "headArmoireBlueHairbowText": "Laço de Cabelo Azul", "headArmoireBlueHairbowNotes": "Torne-se perceptivo, resistente, e inteligente enquanto este belo Laço de Cabelo Azul! Aumenta a Percepção em <%= per %>, Constituição em <%= con %>, e inteligência em <%= int %>. Armário Encantado: Item independente.", "headArmoireRoyalCrownText": "Coroa Real", - "headArmoireRoyalCrownNotes": "Hooray for the ruler, mighty and strong! Increases Strength by <%= str %>. Enchanted Armoire: Royal Set (Item 1 of 3).", + "headArmoireRoyalCrownNotes": "Hurra para o governante, poderoso e forte! Aumenta Força em <%= str %>. Armário Encantado: Conjunto Real (Item 1 de 3).", "headArmoireGoldenLaurelsText": "Louros Dourados", "headArmoireGoldenLaurelsNotes": "Estes louros dourados recompensam aqueles que subjugaram os maus hábitos. Aumenta a Percepção e a Constituição em <%= attrs %> cada. Armário Encantado: Conjunto de Toga Dourada (Item 2 de 3).", "headArmoireHornedIronHelmText": "Elmo de Ferro Encurvado", @@ -502,10 +512,12 @@ "headArmoireBlackCatNotes": "Este chapéu preto é... rosnante. E balança seu rabo. E respira? É, você tem um gato dormindo na sua cabeça. Aumenta Inteligência e Percepção em <%= attrs %> cada. Armário Encantado: Item Independente.", "headArmoireOrangeCatText": "Chapéu de Gato Laranja", "headArmoireOrangeCatNotes": "Este chapéu laranja é... rosnante. E balança seu rabo. E respira? É, você tem um gato dormindo na sua cabeça. Aumenta Força e Constituição em <%= attrs %> cada. Armário Encantado: Item Independente.", - "headArmoireBlueFloppyHatText": "Blue Floppy Hat", - "headArmoireBlueFloppyHatNotes": "Many spells have been sewn into this simple hat, giving it a brilliant blue color. Increases Constitution, Intelligence, and Perception by <%= attrs %> each. Enchanted Armoire: Independent Item.", - "headArmoireShepherdHeaddressText": "Shepherd Headdress", - "headArmoireShepherdHeaddressNotes": "Sometimes the gryphons that you herd like to chew on this headdress, but it makes you seem more intelligent nonetheless. Increases Intelligence by <%= int %>. Enchanted Armoire: Shepherd Set (Item 3 of 3).", + "headArmoireBlueFloppyHatText": "Chapéu Desajeitado Azuljavascript:;", + "headArmoireBlueFloppyHatNotes": "Muitos encantamentos foram costurados nesse simples chapéu, dando a ele uma brilhante cor azul. Aumenta Constituição, Inteligência, e Percepção em <%= attrs %> cada. Armário Encantado: Item Independente", + "headArmoireShepherdHeaddressText": "Touca de Pastor", + "headArmoireShepherdHeaddressNotes": "Algumas vezes os grifos que você arrebanha gostam de mastigar essa touca, mas faz você parecer mais inteligente mesmo assim. Aumenta Inteligência em <%= int %>. Armário Encantado: Conjunto de Pastor (Item 3 de 3).", + "headArmoireCrystalCrescentHatText": "Crystal Crescent Hat", + "headArmoireCrystalCrescentHatNotes": "The design on this hat waxes and wanes with the phases of the moon. Increases Intelligence and Perception by <%= attrs %> each. Enchanted Armoire: Crystal Crescent Set (Item 1 of 3).", "offhand": "item da segunda mão", "shieldBase0Text": "Sem Equipamento na Segunda Mão", "shieldBase0Notes": "Sem escudo ou segundo armamento.", @@ -589,8 +601,8 @@ "shieldArmoireGladiatorShieldNotes": "Para ser um gladiador você precisa... ah, tanto faz, só esmague eles com o seu escudo. Aumenta Constituição em <%= con %> e Força em <%= str %>. Armário Encantado: Conjunto de Gladiador (Item 3 de 3).", "shieldArmoireMidnightShieldText": "Escudo da Meia-noite", "shieldArmoireMidnightShieldNotes": "Este escudo é mais poderoso na marca da meia-noite! Aumenta Constituição em <%= con %> e Força em <%= str %>. Armário Encantado: Item Independente.", - "shieldArmoireRoyalCaneText": "Royal Cane", - "shieldArmoireRoyalCaneNotes": "Hooray for the ruler, worthy of song! Increases Constitution, Intelligence, and Perception by <%= attrs %> each. Enchanted Armoire: Royal Set (Item 2 of 3).", + "shieldArmoireRoyalCaneText": "Bengala Real", + "shieldArmoireRoyalCaneNotes": "Hurra para o governante, digno de música! Aumenta Constituição, Inteligência, e Percepção em <%= attrs %> cada. Armário Encantado: Conjunto Real (Item 2 de 3).", "back": "Acessório de Costas", "backBase0Text": "Sem Acessório de Fundo", "backBase0Notes": "Sem Acessório de Fundo.", @@ -604,7 +616,7 @@ "backMystery201504Notes": "Buzz buzz buzz! Voe de tarefa em tarefa. Não concede benefícios. Item de Assinante de Abril de 2015.", "backMystery201507Text": "Prancha de Surf Radical", "backMystery201507Notes": "Surfe na Doca dos Diligentes e monte nas ondas da Baia Imkompleta! Não concede benefícios. Item de Assinante Julho 2015.", - "backMystery201510Text": "Rabo de Goblin", + "backMystery201510Text": "Cauda de Goblin", "backMystery201510Notes": "Multiuso e poderoso! Não concede benefícios. Item de Assinante de Outubro 2015.", "backSpecialWonderconRedText": "Capa Poderosa", "backSpecialWonderconRedNotes": "Sibila com força e beleza. Não concede benefícios. Equipamento Edição Especial de Convenção.", diff --git a/common/locales/pt/groups.json b/common/locales/pt/groups.json index 2e8edf3189..00b0fc0cc9 100644 --- a/common/locales/pt/groups.json +++ b/common/locales/pt/groups.json @@ -147,5 +147,5 @@ "partyChatEmpty": "Seu bate-papo da equipe está vazio! Digite uma mensagem na caixa acima para começar a conversar.", "guildChatEmpty": "O bate-papo desta guilda está vazio! Digite uma mensagem na caixa abaixo para começar a conversar.", "possessiveParty": "Equipe de <%= name %>", - "requestAcceptGuidelines": "If you would like to post messages in the Tavern or any party or guild chat, please first read our <%= linkStart %>Community Guidelines<%= linkEnd %> and then click the button below to indicate that you accept them." + "requestAcceptGuidelines": "Se você quiser postar mensagens na Taverna ou em qualquer chat de equipe ou guilda, por favor leia nossas <%= linkStart %>Diretrizes de Comunidade<%= linkEnd %> e então clique no botão abaixo para indicar que você as aceita." } \ No newline at end of file diff --git a/common/locales/pt/limited.json b/common/locales/pt/limited.json index 5331866936..7d7f609d32 100644 --- a/common/locales/pt/limited.json +++ b/common/locales/pt/limited.json @@ -21,6 +21,7 @@ "valentineCardAchievementText": "Aww, você e seu amigo devem se preocupar muito um com o outro! Enviou ou recebeu <%= cards %> Cartão(ões) do Dia dos Namorados.", "polarBear": "Urso Polar", "turkey": "Peru", + "gildedTurkey": "Gilded Turkey", "polarBearPup": "Filhote de Urso Polar", "jackolantern": "O miserável Jack da Lanterna", "seasonalShop": "Loja Sazonal", diff --git a/common/locales/pt/noscript.json b/common/locales/pt/noscript.json index 6057268ef2..84bec152e5 100644 --- a/common/locales/pt/noscript.json +++ b/common/locales/pt/noscript.json @@ -1,6 +1,6 @@ { - "jsDisabledHeading": "Alas! Your browser doesn't have JavaScript enabled", - "jsDisabledHeadingFull": "Alas! Your browser doesn't have JavaScript enabled and without it, Habitica can't work properly", - "jsDisabledText": "Habitica can't properly display the site without it!", - "jsDisabledLink": "Please enable JavaScript to continue!" + "jsDisabledHeading": "Seu navegador não esta com JavaScript habilitado", + "jsDisabledHeadingFull": "Seu navegador não esta com JavaScript habilitado e sem ele, Habitica não funcionará corretamente.", + "jsDisabledText": "Habitica não pode mostrar o site corretamente sem ele!", + "jsDisabledLink": "Por favor habilite o JavaScript para continuar!" } \ No newline at end of file diff --git a/common/locales/pt/npc.json b/common/locales/pt/npc.json index d9b4984596..96e343b343 100644 --- a/common/locales/pt/npc.json +++ b/common/locales/pt/npc.json @@ -8,7 +8,7 @@ "danielText": "Bem vindo à Taverna! Fique um pouco e conheça os locais. Se precisares descansar (férias? problemas de saúde?), eu me encarregarei de deixá-lo à vontade na Pousada. Enquanto descansa, suas Tarefas Diárias não lhe causarão dano na virada do dia, mas você ainda pode marcá-las como realizadas.", "danielText2": "Tenha cuidado: Se estiver participando de uma missão contra um Chefão, ele ainda lhe causará danos pelas Tarefas Diárias perdidas dos seus companheiros de equipe! Além disso, o seu dano no chefão (ou itens coletados) não serão aplicados até que você saia da Pousada.", "danielTextBroken": "Bem vindo à Taverna... Eu acho... Se você precisa descansar, eu irei te hospedar na Pousada... Enquanto estiver hospedado, suas Tarefas Diárias não te machucarão no final do dia, mas você ainda pode marcá-las como realizadas... se você tiver energia...", - "danielText2Broken": "Oh... Se você estiver participando numa missão de Chefão, ele ainda te causará dano pelas Tarefas Diárias perdidas dos teus colegas de equipe... Além disso, seu dano no Chefão (ou itens coletados) não serão aplicados até que você saia da Pousada...", + "danielText2Broken": "Oh... Se você estiver participando de uma missão de Chefão, ele ainda te causará dano pelas Tarefas Diárias perdidas dos teus colegas de equipe... Além disso, seu dano no Chefão (ou itens coletados) não serão aplicados até que você saia da Pousada...", "alexander": "Alexander o Comerciante", "welcomeMarket": "Bem-vindo ao Mercado! Compre ovos e poções difíceis de encontrar! Venda seus extras! Encomende serviços úteis! Veja ver o que temos para oferecer.", "displayItemForGold": "Você quer vender um <%= itemType %>?", @@ -19,7 +19,7 @@ "justin": "Justin", "ian": "Ian", "ianText": "Bem-vindo à Loja de Missões! Aqui você pode usar os Pergaminhos de Missões para lutar contra monstros com seus amigos. Não deixe de verificar nossa refinada lista de Pergaminhos de Missões para comprar à direita.", - "ianBrokenText": "Bem-vindo à Loja de Missões... Aqui você pode usar Pergaminhos de Missões para enfrentar monstros com seus amigos... Não deixe de dar uma olhada na nossa refinada coleção de Pergaminhos de Missões a venda à direita...", + "ianBrokenText": "Bem-vindo à Loja de Missões... Aqui você pode usar Pergaminhos de Missões para enfrentar monstros com seus amigos... Não deixe de dar uma olhada na nossa refinada coleção de Pergaminhos de Missões a venda na direita...", "USD": "USD", "newStuff": "Novidades", "cool": "Me diga depois", diff --git a/common/locales/pt/pets.json b/common/locales/pt/pets.json index 5a55bf7f34..0e75b69701 100644 --- a/common/locales/pt/pets.json +++ b/common/locales/pt/pets.json @@ -61,11 +61,11 @@ "hatchedPet": "Você chocou um <%= potion %> <%= egg %>!", "displayNow": "Mostrar Agora", "displayLater": "Mostrar Depois", - "earnedCompanion": "Com toda sua produtividade, você conseguiu um novo companheiro. Dê comida para faze-lo crescer!", + "earnedCompanion": "Com toda sua produtividade, você conseguiu um novo companheiro. Lhe dê comida para fazê-lo crescer!", "feedPet": "Alimentar <%= article %><%= text %> para o seu <%= name %>?", "useSaddle": "Selar <%= pet %>?", "raisedPet": "Você criou um <%= pet %>!", - "earnedSteed": "Por completar suas tarefas, você recebeu uma fiel montaria!", + "earnedSteed": "Completando suas tarefas, você conquistou uma fiel montaria!", "rideNow": "Montar Agora", "rideLater": "Montar Depois", "petName": "<%= egg %> <%= potion %>", diff --git a/common/locales/pt/questscontent.json b/common/locales/pt/questscontent.json index bf1bbe4cbf..15198e7067 100644 --- a/common/locales/pt/questscontent.json +++ b/common/locales/pt/questscontent.json @@ -269,9 +269,9 @@ "questFrogDropFrogEgg": "Sapo (Ovo)", "questFrogUnlockText": "Desbloqueia ovos de Sapo para compra no Mercado", "questSnakeText": "A Serpente da Distração", - "questSnakeNotes": "It takes a hardy soul to live in the Sand Dunes of Distraction. The arid desert is hardly a productive place, and the shimmering dunes have led many a traveler astray. However, something has even the locals spooked. The sands have been shifting and upturning entire villages. Residents claim a monster with an enormous serpentine body lies in wait under the sands, and they have all pooled together a reward for whomever will help them find and stop it. The much-lauded snake charmers @EmeraldOx and @PainterProphet have agreed to help you summon the beast. Can you stop the Serpent of Distraction?", + "questSnakeNotes": "É preciso um espírito durão para viver nas Duas da Distração. O deserto árido não é um lugar muito produtivo, e as dunas brilhantes têm levado muitos viajantes a se perderem. No entanto, alguma coisa tem assustado até mesmo os locais. As areias foram mudando e engolfando aldeias inteiras. Moradores alegam que um monstro com um enorme corpo de serpente está à espreita sob as areias, e todos eles oferecem juntos uma recompensa para aquele que irá ajudá-los a encontrá-lo e pará-lo. Os mais elogiados encantadores de serpentes @EmeraldOx e @PainterProphet concordaram em ajudá-lo a convocar a besta. Poderá você impedir a Serpente da Distração?", "questSnakeCompletion": "With assistance from the charmers, you banish the Serpent of Distraction. Though you were happy to help the inhabitants of the Dunes, you can't help but feel a little sad for your fallen foe. While you contemplate the sights, @LordDarkly approaches you. \"Thank you! It's not much, but I hope this can express our gratitude properly.\" He hands you some Gold and... some Snake eggs! You will see that majestic animal again after all.", "questSnakeBoss": "Serpente da Distração", "questSnakeDropSnakeEgg": "Cobra (Ovo)", - "questSnakeUnlockText": "Unlocks purchasable Snake eggs in the Market" + "questSnakeUnlockText": "Desbloqueie ovos de Cobra para compra no Mercado" } \ No newline at end of file diff --git a/common/locales/pt/rebirth.json b/common/locales/pt/rebirth.json index d0a96505ee..d98d302dce 100644 --- a/common/locales/pt/rebirth.json +++ b/common/locales/pt/rebirth.json @@ -16,11 +16,11 @@ "rebirthEarnAchievement": "Você também ganha uma Conquista por começar uma nova aventura!", "beReborn": "Renasça", "rebirthAchievement": "Você iniciou uma nova aventura! Esse é o seu Renascimento número <%= number %>, e o nível mais alto que você atingiu foi <%= level %>. Para acumular essa Conquista, comece sua próxima nova aventura quando atingir um Nível ainda maior!", - "rebirthAchievement100": "Você iniciou uma nova aventura! Esse é seu <%= number %> º Renascimento, e o nível mais alto que você atingiu foi 100 ou mais. Para acumular essa Conquista, comece sua próxima aventura quando atingir pelo menos nível 100!", + "rebirthAchievement100": "Você iniciou uma nova aventura! Esse é seu <%= number %> º Renascimento, e o nível mais alto que você atingiu foi 100 ou maior. Para acumular essa Conquista, comece sua próxima aventura quando atingir pelo menos nível 100!", "rebirthBegan": "Iniciou uma Nova Aventura", "rebirthText": "Iniciou <%= rebirths %> Novas Aventuras", "rebirthOrb": "Usou um Orbe do Renascimento para recomeçar depois de alcançar Nível", - "rebirthOrb100": "Usou um Orbe do Renascimento para recomeçar depois de alcançar nível 100 ou mais", + "rebirthOrb100": "Usou um Orbe do Renascimento para recomeçar depois de alcançar nível 100 ou superior", "rebirthPop": "Comece um novo personagem do Nível 1 mantendo conquistas, colecionáveis, e tarefas com histórico.", "rebirthName": "Orbe do Renascimento", "reborn": "Renascido, nível max <%= reLevel %>" diff --git a/common/locales/pt/settings.json b/common/locales/pt/settings.json index 9784737c40..b7b01c3b9e 100644 --- a/common/locales/pt/settings.json +++ b/common/locales/pt/settings.json @@ -143,5 +143,8 @@ "gemCapExtra": "Número Máximo de Gemas extra:", "mysticHourglasses": "Ampulhetas Místicas", "paypal": "PayPal", - "amazonPayments": "Amazon Payments" + "amazonPayments": "Amazon Payments", + "timezone": "Time Zone", + "timezoneUTC": "Habitica uses the time zone set on your PC, which is: <%= utc %>", + "timezoneInfo": "If that time zone is wrong, first reload this page using your browser's reload or refresh button to ensure that Habitica has the most recent information. If it is still wrong, adjust the time zone on your PC and then reload this page again.

If you use Habitica on other PCs or mobile devices, the time zone must be the same on them all. If your Dailies have been reseting at the wrong time, repeat this check on all other PCs and on a browser on your mobile devices." } \ No newline at end of file diff --git a/common/locales/pt/tasks.json b/common/locales/pt/tasks.json index de3f6a94d3..99dbc2104b 100644 --- a/common/locales/pt/tasks.json +++ b/common/locales/pt/tasks.json @@ -88,8 +88,7 @@ "fortifyText": "Fortificar reverterá todas as suas tarefas para o valor neutro (amarelo), como se tivesse acabado de adicioná-las, e completará sua vida até estar cheia. Esta é uma ótima opção caso suas tarefas vermelhas estejam tornando o jogo muito difícil, ou suas tarefas azuis tornando-o muito fácil. Se começar de novo parece mais empolgante, gaste suas Gemas e aproveite!", "sureDelete": "Tem certeza de que deseja deletar essa tarefa?", "streakCoins": "Bônus de Combo!", - "pushTaskToTop": "Enviar tarefa para o topo", - "pushTaskToBottom": "Enviar tarefa para o fundo", + "pushTaskToTop": "Push task to top. Hold ctrl or cmd to push to bottom.", "emptyTask": "Insira o título da tarefa primeiro.", "dailiesRestingInInn": "Você está descansando na Pousada! Suas Tarefas Diárias NÃO vão lhe causar dano esta noite, mas elas ainda IRÃO atualizar normalmente todos os dias. Se você está em uma missão, você não causará dano ou coletará itens até que saia da Pousada, mas ainda poderá receber dano de um Chefão se os membros de sua Equipe não completarem as suas Tarefas Diárias.", "habitHelp1": "Bons Hábitos são coisas que você faz muitas vezes. Eles recompensam com Ouro e Experiência cada vez que você clica no botão <%= plusIcon %>.", diff --git a/common/locales/ro/backgrounds.json b/common/locales/ro/backgrounds.json index 274a5de2df..e06f5c1fd8 100644 --- a/common/locales/ro/backgrounds.json +++ b/common/locales/ro/backgrounds.json @@ -125,5 +125,12 @@ "backgroundNightDunesText": "Dunele nopții", "backgroundNightDunesNotes": "Mergi lejer printre dunele nopții", "backgroundSunsetOasisText": "Oaza de la apus", - "backgroundSunsetOasisNotes": "Lenevește prin oaza de la apus" + "backgroundSunsetOasisNotes": "Lenevește prin oaza de la apus", + "backgrounds122015": "SET 19: Released December 2015", + "backgroundAlpineSlopesText": "Alpine Slopes", + "backgroundAlpineSlopesNotes": "Ski on the Alpine Slopes.", + "backgroundSnowySunriseText": "Snowy Sunrise", + "backgroundSnowySunriseNotes": "Gaze at the Snowy Sunrise.", + "backgroundWinterTownText": "Winter Town", + "backgroundWinterTownNotes": "Bustle through a Winter Town." } \ No newline at end of file diff --git a/common/locales/ro/faq.json b/common/locales/ro/faq.json index 291c6f779d..0b92a02537 100644 --- a/common/locales/ro/faq.json +++ b/common/locales/ro/faq.json @@ -2,7 +2,7 @@ "frequentlyAskedQuestions": "Întrebări adresate frecvent", "faqQuestion0": "Sunt confuz(ă). De unde pot avea o privire de ansamblu?", "iosFaqAnswer0": "În primul rând, vei seta sarcini pe care vrei să le realizezi în viața de zi cu zi. Apoi, pe măsură ce completezi sarcinile în viața reală și le bifezi, vei câștiga experiență și aur. Aurul este folosit pentru a cumpăra echipament și alte articole, dar și premii personalizate. Experiența face ca personajul tău să avanseze în nivel și să aibă acces la conținut suplimentar, precum companioni, abilități și expediții! Poți individualiza personajul tău din Meniu > Personalizează avatar.\n\nNiște metode simple de a interacționa: clic pe (+) din colțul din dreapta-sus pentru a adăuga o nouă sarcină. Apasă pe o sarcină existentă pentru a o edita glisează spre stânga pentru a o șterge. Poți sorta sarcinile cu ajutorul etichetelor din colțul din stânga-sus și poți expanda sau contracta listele de verificare prin clic pe bula listei de verificare.", - "webFaqAnswer0": "Mai întâi vei seta sarcini pe care vrei să le realizezi în viața de zi cu zi. Apoi, pe măsură ce completezi sarcinile în viața reală și le bifezi, vei câștiga experiență și aur. Aurul este folosit pentru a cumpăra echipament și unele articole, dar și recompense personalizate. Experiența face ca personajul tău să avanseze în nivel și să descuie conținut cum ar fi companioni, abilități și expediții! Pentru mai multe detalii, wikiul are o excelentă privire de ansamblu pas-cu-pas a jocului [chiar aici](http://habitica.wikia.com/wiki/Habitica_Wiki).", + "webFaqAnswer0": "First, you'll set up tasks that you want to do in your everyday life. Then, as you complete the tasks in real life and check them off, you'll earn Experience and Gold. Gold is used to buy equipment and some items, as well as custom rewards. Experience causes your character to level up and unlock content such as pets, skills, and quests! For more detail, check out a step-by-step overview of the game at [Help -> Overview for New Users](https://habitica.com/static/overview).", "faqQuestion1": "Cum îmi setez sarcinile?", "iosFaqAnswer1": "Bunele obiceiuri (acelea marcate cu +) sunt sarcini pe care le poți efectua de mai multe ori pe zi, cum ar fi mâncatul legumelor. Proastele obiceiuri (cele marcate cu -) sunt sarcini pe care trebuie să le eviți, ca mâncatul unghiilor. Obiceiurile marcate cu + și - au asociate o alegere bună și o alegere proastă, cum ar fi mersul pe scări vs. mersul cu liftul. Bunele obiceiuri te răsplătesc cu experiență și aur. Proastele obiceiuri îți scad sănătatea.\n\nSarcinile zilnice sunt sarcini pe care le poți face în fiecare zi, cum ar fi spălatul pe dinți sau verificarea e-mailului. Poți ajusta zilele în care o sarcină trebuie efectuată printr-o apăsare pe aceasta pentru a o edita. Dacă sari peste o sarcină zilnică ce trebuie efectuată, avatarul va pierde sănătate peste noapte. Ai grijă să nu adaugi prea multe sarcini zilnice în același timp.\n\n„De făcut” este lista ta de sarcini de făcut. Prin completarea acestor sarcini câștigi aur și experiență. Nu pierzi niciodată sănătate prin nerealizarea acestor sarcini. Poți adăuga date limită pentru o sarcină „de făcut” prin atingerea acesteia pentru a o edita.", "webFaqAnswer1": "Obiceiurile bune (marcate cu ) sunt sarcini care pot fi realizate de mai multe ori pe zi, cum ar fi mâncatul legumelor. Obiceiurile proaste (marcate cu ) sunt sarcini pe care ar trebui să le eviți, cum ar fi mâncatul unghiilor. Obiceiurile marcate cu și au asociate o alegere bună și un a proastă, cum ar fi mersul pe scări vs. mersul cu liftul. Obiceiurile bune te răsplătesc cu experiență și aur iar obiceiurile proaste îți scad sănătatea.\n

\nSarcinile zilnice sunt sarcini pe care le poți face în fiecare zi, cum ar fi spălatul pe dinți sau verificarea e-mailului. Poți ajusta zilele în care trebuie realizată o sarcină zilnică printr-un clic pe iconița cu creion pentru a o edita. Dacă sari peste o sarcină zilnică ce trebuie realizată în acea zi, avatarul tău se va deteriora peste noapte. Ai grijă să nu adaugi prea multe sarcini zilnice în același timp.\n

\n „De făcut” sunt lista de sarcini de realizat. Prin completarea acestora câștigi aur și experiență. Nu pierzi niciodată sănătate prin nerealizarea acestor sarcini. Poți adăuga o dată limită pentru o sarcină „de făcut” printr-un clic pe iconița creion pentru a o edita.", diff --git a/common/locales/ro/gear.json b/common/locales/ro/gear.json index 3dae257b51..212e82e96b 100644 --- a/common/locales/ro/gear.json +++ b/common/locales/ro/gear.json @@ -149,15 +149,19 @@ "weaponArmoireRancherLassoText": "Rancher Lasso", "weaponArmoireRancherLassoNotes": "Lassos: the ideal tool for rounding up and wrangling. Increases Strength by <%= str %>, Perception by <%= per %>, and Intelligence by <%= int %>. Enchanted Armoire: Rancher Set (Item 3 of 3).", "weaponArmoireMythmakerSwordText": "Mythmaker Sword", - "weaponArmoireMythmakerSwordNotes": "Though it may seem humble, this sword has made many mythic heroes. Increases Perception and Strength by <%= attrs %> each. Enchanted Armoire: Golden Toga Set (Item 3 of 3)", + "weaponArmoireMythmakerSwordNotes": "Though it may seem humble, this sword has made many mythic heroes. Increases Perception and Strength by <%= attrs %> each. Enchanted Armoire: Golden Toga Set (Item 3 of 3).", "weaponArmoireIronCrookText": "Iron Crook", - "weaponArmoireIronCrookNotes": "Fiercely hammered from iron, this iron crook is good at herding sheep. Increases Perception and Strength by <%= attrs %> each. Enchanted Armoire: Horned Iron Set (Item 3 of 3)", + "weaponArmoireIronCrookNotes": "Fiercely hammered from iron, this iron crook is good at herding sheep. Increases Perception and Strength by <%= attrs %> each. Enchanted Armoire: Horned Iron Set (Item 3 of 3).", "weaponArmoireGoldWingStaffText": "Gold Wing Staff", "weaponArmoireGoldWingStaffNotes": "The wings on this staff constantly flutter and twist. Increases all attributes by <%= attrs %> each. Enchanted Armoire: Independent Item.", "weaponArmoireBatWandText": "Bat Wand", "weaponArmoireBatWandNotes": "This wand can turn any task into a bat! Wave it about and watch them fly away. Increases Intelligence by <%= int %> and Perception by <%= per %>. Enchanted Armoire: Independent Item.", "weaponArmoireShepherdsCrookText": "Shepherd's Crook", "weaponArmoireShepherdsCrookNotes": "Useful for herding gryphons. Increases Constitution by <%= con %>. Enchanted Armoire: Shepherd Set (Item 1 of 3).", + "weaponArmoireCrystalCrescentStaffText": "Crystal Crescent Staff", + "weaponArmoireCrystalCrescentStaffNotes": "Summon the power of the crescent moon with this shining staff! Increases Intelligence and Strength by <%= attrs %> each. Enchanted Armoire: Crystal Crescent Set (Item 3 of 3).", + "weaponArmoireBlueLongbowText": "Blue Longbow", + "weaponArmoireBlueLongbowNotes": "Ready... Aim... Fire! This bow has great range. Increases Perception by 9, Constitution by 8, and Strength by 7. Enchanted Armoire: Independent Item.", "armor": "armură", "armorBase0Text": "Îmbrăcăminte simplă", "armorBase0Notes": "Haine obișnuite. Nu conferă niciun beneficiu.", @@ -222,7 +226,7 @@ "armorSpecialBirthday2015Text": "Îmbrăcăminte aiurea pentru petrecere", "armorSpecialBirthday2015Notes": "Happy Birthday, Habitica! Wear these Silly Party Robes to celebrate this wonderful day. Confers no benefit.", "armorSpecialGaymerxText": "Armura curcubeu", - "armorSpecialGaymerxNotes": "In celebration of pride season and GaymerX, this special armor is decorated with a radiant, colorful rainbow pattern! GaymerX is a game convention celebrating LGBTQ and gaming and is open to everyone. It takes place at the InterContinental in downtown San Francisco on July 11-13! Confers no benefit.", + "armorSpecialGaymerxNotes": "In celebration of the GaymerX Conference, this special armor is decorated with a radiant, colorful rainbow pattern! GaymerX is a game convention celebrating LGTBQ and gaming and is open to everyone.", "armorSpecialSpringRogueText": "Costum lucios de pisică", "armorSpecialSpringRogueNotes": "Impeccably groomed. Increases Perception by <%= per %>. Limited Edition 2014 Spring Gear.", "armorSpecialSpringWarriorText": "Armură din oțel-trifoi", @@ -309,6 +313,8 @@ "armorMystery201508Notes": "Run fast as a flash in the fluffy Cheetah Costume! Confers no benefit. August 2015 Subscriber Item.", "armorMystery201509Text": "Werewolf Costume", "armorMystery201509Notes": "This IS a costume, right? Confers no benefit. September 2015 Subscriber Item.", + "armorMystery201511Text": "Wooden Armor", + "armorMystery201511Notes": "Considering this armor was carved directly from a magical log, it's surprisingly comfortable. Confers no benefit. November 2015 Subscriber Item.", "armorMystery301404Text": "Steampunk Suit", "armorMystery301404Notes": "Dapper and dashing, wot! Confers no benefit. February 3015 Subscriber Item.", "armorArmoireLunarArmorText": "Soothing Lunar Armor", @@ -327,6 +333,8 @@ "armorArmoireShepherdRobesNotes": "The fabric is cool and breathable, perfect for a hot day herding gryphons in the desert. Increases Strength and Perception by <%= attrs %> each. Enchanted Armoire: Shepherd Set (Item 2 of 3).", "armorArmoireRoyalRobesText": "Royal Robes", "armorArmoireRoyalRobesNotes": "Wonderful ruler, rule all day long! Increases Constitution, Intelligence, and Perception by <%= attrs %> each. Enchanted Armoire: Royal Set (Item 3 of 3).", + "armorArmoireCrystalCrescentRobesText": "Crystal Crescent Robes", + "armorArmoireCrystalCrescentRobesNotes": "These magical robes are luminescent at night. Increases Constitution and Perception by <%= attrs %> each. Enchanted Armoire: Crystal Crescent Set (Item 2 of 3).", "headgear": "echipament pentru cap", "headBase0Text": "Fără cască", "headBase0Notes": "Fără echipament pentru cap", @@ -447,7 +455,7 @@ "headSpecialFall2015HealerText": "Hat of Frog", "headSpecialFall2015HealerNotes": "This is an extremely serious hat that is worthy of only the most advanced potioners. Increases Intelligence by <%= int %>. Limited Edition 2015 Autumn Gear.", "headSpecialGaymerxText": "Coiful curcubeu", - "headSpecialGaymerxNotes": "In celebration of pride season and GaymerX, this special helmet is decorated with a radiant, colorful rainbow pattern! GaymerX is a game convention celebrating LGBTQ and gaming and is open to everyone. It takes place at the InterContinental in downtown San Francisco on July 11-13! Confers no benefit.", + "headSpecialGaymerxNotes": "In celebration of the GaymerX Conference, this special helmet is decorated with a radiant, colorful rainbow pattern! GaymerX is a game convention celebrating LGTBQ and gaming and is open to everyone.", "headMystery201402Text": "Coif înaripat", "headMystery201402Notes": "This winged circlet imbues the wearer with the speed of the wind! Confers no benefit. February 2014 Subscriber Item.", "headMystery201405Text": "Flacăra minții", @@ -470,6 +478,8 @@ "headMystery201508Notes": "This cozy cheetah hat is very fuzzy! Confers no benefit. August 2015 Subscriber Item.", "headMystery201509Text": "Werewolf Mask", "headMystery201509Notes": "This IS a mask, right? Confers no benefit. September 2015 Subscriber Item.", + "headMystery201511Text": "Log Crown", + "headMystery201511Notes": "Count the number of rings to learn how old this crown is. Confers no benefit. November 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", @@ -506,6 +516,8 @@ "headArmoireBlueFloppyHatNotes": "Many spells have been sewn into this simple hat, giving it a brilliant blue color. Increases Constitution, Intelligence, and Perception by <%= attrs %> each. Enchanted Armoire: Independent Item.", "headArmoireShepherdHeaddressText": "Shepherd Headdress", "headArmoireShepherdHeaddressNotes": "Sometimes the gryphons that you herd like to chew on this headdress, but it makes you seem more intelligent nonetheless. Increases Intelligence by <%= int %>. Enchanted Armoire: Shepherd Set (Item 3 of 3).", + "headArmoireCrystalCrescentHatText": "Crystal Crescent Hat", + "headArmoireCrystalCrescentHatNotes": "The design on this hat waxes and wanes with the phases of the moon. Increases Intelligence and Perception by <%= attrs %> each. Enchanted Armoire: Crystal Crescent Set (Item 1 of 3).", "offhand": "shield-hand item", "shieldBase0Text": "No Shield-Hand Equipment", "shieldBase0Notes": "Niciun scut sau a doua armă", diff --git a/common/locales/ro/limited.json b/common/locales/ro/limited.json index 4ac2ac96d2..dceb74245e 100644 --- a/common/locales/ro/limited.json +++ b/common/locales/ro/limited.json @@ -21,6 +21,7 @@ "valentineCardAchievementText": "Aww, you and your friend must really care about each other! Sent or received <%= cards %> Valentine's Day cards.", "polarBear": "Urs polar", "turkey": "Curcan", + "gildedTurkey": "Gilded Turkey", "polarBearPup": "Pui de urs polar", "jackolantern": "Dovleac de Halloween", "seasonalShop": "Seasonal Shop", diff --git a/common/locales/ro/noscript.json b/common/locales/ro/noscript.json index 6057268ef2..542be1c7e0 100644 --- a/common/locales/ro/noscript.json +++ b/common/locales/ro/noscript.json @@ -1,6 +1,6 @@ { - "jsDisabledHeading": "Alas! Your browser doesn't have JavaScript enabled", - "jsDisabledHeadingFull": "Alas! Your browser doesn't have JavaScript enabled and without it, Habitica can't work properly", - "jsDisabledText": "Habitica can't properly display the site without it!", - "jsDisabledLink": "Please enable JavaScript to continue!" + "jsDisabledHeading": "Vai! Se pare că browserul tău nu are JavaScript activat", + "jsDisabledHeadingFull": "Vai! Se pare că browserul tău nu are JavaScript activat și fără acesta Habitica nu poate funcționa corect", + "jsDisabledText": "Habitica nu poate afișa site-ul fără aceasta!", + "jsDisabledLink": "Te rugăm să activezi JavaScript pentru a continua!" } \ No newline at end of file diff --git a/common/locales/ro/settings.json b/common/locales/ro/settings.json index f485b45fc8..13b8cf0bfa 100644 --- a/common/locales/ro/settings.json +++ b/common/locales/ro/settings.json @@ -143,5 +143,8 @@ "gemCapExtra": "Gem Cap Extra:", "mysticHourglasses": "Mystic Hourglasses:", "paypal": "PayPal", - "amazonPayments": "Amazon Payments" + "amazonPayments": "Amazon Payments", + "timezone": "Time Zone", + "timezoneUTC": "Habitica uses the time zone set on your PC, which is: <%= utc %>", + "timezoneInfo": "If that time zone is wrong, first reload this page using your browser's reload or refresh button to ensure that Habitica has the most recent information. If it is still wrong, adjust the time zone on your PC and then reload this page again.

If you use Habitica on other PCs or mobile devices, the time zone must be the same on them all. If your Dailies have been reseting at the wrong time, repeat this check on all other PCs and on a browser on your mobile devices." } \ No newline at end of file diff --git a/common/locales/ro/subscriber.json b/common/locales/ro/subscriber.json index bf1c8f0546..78023499c0 100644 --- a/common/locales/ro/subscriber.json +++ b/common/locales/ro/subscriber.json @@ -59,21 +59,21 @@ "timeTravelers": "Călători în timp", "timeTravelersTitleNoSub": "<%= linkStartTyler %>Tyler<%= linkEnd %> și <%= linkStartVicky %>Vicky<%= linkEnd %>", "timeTravelersTitle": "Misterioși călători în timp", - "timeTravelersPopoverNoSub": "You'll need a Mystic Hourglass to summon the mysterious Time Travelers! <%= linkStart %>Subscribers<%= linkEnd %> earn one Mystic Hourglass for every three months of consecutive subscribing. Come back when you have a Mystic Hourglass, and the Time Travelers will fetch you a rare pet, mount, or Subscriber Item Set from the past... or maybe even the future.", + "timeTravelersPopoverNoSub": "Vei avea nevoie de o clepsidră mistică pentru a invoca pe misterioșii călători în timp! <%= linkStart %>Abonații<%= linkEnd %> câștigă câte o clepsidră mistică la fiecare trei luni de abonament consecutiv. Revino când ai o clepsidră mistică și călătorii în timp îți vor aduce un companion rar, bidiviu sau set de articole pentru abonați din trecut... sau poate chiar din viitor.", "timeTravelersPopover": "We see you have a Mystic Hourglass, so we will happily travel back in time for you! Please choose the pet, mount, or Mystery Item Set you would like. You can see a list of the past item sets here! If those don't satisfy you, perhaps you'd be interested in one of our fashionably futuristic Steampunk Item Sets?", - "timeTravelersAlreadyOwned": "Congratulations! You already own everything the Time Travelers currently offer. Thanks for supporting the site!", - "mysticHourglassPopover": "A Mystic Hourglass allows you to purchase certain limited-time items, such as monthly Mystery Item Sets and awards from world bosses, from the past!", + "timeTravelersAlreadyOwned": "Felicitări! Deja deții tot ce este oferit de călătorii în timp. Mulțumim că susții site-ul!", + "mysticHourglassPopover": "O clepsidră mistică îți permite să cumperi anumite articole disponibile o perioadă limitată, cum ar fi seturi misterioase de articole disponibile lunar și premii de la căpcăunii șef din trecut!", "subUpdateCard": "Update Card", "subUpdateTitle": "Update", "subUpdateDescription": "Update the card to be charged.", - "notEnoughHourglasses": "You don't have enough Mystic Hourglasses.", - "hourglassBuyEquipSetConfirm": "Buy this full set of items for 1 Mystic Hourglass?", - "hourglassBuyItemConfirm": "Buy this item for 1 Mystic Hourglass?", - "petsAlreadyOwned": "Pet already owned.", - "mountsAlreadyOwned": "Mount already owned.", - "typeNotAllowedHourglass": "Item type not supported for purchase with Mystic Hourglass. Allowed types:", - "petsNotAllowedHourglass": "Pet not available for purchase with Mystic Hourglass.", - "mountsNotAllowedHourglass": "Mount not available for purchase with Mystic Hourglass.", - "hourglassPurchase": "Purchased an item using a Mystic Hourglass!", - "hourglassPurchaseSet": "Purchased an item set using a Mystic Hourglass!" + "notEnoughHourglasses": "Nu ai destule clepsidre mistice.", + "hourglassBuyEquipSetConfirm": "Cumpără acest set complet de articole pentru 1 clepsidră mistică?", + "hourglassBuyItemConfirm": "Cumperi acest articol pentru 1 clepsidră mistică?", + "petsAlreadyOwned": "Companionul este deja deținut.", + "mountsAlreadyOwned": "Bidiviul este deja deținut.", + "typeNotAllowedHourglass": "Tipul de articol nu poate fi cumpărat cu clepsidra mistică. Tipurile permise:", + "petsNotAllowedHourglass": "Companionul nu poate fi cumpărat cu clepsidra mistică.", + "mountsNotAllowedHourglass": "Bidiviul nu poate fi cumpărat cu clepsidra mistică.", + "hourglassPurchase": "Ai cumpărat un articol cu clepsidra mistică!", + "hourglassPurchaseSet": "Ai cumpărat un set de articole cu clepsidra mistică!" } \ No newline at end of file diff --git a/common/locales/ro/tasks.json b/common/locales/ro/tasks.json index 303c4fabb6..542d58bf67 100644 --- a/common/locales/ro/tasks.json +++ b/common/locales/ro/tasks.json @@ -88,8 +88,7 @@ "fortifyText": "Fortify will return all your tasks to a neutral (yellow) state, as if you'd just added them, and top your Health off to full. This is great if all your red tasks are making the game too hard, or all your blue tasks are making the game too easy. If starting fresh sounds much more motivating, spend the Gems and catch a reprieve!", "sureDelete": "Ești sigur că vrei să ștergi acest țel?", "streakCoins": "Bonus de realizare în șir!", - "pushTaskToTop": "Urcă sarcina în vârf", - "pushTaskToBottom": "Trimite sarcina la coadă.", + "pushTaskToTop": "Push task to top. Hold ctrl or cmd to push to bottom.", "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.", "habitHelp1": "Good Habits are things that you do often. They award Gold and Experience every time you click the <%= plusIcon %>.", diff --git a/common/locales/ru/backgrounds.json b/common/locales/ru/backgrounds.json index b57e0d3131..1496f557c2 100644 --- a/common/locales/ru/backgrounds.json +++ b/common/locales/ru/backgrounds.json @@ -108,8 +108,8 @@ "backgrounds092015": "Набор 16: Выпущен в сентябре 2015", "backgroundMarketText": "Рынок Habitica", "backgroundMarketNotes": "Покупайте на рынке Habitica", - "backgroundStableText": "Стайня Habitica", - "backgroundStableNotes": "Заботьтесь о скакунах в стайне Habitica.", + "backgroundStableText": "Стойла Habitica", + "backgroundStableNotes": "Заботьтесь о скакунах в стойлах Habitica.", "backgroundTavernText": "Таверна Habitica", "backgroundTavernNotes": "Посетите таверну Habitica.", "backgrounds102015": "Набор 17: Выпущен в октябре 2015", @@ -120,10 +120,17 @@ "backgroundSwarmingDarknessText": "Кромешная тьма", "backgroundSwarmingDarknessNotes": "Тряситесь от страха в кромешной тьме!", "backgrounds112015": "Набор 18: Выпущен в ноябре 2015", - "backgroundFloatingIslandsText": "Плавающие острова", - "backgroundFloatingIslandsNotes": "Hop across the Floating Islands.", + "backgroundFloatingIslandsText": "Парящие Острова", + "backgroundFloatingIslandsNotes": "Скачите по Парящим Островам.", "backgroundNightDunesText": "Ночные Дюны", - "backgroundNightDunesNotes": "Тихая прогулка через Ночные Дюны", - "backgroundSunsetOasisText": "Sunset Oasis", - "backgroundSunsetOasisNotes": "Bask in the Sunset Oasis." + "backgroundNightDunesNotes": "Тихо прогуляйтесь сквозь Ночные Дюны.", + "backgroundSunsetOasisText": "Закатный Оазис", + "backgroundSunsetOasisNotes": "Насладитесь Закатным Оазисом.", + "backgrounds122015": "SET 19: Released December 2015", + "backgroundAlpineSlopesText": "Alpine Slopes", + "backgroundAlpineSlopesNotes": "Ski on the Alpine Slopes.", + "backgroundSnowySunriseText": "Snowy Sunrise", + "backgroundSnowySunriseNotes": "Gaze at the Snowy Sunrise.", + "backgroundWinterTownText": "Winter Town", + "backgroundWinterTownNotes": "Bustle through a Winter Town." } \ No newline at end of file diff --git a/common/locales/ru/challenge.json b/common/locales/ru/challenge.json index 1e3a4e30e5..0d9e22bfde 100644 --- a/common/locales/ru/challenge.json +++ b/common/locales/ru/challenge.json @@ -43,7 +43,7 @@ "exportChallengeCSV": "Экспорт в CSV", "selectGroup": "Пожалуйста, выберите группу", "challengeCreated": "Испытание создано", - "sureDelCha": "Вы действительно хотите удалить это испытание?", + "sureDelCha": "Вы точно хотите удалить это испытание?", "sureDelChaTavern": "Вы уверены, что хотите удалить это испытание? Ваши самоцветы не будут возмещены.", "removeTasks": "Удалить задания", "keepTasks": "Оставить задания", diff --git a/common/locales/ru/content.json b/common/locales/ru/content.json index a55734f63e..b59573a47f 100644 --- a/common/locales/ru/content.json +++ b/common/locales/ru/content.json @@ -2,7 +2,7 @@ "potionText": "Эликсир здоровья", "potionNotes": "Восстанавливает 15 здоровья (мгновенно)", "armoireText": "Зачарованная Кладовая", - "armoireNotesFull": "Откройте сундук, чтобы случайным образом получить особое снаряжение, опыт или еду! Осталось снаряжения:", + "armoireNotesFull": "Откройте Кладовую, чтобы случайным образом получить особое Снаряжение, Опыт или еду! Осталось снаряжения:", "armoireLastItem": "Вы получили последний редкий предмет из волшебного сундука.", "armoireNotesEmpty": "Новое снаряжение будет появляться в сундуке в начале каждого месяца. А пока что продолжайте кликать ради опыта и еды!", "dropEggWolfText": "Волк", diff --git a/common/locales/ru/faq.json b/common/locales/ru/faq.json index 05b7d75f36..2c3a01bfbf 100644 --- a/common/locales/ru/faq.json +++ b/common/locales/ru/faq.json @@ -2,7 +2,7 @@ "frequentlyAskedQuestions": "Часто задаваемые вопросы", "faqQuestion0": "Я не могу разобраться. Где можно прочитать, что к чему?", "iosFaqAnswer0": "Первым делом добавьте задания, которые вы хотели бы выполнять в своей жизни каждый день. Затем, когда вы будете выполнять эти задания в реальной жизни и отмечать их выполнение, вы будете получать очки опыта и золотые монеты. Золото используется для приобретения снаряжения и некоторых предметов, а также создаваемых игроком наград. Опыт необходим для повышения уровня вашего персонажа, что влечёт за собой постепенное открытие таких возможностей как выращивание питомцев, использование навыков или выполнение квестов. Вы можете настроить внешний вид вашего персонажа через Меню > Персонализировать аватар.\n\nВот пара простых способов обращения с программой: нажмите на (+) в правом верхнем углу, чтобы добавить новое задание. Нажмите на существующее задание, чтобы включить режим редактирования, или проведите по заданию пальцем влево, чтобы удалить его. Вы можете навести порядок в заданиях, используя теги, расположенные в левом верхнем углу. Также вы можете разворачивать и сворачивать вложенные списки нажатием на соответствующую иконку с пузырьком.", - "webFaqAnswer0": "Первым делом добавьте задания, которые вы хотели бы выполнять в своей жизни каждый день. Затем, когда вы будете выполнять эти задания в реальной жизни и отмечать их выполнение, вы будете получать очки опыта и золотые монеты. Золото используется для приобретения снаряжения и некоторых предметов, а также создаваемых игроком наград. Опыт необходим для повышения уровня вашего персонажа, что влечёт за собой постепенное открытие таких возможностей как выращивание питомцев, использование навыков или выполнение квестов. Если вам нужно больше информации, на Вики есть отличное руководство по игре, где всё подробно описано шаг за шагом. Чтобы ознакомиться с ним, перейдите по [этой ссылке](http://habitica.wikia.com/wiki/Habitica_Wiki).", + "webFaqAnswer0": "First, you'll set up tasks that you want to do in your everyday life. Then, as you complete the tasks in real life and check them off, you'll earn Experience and Gold. Gold is used to buy equipment and some items, as well as custom rewards. Experience causes your character to level up and unlock content such as pets, skills, and quests! For more detail, check out a step-by-step overview of the game at [Help -> Overview for New Users](https://habitica.com/static/overview).", "faqQuestion1": "Как правильно создавать задания?", "iosFaqAnswer1": "Хорошие привычки (отмеченные знаком +) — это задания, которые вы можете выполнять много раз в день: например, употребление в пищу овощей. Плохие привычки (отмеченные знаком -) — это те действия, от которых вам стоит отказаться: например, грызть ногти. Привычки, напротив которых стоит и плюс, и минус, предполагают двойственный выбор — либо в хорошую, либо в плохую сторону: например, восхождение по лестнице пешком против использования лифта. Хорошие привычки приносят опыт и золото, а плохие привычки уменьшают здоровье.\n\nЕжедневные задания — задания, которые необходимо выполнять каждый день: например, чистить зубы или проверять электронную почту. Чтобы указать дни, в которые ежедневное задание обязательно или не обязательно для выполнения, просто нажмите на него для редактирования. Если вы пропустите обязательное задание, ваш персонаж получит урон следующей ночью. Будьте осторожны и не добавляйте слишком много ежедневных заданий сразу!\n\nЗадачи — это список одноразовых дел, которые вам необходимо выполнить. Вы никогда не потеряете здоровье от невыполнения задач. Вы можете указать обязательный срок для выполнения задачи, нажав на неё для редактирования.", "webFaqAnswer1": "Хорошие привычки (отмеченные знаком ) — это задания, которые вы можете выполнять много раз в день: например, употребление в пищу овощей. Плохие привычки (отмеченные знаком ) — это те действия, от которых вам стоит отказаться: например, грызть ногти. Привычки, напротив которых стоит и , и , предполагают двойственный выбор — либо в хорошую, либо в плохую сторону: например, восхождение по лестнице пешком против использования лифта. Хорошие привычки приносят опыт и золото, а плохие привычки уменьшают здоровье.\n\n

\n\nЕжедневные задания — задания, которые необходимо выполнять каждый день: например, чистить зубы или проверять электронную почту. Чтобы указать дни, в которые ежедневное задание обязательно или не обязательно для выполнения, просто нажмите на иконку карандаша для редактирования. Если вы пропустите обязательное задание, ваш персонаж получит урон следующей ночью. Будьте осторожны и не добавляйте слишком много ежедневных заданий сразу!\n\n

\n\nЗадачи — это список одноразовых дел, которые вам необходимо выполнить. Вы никогда не потеряете здоровье от невыполнения задач. Вы можете указать обязательный срок для выполнения задачи, кликнув по иконке карандаша для редактирования.", @@ -16,7 +16,7 @@ "iosFaqAnswer4": "Существует несколько причин, из-за которых вы можете получать урон. Во-первых, ночью вам наносят урон ежедневные задания, которые вы не выполнили. Во-вторых, если вы нажимаете на плохую привычку, она наносит вам урон. И, наконец, если вы сражаетесь против босса в команде, и один из ваших сопартийцев не выполнил все свои ежедневные задания, босс вас атакует.\n\nОсновным способ вылечиться является получение уровня, что влечёт за собой восстановление всей шкалы здоровья. Также вы можете купить за золото эликсир здоровья, который находится в столбце наград. Кроме того, начиная с 10 уровня, вы можете выбрать профессию целителя, и тогда вы получите доступ к навыкам, восстанавливающим здоровье. Если у вас в команде есть целитель, он также может вас излечить.", "webFaqAnswer4": "Существует несколько причин, из-за которых вы можете получать урон. Во-первых, ночью вам наносят урон ежедневные задания, которые вы не выполнили. Во-вторых, если вы кликаете по плохой привычке, она наносит вам урон. И, наконец, если вы сражаетесь против босса в команде, и один из ваших сопартийцев не выполнил все свои ежедневные задания, босс вас атакует.\n\nОсновным способ вылечиться является получение уровня, что влечёт за собой восстановление всей шкалы здоровья. Также вы можете купить за золото эликсир здоровья, который находится в столбце наград. Кроме того, начиная с 10 уровня, вы можете выбрать профессию целителя, и тогда вы получите доступ к навыкам, восстанавливающим здоровье. Если у вас в команде (в меню Общение > Команда) есть целитель, он также может вас излечить.", "faqQuestion5": "Как играть вместе с друзьями?", - "iosFaqAnswer5": "The best way is to invite them to a Party with you! Parties can go on quests, battle monsters, and cast skills to support each other. Go to Menu > Party and click \"Create New Party\" if you don't already have a Party. Then tap on the Members list, and tap Invite in the upper right-hand corner to invite your friends by entering their User ID (a string of numbers and letters that they can find under Settings > Account Details on the app, and Settings > API on the website). On the website, you can also invite friends via email, which we will add to the app in a future update.\n\nOn the website, you and your friends can also join Guilds, which are public chat rooms. Guilds will be added to the app in a future update!", + "iosFaqAnswer5": "Лучший способ это пригласить их к себе в Команду! Команды могут выполнять квесты, биться с монстрами и накладывать заклинания, чтобы поддерживать друг друга. Нажмите Меню > Команда и кликните \"Создать новую Команду\" если у вас её ещё нет. Затем нажмите на список членов, и нажмите Пригласить в верхнем правом углу, чтобы пригласить своих друзей, введя их User ID (строка букв и цифр, которую можно найти под Настройками > Аккаунт в мобильном приложении и в Настройках > API на сайте). На сайте, вы также можете пригласить друзей через почту, эту функцию мы добавим в мобильное приложение в будущих обновлениях.\n\nНа сайте, вы и ваши друзья также можете записаться в Гильдии, которые являются открытыми чатрумами. Гильдии будут добавлены в мобильное приложение в будущем обновлении!", "webFaqAnswer5": "Лучший способ — пригласить их в вашу команду с помощью меню Общение > Команда! Команды могут участвовать в квестах, сражаться с монстрами и накладывать заклинания для поддержки друг друга. Также вы вместе можете вступать в гильдии (Общение > Гильдии). Гильдии — это комнаты чата, где участники сконцентрированы на общих интересах или на преследовании общей цели. Вы можете вступать в неограниченное количество гильдий, но состоять только в одной команде.\n

\nБолее подробную информацию вы можете узнать на страницах вики, содержащих информацию о [командах](http://habitrpg.wikia.com/wiki/Party) и [гильдиях](http://habitrpg.wikia.com/wiki/Guilds).", "faqQuestion6": "Как получить питомца или скакуна?", "iosFaqAnswer6": "На третьем уровне вы откроете систему выпадения предметов. Каждый раз, когда вы выполняете задание, есть небольшой шанс на то, что вы получите яйцо, инкубацонный эликсир или еду. Всё это будет храниться в Меню > Инвентарь.\n\nЧтобы выходить питомца, вам понадобится яйцо и инкубационный эликсир. Нажмите на яйцо, чтобы выбрать вид питомца, а потом выберите «инкубировать яйцо». Затем выберите инкубационный эликсир, чтобы задать цвет питомца! Перейдите в Меню > Питомцы и нажмите на вашего нового питомца, чтобы поместить его рядом со своим аватаром.\n\nВы также можете выращивать ваших питомцев до скакунов, скармливая им еду в разделе Меню > Питомцы. Нажмите на питомца, затем выберите «покормить питомца»! Вам придётся кормить питомца много раз, прежде чем он станет скакуном, но если вам удастся вычислить его любимую еду, он будет расти быстрее. Можете придерживаться метода проб и ошибок или же сразу узнать, чем кормить питомца здесь: [спойлер](http://habitica.wikia.com/wiki/Food#Food_Preferences). Как только у вас появится скакун, вы можете перейти в Меню > Скакуны и нажать на него, чтобы ваш аватар его оседлал.\n\nТакже вы можете получить яйца квестовых питомцев в качестве награды за выполнение определённых квестов. (О квестах читайте ниже.)", @@ -28,17 +28,17 @@ "iosFaqAnswer8": "Синяя шкала, которая появилась после того, как вы достилги уровня 10 и выбрали класс — ваш индикатор маны. Продолжая получать уровни, вы начнёте открывать особые навыки, использование которых стоит определенное количество очков маны. У каждого класса свой набор навыков, который открывается после уровня 11 в Меню > Использовать навыки. В отличие от шкалы здоровья, мана не восстанавливается полностью, когда вы получаете уровень. Вместо этого мана растёт, когда вы выполняете хорошие привычки, ежедневные задания и задачи, и убывает, когда вы не отказываете себе в плохих привычках. Также вы восстанавливаете некоторое количество маны ночью — чем больше ежедневных заданий вы выполнили, тем больше маны восстановите за ночь.", "webFaqAnswer8": "Синяя шкала, которая появилась после того, как вы достилги уровня 10 и выбрали класс — ваш индикатор маны. Продолжая получать уровни, вы начнёте открывать особые навыки, использование которых стоит определенное количество очков маны. У каждого класса свой набор навыков, который появляется после уровня 11 в столбце с наградами. В отличие от шкалы здоровья, мана не восстанавливается полностью, когда вы получаете уровень. Вместо этого мана растёт, когда вы выполняете хорошие привычки, ежедневные задания и задачи, и убывает, когда вы не отказываете себе в плохих привычках. Также вы восстанавливаете некоторое количество маны ночью — чем больше ежедневных заданий вы выполнили, тем больше маны восстановите за ночь.", "faqQuestion9": "Как сражаться с монстрами и участвовать в квестах?", - "iosFaqAnswer9": "First, you need to join or start a Party (see above). Although you can battle monsters alone, we recommend playing in a group, because this will make Quests much easier. Plus, having a friend to cheer you on as you accomplish your tasks is very motivating!\n\n Next, you need a Quest Scroll, which are stored under Menu > Items. There are three ways to get a scroll:\n\n - At level 15, you get a Quest-line, aka three linked quests. More Quest-lines unlock at levels 30, 40, and 60 respectively. \n - When you invite people to your Party, you'll be rewarded with the Basi-List Scroll!\n - You can buy Quests from the Quests Page on the [website](https://habitica.com/#/options/inventory/quests) for Gold and Gems. (We will add this feature to the app in a future update.)\n\n To battle the Boss or collect items for a Collection Quest, simply complete your tasks normally, and they will be tallied into damage overnight. (Reloading by pulling down on the screen may be required to see the Boss's health bar go down.) If you are fighting a Boss and you missed any Dailies, the Boss will damage your Party at the same time that you damage the Boss. \n\n After level 11 Mages and Warriors will gain Skills that allow them to deal additional damage to the Boss, so these are excellent classes to choose at level 10 if you want to be a heavy hitter.", + "iosFaqAnswer9": "Прежде всего, вам нужно присоединиться к команде или создать новую (в меню Общение > Команда). Хоть вы и можете сражаться против монстров в одиночку, мы советуем вам играть группой, ведь выполнить Квесты станет гораздо проще. Кроме того, когда у вас есть друзья, которые помогают вам - появляется прекрасная мотивация к действиям!\n\nВам понадобится свиток квеста, который хранится в меню Инвентарь > Квесты. Есть три способа получить свиток:\n\n* Когда вы приглашаете людей вступить в вашу команду, вы награждаетесь свитком Василиста!\n* По достижении уровня 15, вы получаете доступ к квестовой линии, то есть к трём связанным в цепочку квестам. Другие квестовые линии открываются на уровнях 30, 40 и 60, соответственно. \n* Вы можете купить квест на странице квестов [website](https://habitica.com/#/options/inventory/quests) (Инвентарь > Квесты) за золото и самоцветы. (Мы добавим эту функцию в приложение в ближайшее время)\n\nЧтобы принять участие в сражении с боссом или сборе квестовых предметов, просто выполняйте свои задачи так, как вы это обычно делаете, и эффект от них сложится в урон, который вы нанесёте ночью. (Чтобы увидеть изменения в здоровье босса, может потребоваться обновление страницы — для этого потяните экран вниз.) Если при сражении с боссом вы пропустили какие-либо ежедневные задания, босс нанесёт урон всей вашей команде в тот же момент, когда вы ударите босса.\n\nПосле получения 11-го уровня маги и воины приобретают навыки, позволяющие наносить дополнительные повреждения боссу. Если вы хотите стать сильным атакующим, то вам подойдёт один из этих классов при выборе на 10-м уровне.", "webFaqAnswer9": "В первую очередь вам необходимо присоединиться к команде или создать новую (в меню Общение > Команда). Хоть вы и можете сражаться против монстров в одиночку, мы рекомендуем играть в команде, потому что так будет намного проще выполнять квесты. Кроме того, подбадривания от друзей служат прекрасной мотивацией к выполнению заданий!\n

\nДалее вам понадобится свиток квеста, который хранится в меню Инвентарь > Квесты. Есть три способа получить свиток:\n

\n* Когда вы приглашаете людей вступить в вашу команду, вы награждаетесь свитком Василиста!\n* По достижении уровня 15 вы получаете доступ к квестовой линии, то есть к трём связанным в цепочку квестам. Другие квестовые линии открываются на уровнях 30, 40 и 60, соответственно.\n* Вы можете купить квест на странице квестов (Инвентарь > Квесты) за золото и самоцветы.\n

\nЧтобы принять участие в сражении с боссом или сборе квестовых предметов, просто выполняйте свои задачи так, как вы это обычно делаете, и эффект от них сложится в урон, который вы нанесёте ночью. (Чтобы увидеть изменения в здоровье босса, может потребоваться обновление страницы — для этого потяните экран вниз.) Если при сражении с боссом вы пропустили какие-либо ежедневные задания, босс нанесёт урон всей вашей команде в тот же момент, когда вы ударите босса.\n

\nПосле получения 11-го уровня маги и воины приобретают навыки, позволяющие наносить дополнительные повреждения боссу. Если вы хотите стать сильным атакующим, то вам подойдёт один из этих классов при выборе на 10-м уровне.", - "faqQuestion10": "What are Gems, and how do I get them?", + "faqQuestion10": "Что такое Самоцветы и как мне их получить?", "iosFaqAnswer10": "Самоцветы можно приобрести за реальные деньги. Чтобы сделать это, нажмите на иконку самоцвета в шапке приложения. Покупая самоцветы, игроки помогают нам поддерживать сайт в рабочем состоянии. Мы очень признательны им за их поддержку!\n\nКроме способа прямой покупки самоцветов, есть три других способа заработать их: \n\n* Победить в испытании на [веб-сайте](https://habitica.com), которое было создано другим игроком через меню Общение > Испытания. (Мы добавим испытания в приложение в будущем обновлении!) \n* Оформить подписку на [веб-сайте](https://habitica.com/#/options/settings/subscription) и открыть возможность покупать за золото определённое количество самоцветов в месяц. \n* Стать участником и сделать вклад в проект Habitica. Для дополнительной информации посетите эту страницу: [Помощь в развитии Habitica](http://habitica.wikia.com/wiki/Contributing_to_Habitica).\n\nПомните, что предметы, купленные за самоцветы, не дают совершенно никаких преимуществ в статистике, так что игроки могут спокойно пользоваться приложением без них.", "webFaqAnswer10": "Самоцветы можно [приобрести за реальные деньги](https://habitica.com/#/options/settings/subscription), однако [подписчики](https://habitica.com/#/options/settings/subscription) могут приобрести их за золото. Покупая самоцветы, игроки помогают нам поддерживать сайт в рабочем состоянии. Мы очень признательны им за их поддержку!\n

\nКроме способа прямой покупки самоцветов, есть два других способа заработать их:\n

\n* Победить в испытании, которое было создано другим игроком через меню Общение > Испытания. \n* Стать участником и сделать вклад в проект Habitica с помощью своих умений. Для дополнительной информации посетите эту страницу: [Помощь в развитии Habitica](http://habitica.wikia.com/wiki/Contributing_to_Habitica).\n

\nПомните, что предметы, купленные за самоцветы, не дают совершенно никаких преимуществ в статистике, так что игроки могут спокойно пользоваться сайтом без них.", "faqQuestion11": "Как сообщить о проблеме или предложить новую функцию?", "iosFaqAnswer11": "Вы можете сообщить о проблеме, предложить новую функцию или оставить отзыв через Меню > Сообщить о проблеме и Меню > Оставить отзыв! Мы сделаем всё, что в наших силах, чтобы вам помочь.", "webFaqAnswer11": "Мы принимаем отчёты об ошибках на сайте GitHub. Перейдите в [Меню > Сообщить о проблеме](https://github.com/HabitRPG/habitrpg/issues/2760) и следуйте инструкции. Не беспокойтесь, мы очень скоро всё починим!\n

\nПредложения о новых функциях принимаются на сайте Trello. Перейдите в меню [Помощь > Предложить новую функцию](https://trello.com/c/odmhIqyW/440-read-first-table-of-contents) и следуйте инструкции. Та-да!", "faqQuestion12": "Как сражаться с мировым боссом?", - "iosFaqAnswer12": "World Bosses are special monsters that appear in the Tavern. All active users are automatically battling the Boss, and their tasks and skills will damage the Boss as usual.\n\n You can also be in a normal Quest at the same time. Your tasks and skills will count towards both the World Boss and the Boss/Collection Quest in your party.\n\n A World Boss will never hurt you or your account in any way. Instead, it has a Rage Bar that fills when users skip Dailies. If its Rage bar fills, it will attack one of the Non-Player Characters around the site and their image will change.\n\n You can read more about [past World Bosses](http://habitica.wikia.com/wiki/World_Bosses) on the wiki.", - "webFaqAnswer12": "World Bosses are special monsters that appear in the Tavern. All active users are automatically battling the Boss, and their tasks and skills will damage the Boss as usual.\n

\n You can also be in a normal Quest at the same time. Your tasks and skills will count towards both the World Boss and the Boss/Collection Quest in your party.\n

\n A World Boss will never hurt you or your account in any way. Instead, it has a Rage Bar that fills when users skip Dailies. If its Rage bar fills, it will attack one of the Non-Player Characters around the site and their image will change.\n

\n You can read more about [past World Bosses](http://habitica.wikia.com/wiki/World_Bosses) on the wiki.", + "iosFaqAnswer12": "Всемирные Боссы - это особые монстры, которые появляются в Таверне. Все активные игроки автоматически начинают сражение с Боссом, и их задачи и умения наносят повреждения Боссу, так же, как и обычно.\n\nТакже вы можете брать обычные Квесты, в тоже самое время, когда сражаетесь с Всемирным Боссом. Ваши задачи и умения будут влиять и на Всемирного Босса, и на Босса\\Квест в вашей команде.\n\nВсемирный Босс никогда не побьёт вас лично, и не сломает ваш аккаунт. Но у него есть индикатор Ярости, который заполняется, когда игроки пропускают ежедневные задания. Если Ярость Босса достигнет предела, он злобно нападёт на одного из неигровых жителей славной Хабитики, и тому придётся настолько несладко, что сменится даже его внешний облик.\n\nВы можете почитать о [приходивших Всемирных Боссах](http://habitica.wikia.com/wiki/World_Bosses) в нашей вики.", + "webFaqAnswer12": "Всемирные Боссы - это особые монстры, которые появляются в Таверне. Все активные игроки автоматически начинают сражение с Боссом, и их задачи и умения наносят повреждения Боссу, так же, как и обычно.\n\nТакже вы можете брать обычные Квесты, в тоже самое время, когда сражаетесь с Всемирным Боссом. Ваши задачи и умения будут влиять и на Всемирного Босса, и на Босса\\Квест в вашей команде.\n\nВсемирный Босс никогда не побьёт вас лично, и не сломает ваш аккаунт. Но у него есть индикатор Ярости, который заполняется, когда игроки пропускают ежедневные задания. Если Ярость Босса достигнет предела, он злобно нападёт на одного из неигровых жителей славной Хабитики, и тому придётся настолько несладко, что сменится даже его внешний облик.\n\nВы можете почитать о [приходивших Всемирных Боссах](http://habitica.wikia.com/wiki/World_Bosses) в нашей вики.", "iosFaqStillNeedHelp": "Если у вас возник вопрос, которого нет в этом списке, приходите и задайте его в чате Таверны в Меню > Таверна! Мы будем рады помочь.", "webFaqStillNeedHelp": "Если у вас возник вопрос, которого нет в этом списке, приходите и задайте его в [гильдии новичков](https://habitica.com/#/options/groups/guilds/5481ccf3-5d2d-48a9-a871-70a7380cee5a)! Мы будем рады помочь." } \ No newline at end of file diff --git a/common/locales/ru/front.json b/common/locales/ru/front.json index 6b24834f9d..fcd10f31c2 100644 --- a/common/locales/ru/front.json +++ b/common/locales/ru/front.json @@ -74,7 +74,7 @@ "infhQuote": "[Habitica] действительно помогла мне организовать структурный подход к своей жизни во время учёбы в аспирантуре.", "invalidEmail": "Для изменения пароля необходимо указать существующий адрес электронной почты.", "irishfeet123Quote": "У меня была ужасная привычка не мыть за собой посуду после еды и оставлять везде кружки. [Habitica] полностью меня исправила!", - "joinOthers": "Join <%= userCount %> people making it fun to achieve goals!", + "joinOthers": "Присоединяйтесь к <%= userCount %> человек, которые превращают достижение целей в веселье!", "kazuiQuote": "До [Habitica] работа с моей диссертацией никак не продвигалась. Кроме того, вызывала недовольство моя недисциплинированность в отношении домашних дел и таких задач, как изучение новых слов и обучение игре Го. Оказывается, разбивка этих задач на списки из небольших подзаданий – как раз то, что мне нужно, чтобы сохранять мотивацию и постоянную работоспособность.", "landingadminlink": "административные пакеты,", "landingend": "Еще не уверены?", @@ -180,13 +180,13 @@ "merchandiseInquiries": "Предложения по использованию торговой марки", "marketingInquiries": "Предложения по маркетингу и рекламе в соц. сетях", "tweet": "Твитнуть", - "apps": "Apps", - "notifyAndroidApp": "Want us to notify you when the Android app is ready? Sign up for this mailing list!", - "checkOutIOSApp": "Check out our new iOS App!", - "imagine1": "Imagine if improving your life were as fun as playing a game.", - "landingCopy1": "Advance in the game by completing your real-life tasks.", - "landingCopy2": "Battle monsters with friends to stay accountable to your goals.", - "landingCopy3": "Join over <%= userCount %> people having fun as they improve their lives.", + "apps": "Мобильные приложения", + "notifyAndroidApp": "Хотите, чтобы мы уведомили вас, когда будет готово Android приложение? Подпишитесь на эту рассылку!", + "checkOutIOSApp": "Попробуйте наше новое iOS приложение!", + "imagine1": "Представьте, что улучшать вашу жизнь так же весело, как играть в игру.", + "landingCopy1": "Прогрессируй в игре, завершая задачи в реальной жизни.", + "landingCopy2": "Сражайтесь с монстрами совместно с друзьями, чтобы быть ответственнее за свои цели.", + "landingCopy3": "Нас уже <%= userCount %>, кто получает удовольствие от улучшения своей жизни.", "alreadyHaveAccount": "У меня уже есть аккаунт!", - "getStartedNow": "Get Started Now!" + "getStartedNow": "Начните сейчас!" } \ No newline at end of file diff --git a/common/locales/ru/gear.json b/common/locales/ru/gear.json index 247560bb64..f6c7a6d53c 100644 --- a/common/locales/ru/gear.json +++ b/common/locales/ru/gear.json @@ -149,15 +149,19 @@ "weaponArmoireRancherLassoText": "Ковбойское лассо", "weaponArmoireRancherLassoNotes": "Лассо: идеальный инструмент для контролирования пасущегося стада. Увеличивает силу на<%= str %>, восприятие на <%= per %> и интеллект на <%= int %>. Волшебный сундук: Комплект ковбоя (предмет 3 из 3).", "weaponArmoireMythmakerSwordText": "Меч Мифотворца", - "weaponArmoireMythmakerSwordNotes": "Хотя этот меч может показаться простым, он сделал многих героев легендарными. Увеличивает восприятие и силу на <%= attrs %>. Волшебный сундук: Набор Золотой тоги (Предмет 3 из 3).", + "weaponArmoireMythmakerSwordNotes": "Though it may seem humble, this sword has made many mythic heroes. Increases Perception and Strength by <%= attrs %> each. Enchanted Armoire: Golden Toga Set (Item 3 of 3).", "weaponArmoireIronCrookText": "Железный крюк", - "weaponArmoireIronCrookNotes": "Отчаянно выплавленный из железа, этот крюк прекрасно подходит для пастьбы овец. Увеличивает восприятие и силу на <%= attrs %>. Волшебный сундук: Набор Рогатого железа (Предмет 3 из 3).", + "weaponArmoireIronCrookNotes": "Fiercely hammered from iron, this iron crook is good at herding sheep. Increases Perception and Strength by <%= attrs %> each. Enchanted Armoire: Horned Iron Set (Item 3 of 3).", "weaponArmoireGoldWingStaffText": "Посох Золотого Крыла", "weaponArmoireGoldWingStaffNotes": "Крылья на этом посохе постоянно трепещут и выгибаются. Увеличивает все характеристики на <%= attrs %>. Зачаровання коллекция: независимый предмет.", "weaponArmoireBatWandText": "Волшебная па... Дубина!", "weaponArmoireBatWandNotes": "Эта волшебная палочка может превратить любое задание в летучую мышь! Просто размахивайте ей и смотрите, как задания разлетаются во все стороны. Увеличивает интеллект на <%= int %> и восприятие на <%= per %>. Волшебный сундук: независимый предмет.", - "weaponArmoireShepherdsCrookText": "Shepherd's Crook", - "weaponArmoireShepherdsCrookNotes": "Useful for herding gryphons. Increases Constitution by <%= con %>. Enchanted Armoire: Shepherd Set (Item 1 of 3).", + "weaponArmoireShepherdsCrookText": "Пастуший Посох", + "weaponArmoireShepherdsCrookNotes": "Полезно для выпаса грифонов. Увеличивает Телосложение на by <%= con %>. Волшебный Сундук: Комплект Пастуха (1предмет из 3).", + "weaponArmoireCrystalCrescentStaffText": "Crystal Crescent Staff", + "weaponArmoireCrystalCrescentStaffNotes": "Summon the power of the crescent moon with this shining staff! Increases Intelligence and Strength by <%= attrs %> each. Enchanted Armoire: Crystal Crescent Set (Item 3 of 3).", + "weaponArmoireBlueLongbowText": "Blue Longbow", + "weaponArmoireBlueLongbowNotes": "Ready... Aim... Fire! This bow has great range. Increases Perception by 9, Constitution by 8, and Strength by 7. Enchanted Armoire: Independent Item.", "armor": "Броня", "armorBase0Text": "Обычная одежда", "armorBase0Notes": "Обычная одежда. Бонусов не дает.", @@ -222,7 +226,7 @@ "armorSpecialBirthday2015Text": "Мантия праздника абсурда", "armorSpecialBirthday2015Notes": "С днём рождения, Habitica! Примерьте эти нелепые наряды, чтобы отпраздновать этот замечательный день. Бонусов не дает.", "armorSpecialGaymerxText": "Радужные доспехи воина", - "armorSpecialGaymerxNotes": "Эти доспехи выкрашены в яркие радужные цвета в честь празднования эпохи процветания и GaymerX. GaymerX это интернациональная игровая конвенция, поддерживающая ЛГБТ-сообщества и видео игры, она открыта каждому. Она проходит в центре Сан-Франциско 11-13 июля. Бонусов не дает.", + "armorSpecialGaymerxNotes": "In celebration of the GaymerX Conference, this special armor is decorated with a radiant, colorful rainbow pattern! GaymerX is a game convention celebrating LGTBQ and gaming and is open to everyone.", "armorSpecialSpringRogueText": "Блестящий кошачий костюм", "armorSpecialSpringRogueNotes": "Безукоризненно ухоженный. Увеличивает восприятие на <%= per %>. Экипировка ограниченного выпуска весны 2014.", "armorSpecialSpringWarriorText": "Доспехи из клеверной стали", @@ -274,11 +278,11 @@ "armorSpecialFall2015RogueText": "Бое-Вой Доспех", "armorSpecialFall2015RogueNotes": "Ворвись в Бит-ву! Увеличивает Восприятие на <%= per %>. Ограниченный Выпуск 2015 Осеннее Снаряжение.", "armorSpecialFall2015WarriorText": "Доспех Пугала", - "armorSpecialFall2015WarriorNotes": "Despite being stuffed with straw, this armor is extremely hefty! Increases Constitution by <%= con %>. Limited Edition 2015 Autumn Gear.", + "armorSpecialFall2015WarriorNotes": "Эта броня, несмотря на то, что набита соломой, крайне тяжела! Увеличивает Телосложение на <%= con %>. Экипировка ограниченного выпуска осени 2015.", "armorSpecialFall2015MageText": "Клочковатая Роба", - "armorSpecialFall2015MageNotes": "Every stitch in this armor shimmers with enchantment. Increases Intelligence by <%= int %>. Limited Edition 2015 Autumn Gear.", + "armorSpecialFall2015MageNotes": "Каждый шов в этих доспехах мерцает волшебством. Увеличивает Интеллект на <%= int %>. Экипировка ограниченного выпуска осени 2015.", "armorSpecialFall2015HealerText": "Облачение знахаря", - "armorSpecialFall2015HealerNotes": "What? Of course that was a potion of constitution. No, you are definitely not turning into a frog! Don't be ribbiticulous. Increases Constitution by <%= con %>. Limited Edition 2015 Autumn Gear.", + "armorSpecialFall2015HealerNotes": "Что? Конечно, это был эликсир Телосложения. Нет, ты совершенно точно НЕ превращаешься в жабу! Не квакай больше. Увеличивает Телосложение на <%= con %>. Экипировка ограниченного выпуска осени 2015.", "armorMystery201402Text": "Облачение посланника", "armorMystery201402Notes": "Сверкающая и крепкая, эта броня снабжена большим количеством карманов для переноски писем. Бонусов не дает. Подарок подписчикам февраля 2014.", "armorMystery201403Text": "Доспехи лесовика", @@ -308,7 +312,9 @@ "armorMystery201508Text": "Костюм гепарда", "armorMystery201508Notes": "Станьте быстрым как молния, наденьте пушистый костюм гепарда. Бонусов не дает. Подарок подписчикам августа 2015.", "armorMystery201509Text": "Костюм Оборотня", - "armorMystery201509Notes": "This IS a costume, right? Confers no benefit. September 2015 Subscriber Item.", + "armorMystery201509Notes": "Это же и ЕСТЬ костюм, так? Бонусов не даёт. Подарок подписчикам сентября 2015.", + "armorMystery201511Text": "Wooden Armor", + "armorMystery201511Notes": "Considering this armor was carved directly from a magical log, it's surprisingly comfortable. Confers no benefit. November 2015 Subscriber Item.", "armorMystery301404Text": "Стимпанковский костюм", "armorMystery301404Notes": "Чудной и лихой! Бонусов не дает. Подарок подписчикам февраля 3015.", "armorArmoireLunarArmorText": "Лунные доспехи успокоения", @@ -323,10 +329,12 @@ "armorArmoireHornedIronArmorNotes": "Отчаянно выплавленные из железа, эти рогатые доспехи почти невозможно сломать. Увеличивает телосложение на <%= con %> и восприятие на <%= per %>. Волшебный сундук: Набор Рогатого железа (Предмет 2 из 3).", "armorArmoirePlagueDoctorOvercoatText": "Плащ чумного доктора", "armorArmoirePlagueDoctorOvercoatNotes": "Такие плащи носили доктора, боровшиеся с Чумой Прокрастинации. Увеличивает интеллект на <%= int %>, силу на <%= str %> и телосложение на <%= con %>. Зачарованная коллекция: Набор чумного доктора (3 из 3 предметов).", - "armorArmoireShepherdRobesText": "Shepherd Robes", - "armorArmoireShepherdRobesNotes": "The fabric is cool and breathable, perfect for a hot day herding gryphons in the desert. Increases Strength and Perception by <%= attrs %> each. Enchanted Armoire: Shepherd Set (Item 2 of 3).", - "armorArmoireRoyalRobesText": "Royal Robes", - "armorArmoireRoyalRobesNotes": "Wonderful ruler, rule all day long! Increases Constitution, Intelligence, and Perception by <%= attrs %> each. Enchanted Armoire: Royal Set (Item 3 of 3).", + "armorArmoireShepherdRobesText": "Одеяния пастуха", + "armorArmoireShepherdRobesNotes": "Ткань лёгкая и пропускает воздух, идеально для того, чтобы пасти грифонов в жаркий день в пустыне. Увеличивает Силу и Восприятие на <%= attrs %>. Волшебный Сундук: Комплект Пастуха (2 предмет из 3).", + "armorArmoireRoyalRobesText": "Королевские Одеяния", + "armorArmoireRoyalRobesNotes": "Чудесный правитель, царствуйте весь день подряд! Увеличивает Телосложение, Интеллект и Восприятие на <%= attrs %>. Волшебный сундук: Королевский Комплект (предмет 3 из 3).", + "armorArmoireCrystalCrescentRobesText": "Crystal Crescent Robes", + "armorArmoireCrystalCrescentRobesNotes": "These magical robes are luminescent at night. Increases Constitution and Perception by <%= attrs %> each. Enchanted Armoire: Crystal Crescent Set (Item 2 of 3).", "headgear": "Головной убор", "headBase0Text": "Нет шлема", "headBase0Notes": "Нет головного убора.", @@ -439,15 +447,15 @@ "headSpecialSummer2015HealerText": "Шляпа Морехода", "headSpecialSummer2015HealerNotes": "Надев эту шляпу вы не пропадете даже в самый страшный шторм. Увеличивает Интеллект на <%= int %>. Экипировка ограниченного выпуска лета 2015.", "headSpecialFall2015RogueText": "Бое-Вые Крылья", - "headSpecialFall2015RogueNotes": "Echolocate your enemies with this powerful helm! Increases Perception by <%= per %>. Limited Edition 2015 Autumn Gear.", + "headSpecialFall2015RogueNotes": "Ваши враги будут найдены с помощью этой мощной шляпы-эхолота! Увеличивает Телосложение на <%= per %>. Экипировка ограниченного выпуска осени 2015.", "headSpecialFall2015WarriorText": "Шапка Пугала", - "headSpecialFall2015WarriorNotes": "Everyone would want this hat--if they only had a brain. Increases Strength by <%= str %>. Limited Edition 2015 Autumn Gear.", + "headSpecialFall2015WarriorNotes": "Все бы хотели эту шляпу... Если бы у них были мозги. Увеличивает силу на <%= str %>. Экипировка ограниченного выпуска осени 2015.", "headSpecialFall2015MageText": "Клочковатая Шапка", - "headSpecialFall2015MageNotes": "Every stitch in this hat augments its power. Increases Perception by <%= per %>. Limited Edition 2015 Autumn Gear.", + "headSpecialFall2015MageNotes": "Каждый шов в этой шляпе прибавляет ей мощи. Увеличивает Восприятие на <%= per %>. Экипировка ограниченного выпуска осени 2015.", "headSpecialFall2015HealerText": "Шапка Лякухи", - "headSpecialFall2015HealerNotes": "This is an extremely serious hat that is worthy of only the most advanced potioners. Increases Intelligence by <%= int %>. Limited Edition 2015 Autumn Gear.", + "headSpecialFall2015HealerNotes": "Это чрезвычайно серьезная шляпа, которая достойна только самых передовых зельеваров. Увеличивает Интеллект на <%= int %>. Экипировка ограниченного выпуска осени 2015.", "headSpecialGaymerxText": "Радужный шлем воина.", - "headSpecialGaymerxNotes": "Этот шлем выкрашен в яркие радужные цвета в честь празднования эпохи процветания и GaymerX. GaymerX это интернациональная игровая конвенция, поддерживающая ЛГБТ-сообщества и видео игры, она открыта каждому. Она проходит в центре Сан-Франциско 11-13 июля.Бонусов не дает.", + "headSpecialGaymerxNotes": "In celebration of the GaymerX Conference, this special helmet is decorated with a radiant, colorful rainbow pattern! GaymerX is a game convention celebrating LGTBQ and gaming and is open to everyone.", "headMystery201402Text": "Шлем с крыльями", "headMystery201402Notes": "Этот крылатый венец наделяет носителя скоростью ветра! Бонусов не дает. Подарок подписчикам февраля 2014.", "headMystery201405Text": "Пламенный ум", @@ -469,7 +477,9 @@ "headMystery201508Text": "Шляпа гепарда", "headMystery201508Notes": "Уютная пушистая гепардовая шляпа! Бонусов не даёт. Предмет подписчика августа 2015.", "headMystery201509Text": "Маска Оборотня", - "headMystery201509Notes": "This IS a mask, right? Confers no benefit. September 2015 Subscriber Item.", + "headMystery201509Notes": "Это же и ЕСТЬ маска, так? Бонусов не даёт. Подарок подписчикам сентября 2015.", + "headMystery201511Text": "Log Crown", + "headMystery201511Notes": "Count the number of rings to learn how old this crown is. Confers no benefit. November 2015 Subscriber Item.", "headMystery301404Text": "Модный цилиндр", "headMystery301404Notes": "Модный цилиндр для самых уважаемых господ! Подарок подписчикам января 3015. Бонусов не дает.", "headMystery301405Text": "Обычный цилиндр", @@ -487,7 +497,7 @@ "headArmoireBlueHairbowText": "Синий бант", "headArmoireBlueHairbowNotes": "Станьте восприимчивым, стойким и находчивым, надев этот превосходный синий бант! Увеличивает восприятие на <%= per %>, телосложение на <%= con %> и интеллект на <%= int %>. Волшебный сундук: независимый предмет.", "headArmoireRoyalCrownText": "Королевская корона", - "headArmoireRoyalCrownNotes": "Hooray for the ruler, mighty and strong! Increases Strength by <%= str %>. Enchanted Armoire: Royal Set (Item 1 of 3).", + "headArmoireRoyalCrownNotes": "Слава правителю, сильному и могучему! Увеличивает Силу на <%= str %>. Волшебный сундук: Королевский Комплект (предмет 1 из 3).", "headArmoireGoldenLaurelsText": "Золотые лавры", "headArmoireGoldenLaurelsNotes": "Этими золотыми лаврами награждаются те, кто сумел покорить свои вредные привычки. Увеличивают восприятие и телосложение на <%= attrs %>. Волшебный сундук: набор золотой тоги (предмет 2 из 3).", "headArmoireHornedIronHelmText": "Шлем Рогатого железа", @@ -499,13 +509,15 @@ "headArmoirePlagueDoctorHatText": "Шляпа чумного доктора", "headArmoirePlagueDoctorHatNotes": "Аутентичная шляпа, которую носят доктора, борющиеся против чумы прокрастинации! Увеличивает силу на <%= str %>, интеллект на <%= int%> и телосложение на <%= con %>. Волшебный сундук: набор чумного доктора (предмет 1 из 3).", "headArmoireBlackCatText": "Шапка Чёрного Кота", - "headArmoireBlackCatNotes": "This black hat is... purring. And twitching its tail. And breathing? Yeah, you just have a sleeping cat on your head. Increases Intelligence and Perception by <%= attrs %> each. Enchanted Armoire: Independent Item.", + "headArmoireBlackCatNotes": "Эта чёрная шляпа... мурлыкает. И подёргивает хвостом. И дышит? Ага, на вашей голове просто спит кот. Увеличивает Интеллект и Восприятие на <%= attrs %>. Волшебный сундук: самостоятельный предмет.", "headArmoireOrangeCatText": "Шапка Оранжевого Кота", - "headArmoireOrangeCatNotes": "This orange hat is... purring. And twitching its tail. And breathing? Yeah, you just have a sleeping cat on your head. Increases Strength and Constitution by <%= attrs %> each. Enchanted Armoire: Independent Item.", - "headArmoireBlueFloppyHatText": "Blue Floppy Hat", - "headArmoireBlueFloppyHatNotes": "Many spells have been sewn into this simple hat, giving it a brilliant blue color. Increases Constitution, Intelligence, and Perception by <%= attrs %> each. Enchanted Armoire: Independent Item.", - "headArmoireShepherdHeaddressText": "Shepherd Headdress", - "headArmoireShepherdHeaddressNotes": "Sometimes the gryphons that you herd like to chew on this headdress, but it makes you seem more intelligent nonetheless. Increases Intelligence by <%= int %>. Enchanted Armoire: Shepherd Set (Item 3 of 3).", + "headArmoireOrangeCatNotes": "Эта оранжевая шляпа... мурлыкает. И подёргивает хвостом. И дышит? Ага, на вашей голове просто спит кот. Увеличивает Силу и Телосложение на <%= attrs %>. Волшебный сундук: самостоятельный предмет.", + "headArmoireBlueFloppyHatText": "Синяя Широкополая шляпа", + "headArmoireBlueFloppyHatNotes": "Многие заклинания были зашиты в эту простенькую шляпу, придавая ей искрящийся голубой цвет. Увеличивает Телосложение, Интеллект и Восприятие на <%= attrs %> каждый. Волшебный сундук: самостоятельный предмет.", + "headArmoireShepherdHeaddressText": " Головной убор Пастуха", + "headArmoireShepherdHeaddressNotes": "Иногда грифоны, которых вы пасёте, грызут этот головной убор, но несмотря на это, он придаёт вам умный вид. Увеличивает Интеллект на <%= int %>. Волшебный сундук: Комплект Пастуха (предмет 3 из 3).", + "headArmoireCrystalCrescentHatText": "Crystal Crescent Hat", + "headArmoireCrystalCrescentHatNotes": "The design on this hat waxes and wanes with the phases of the moon. Increases Intelligence and Perception by <%= attrs %> each. Enchanted Armoire: Crystal Crescent Set (Item 1 of 3).", "offhand": "предмет для защитной руки", "shieldBase0Text": "Нет снаряжения для защитной руки", "shieldBase0Notes": "Нет щита или второго оружия.", @@ -580,7 +592,7 @@ "shieldSpecialFall2015RogueText": "Бое-Вой Топор", "shieldSpecialFall2015RogueNotes": "Устрашающие задания трусливо прячутся при виде взмахов этим топором. Увеличивает силу на <%= str %>. Экипировка ограниченного выпуска осени 2015.", "shieldSpecialFall2015WarriorText": "Сумка Птичьих Семян", - "shieldSpecialFall2015WarriorNotes": "It's true that you're supposed to be SCARING the crows, but there's nothing wrong with making friends! Increases Constitution by <%= con %>. Limited Edition 2015 Autumn Gear.", + "shieldSpecialFall2015WarriorNotes": "Это, конечно, правда, что вы должны быть ПУГАЛОМ и пугать ворон, но нет ничего плохого в том, чтобы с ними подружиться! Увеличивает Телосложение на <%= con %>. Экипировка ограниченного выпуска осени 2015.", "shieldSpecialFall2015HealerText": "Палка Для Помешиваня", "shieldSpecialFall2015HealerNotes": "Эта палка может помешивать всё без таяния, растворения, или воспламенения! Она может быть также использована что-бы яростно тыкать в задачи врага. Увеличивает Телосложение на <%= con %>. Ограниченный Выпуск Осеннего Снаряжения 2015.", "shieldMystery301405Text": "Часовой Щит", @@ -589,8 +601,8 @@ "shieldArmoireGladiatorShieldNotes": "Чтобы быть гладиатором, вы должны... а хотя, все равно, просто оглушайте врагов своим щитом. Увеличивает Телосложение на <%= con %> и Силу на <%= str %>. Волшебный сундук: Набор Гладиатора (Часть 3 из 3).", "shieldArmoireMidnightShieldText": "Полуночный Щит", "shieldArmoireMidnightShieldNotes": "Этот щит имеет самую большую мощь в самую полночь! Повышает Телосложение на <%= con %> и Силу на <%= str %>. Зачарованный Доспех: Независимый предмет.", - "shieldArmoireRoyalCaneText": "Royal Cane", - "shieldArmoireRoyalCaneNotes": "Hooray for the ruler, worthy of song! Increases Constitution, Intelligence, and Perception by <%= attrs %> each. Enchanted Armoire: Royal Set (Item 2 of 3).", + "shieldArmoireRoyalCaneText": "Королевская Трость", + "shieldArmoireRoyalCaneNotes": "Слава правителю, достойному хвалебных песен! Увеличивает Телосложение, Интеллект и Восприятие на <%= attrs %>. Королевский Комплект (предмет 2 из 3).", "back": "Аксессуар на спину", "backBase0Text": "Нет аксессуаров на спине", "backBase0Notes": "Нет аксессуаров на спине.", @@ -605,7 +617,7 @@ "backMystery201507Text": "Крутая доска для сёрфинга", "backMystery201507Notes": "Прокатитесь по волнам от причала Прилежности до бухты Незавершённости! Бонусов не даёт. Подарок подписчикам в июле 2015 года.", "backMystery201510Text": "Хвост гоблина", - "backMystery201510Notes": "Prehensile and powerful! Confers no benefit. October 2015 Subscriber Item.", + "backMystery201510Notes": "Хваткий и мощный! Бонусов не даёт. Подарок подписчикам октября 2015.", "backSpecialWonderconRedText": "Могущественный плащ", "backSpecialWonderconRedNotes": "Развевается мощно и красиво. Бонусов не дает. Предмет специального фестивального выпуска.", "backSpecialWonderconBlackText": "Тайный плащ", @@ -677,7 +689,7 @@ "headAccessoryMystery201502Text": "Крылья раздумий", "headAccessoryMystery201502Notes": "Позвольте своему воображению унести вас в мир грез! Бонусов не дает. Подарок подписчикам в феврале 2015.", "headAccessoryMystery201510Text": "Рога гоблина", - "headAccessoryMystery201510Notes": "These fearsome horns are slightly slimy. Confers no benefit. October 2015 Subscriber Item.", + "headAccessoryMystery201510Notes": "Эти грозные рога немного склизкие. Бонусов не даёт. Подарок подписчикам октября 2015.", "headAccessoryMystery301405Text": "Очки на голове", "headAccessoryMystery301405Notes": "\"Защищать очками надо глаза,\" говорили они. \"Кому сдались защитные очки на макушке,\" говорили они. Ха! Вы им показали! Подарок подписчикам августа 3015. Бонусов не дает.", "eyewear": "Очки", diff --git a/common/locales/ru/generic.json b/common/locales/ru/generic.json index 85b8df6f4a..5156c4cfde 100644 --- a/common/locales/ru/generic.json +++ b/common/locales/ru/generic.json @@ -69,9 +69,9 @@ "habiticaDayPluralText": "Участвовал в праздновании Дня Наречения Habitica <%= number %> раз! Благодарность замечательному пользователю.", "achievementDilatory": "Спаситель Промедления", "achievementDilatoryText": "Помог(ла) уничтожить Повелителя Откладываемых-На-Завтра Заданий в дни Летнего Всплеска 2014.", - "costumeContest": "Costume Contestant", - "costumeContestText": "Participated in the Habitoween Costume Contest. See some of the entries on the Habitica blog!", - "costumeContestTextPlural": "Participated in <%= number %> Habitoween Costume Contests. See some of the entries on the Habitica blog!", + "costumeContest": "Участник Конкурса Костюмов", + "costumeContestText": "Участвовал(а) в ", + "costumeContestTextPlural": "Участвовал(а) в <%= number %> Конкурсах Костюмов в честь Хэллоуина. Заходите посмотреть записи в блоге Habitica!", "memberSince": "- Участник с", "lastLoggedIn": "- Последний вход", "notPorted": "Эта функция еще не перенесена со старого сайта.", @@ -136,16 +136,16 @@ "thankyou3": "Я очень признателен. Спасибо тебе!", "thankyouCardAchievementTitle": "Благодарный", "thankyouCardAchievementText": "Спасибо за спасибо! Отправлено или получено <%= cards %> Благодарственных писем.", - "streakAchievement": "You earned a streak achievement!", - "firstStreakAchievement": "21-Day Streak", - "streakAchievementCount": "<%= streaks %> 21-Day Streaks", - "twentyOneDays": "You've completed your Daily for 21 days in a row!", - "dontBreakStreak": "Amazing job. Don't break the streak!", + "streakAchievement": "Вы заработали достижение Серии!", + "firstStreakAchievement": "21-дневная Серия", + "streakAchievementCount": "<%= streaks %> 21-дневные Серии", + "twentyOneDays": "Вы завершали свои Ежедневные задания 21 день подряд!", + "dontBreakStreak": "Поразительная работа. Не прервите серию!", "dontStop": "Не останавливайся сейчас!", - "levelUpShare": "I leveled up in Habitica by improving my real-life habits!", + "levelUpShare": "Мой уровень в Habitica повышен благодаря улучшению привычек в реальной жизни!", "questUnlockShare": "Я разблокировал новый квест в Habitica!", - "hatchPetShare": "I hatched a new pet by completing my real-life tasks!", - "raisePetShare": "I raised a pet into a mount by completing my real-life tasks!", + "hatchPetShare": "У меня вылупился новый питомец благодаря завершению заданий в реальной жизни!", + "raisePetShare": "Мой питомец вырос в скакуна благодаря завершению заданий в реальной жизни!", "wonChallengeShare": "Я выиграл испытание в Habitica!", "achievementShare": "Я получил новое достижение в Habitica!" } \ No newline at end of file diff --git a/common/locales/ru/groups.json b/common/locales/ru/groups.json index f734287af4..fb41ac7603 100644 --- a/common/locales/ru/groups.json +++ b/common/locales/ru/groups.json @@ -3,7 +3,7 @@ "innCheckOut": "Покинуть гостиницу", "innCheckIn": "В гостиницу", "innText": "Вы отдыхаете в Гостинице! Пропущенные Ежедневные задания не будут причинять вам вреда в конце дня, но отметки об их выполнении будут сбрасываться каждый день. Будьте осторожны: если ваша команда сражается с Боссом, он все же будет наносить вам урон за Ежедневные задания, пропущенные вашими товарищами, если только они также не в гостинице! Кроме того, нанесенный вами урон Боссу или найденные предметы не будут зарегистрированы, пока вы не покинете Гостиницу.", - "innTextBroken": "You're resting in the Inn, I guess... While checked-in, your Dailies won't hurt you at the day's end, but they will still refresh every day... 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... so tired...", + "innTextBroken": "Вы отдыхаете в Гостинице, я так полагаю... Пропущенные Ежедневные задания не будут причинять вам вреда в конце дня, но отметки об их выполнении будут сбрасываться каждый день... Если вы участвуете в квесте с Боссом, он все же будет наносить вам урон за ежедневные задания, пропущенные вашими товарищами... Если только они не тоже находятся в Гостинице... Также, нанесённый вами урон Боссу (или найденные предметы) не будут засчитаны, пока вы не выпишитесь из Гостиницы... так устал...", "lfgPosts": "Объявления о поиске команды", "tutorial": "Обучение", "glossary": "Терминология", @@ -147,5 +147,5 @@ "partyChatEmpty": "Чат вашей команды пустует! Наберите сообщение в поле сверху, чтобы начать общаться.", "guildChatEmpty": "Чат этой гильдии пустует! Наберите сообщение в поле сверху, чтобы начать общаться.", "possessiveParty": "Команда игрока <%= name %>.", - "requestAcceptGuidelines": "If you would like to post messages in the Tavern or any party or guild chat, please first read our <%= linkStart %>Community Guidelines<%= linkEnd %> and then click the button below to indicate that you accept them." + "requestAcceptGuidelines": "Если вы хотите оставить сообщение в Таверне или в чате любой гильдии, сперва прочитайте Принципы Сообщества и нажмите кнопку \"Принять Принципы\" внизу. Это будет означать, что вы их принимаете и обязуетесь выполнять." } \ No newline at end of file diff --git a/common/locales/ru/limited.json b/common/locales/ru/limited.json index 8d20ef0608..d9957b3c98 100644 --- a/common/locales/ru/limited.json +++ b/common/locales/ru/limited.json @@ -21,6 +21,7 @@ "valentineCardAchievementText": "Как это мило! Вы так внимательны друг к другу! Отправлено или получено <%= cards %> валентинок.", "polarBear": "Белый медведь", "turkey": "Индейка", + "gildedTurkey": "Gilded Turkey", "polarBearPup": "Детеныш белого медведя", "jackolantern": "Тыквенная лампа", "seasonalShop": "Сезонная лавка", @@ -30,7 +31,7 @@ "seasonalShopText": "Добро пожаловать в Сезонную лавку! Сейчас мы предлагаем товары весеннего сезонного выпуска. Товары будут доступны ежегодно в дни Весенней Веселухи, но мы открыты только до 30 апреля, так что спешите закупиться сейчас, иначе придется ждать целый год!", "seasonalShopSummerText": "Добро пожаловать в Сезонную лавку! Сейчас мы предлагаем товары летнего сезонного выпуска. Товары будут доступны ежегодно в дни Летнего Всплеска, но мы открыты только до 31 июля, так что спешите закупиться сейчас, иначе придется ждать целый год!", "seasonalShopFallText": "Добро пожаловать в Сезонную лавку! Сейчас мы предлагаем товары осеннего сезонного выпуска. Товары будут доступны ежегодно во время Осеннего Фестиваля, но только до 31 октября, так что спешите закупиться сейчас, иначе придется ждать целый год!", - "seasonalShopFallTextBroken": "Oh.... Welcome to the Seasonal Shop... We're stocking autumn Seasonal Edition goodies, or something... Everything here will be available to purchase during the Fall Festival event each year, but we're only open until October 31... I guess you should to stock up now, or you'll have to wait... and wait... and wait... *sigh*", + "seasonalShopFallTextBroken": "Ох... Добро пожаловать в Сезонную Лавку... Мы предлагаем товары осеннего Сезонного выпуска, или что-то такое... Всё, что есть здесь, будет ежегодно доступно для покупки на протяжении Осеннего Фестиваля, но мы открыты только до 31 Октября... Я полагаю, вам стоит закупиться сейчас, либо придётся ждать... и ждать... и ждать... *вздох*", "seasonalShopRebirth": "Использовав шар возрождения, вы сможете повторно купить это снаряжение в колонке наград. Поначалу вы сможете купить только предметы для вашего текущего класса (класс по умолчанию – воин), но не волнуйтесь: после смены класса вам станут доступны другие классовые предметы.", "candycaneSet": "Карамельная палочка (Маг)", "skiSet": "Лыжник-ассасин (Разбойник)", diff --git a/common/locales/ru/noscript.json b/common/locales/ru/noscript.json index 6057268ef2..4ba705bca4 100644 --- a/common/locales/ru/noscript.json +++ b/common/locales/ru/noscript.json @@ -1,6 +1,6 @@ { - "jsDisabledHeading": "Alas! Your browser doesn't have JavaScript enabled", - "jsDisabledHeadingFull": "Alas! Your browser doesn't have JavaScript enabled and without it, Habitica can't work properly", - "jsDisabledText": "Habitica can't properly display the site without it!", - "jsDisabledLink": "Please enable JavaScript to continue!" + "jsDisabledHeading": "Увы! В вашем браузере не включён JavaScript", + "jsDisabledHeadingFull": "Увы! В вашем браузере не включён JavaScript, и без него Habitica не сможет работать как надо", + "jsDisabledText": "Habitica не может отобразить сайт должным образом без этого!", + "jsDisabledLink": "Пожалуйста, включите JavaScript, чтобы продолжить!" } \ No newline at end of file diff --git a/common/locales/ru/npc.json b/common/locales/ru/npc.json index 804769abd7..c1c8ff170b 100644 --- a/common/locales/ru/npc.json +++ b/common/locales/ru/npc.json @@ -7,8 +7,8 @@ "daniel": "Даниэль", "danielText": "Добро пожаловать в Таверну! Задержитесь немного и поболтайте с местными жителями. Вам нужен отдых: (отпуск или больничный)? Я размещу вас в Гостинице. Пропущенные Ежедневные задания при этом не будут причинять вам вреда в конце дня, но вы так же сможете отмечать их выполнение.", "danielText2": "Будьте осторожны: если ваша команда сражается с Боссом, он все же будет наносить вам урон за Ежедневные задания, пропущенные вашими товарищами! Кроме того, нанесенный вами урон Боссу или найденные предметы не будут зарегистрированы, пока вы не покинете Гостиницу.", - "danielTextBroken": "Welcome to the Tavern... I guess... If you need to rest, 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... if you have the energy...", - "danielText2Broken": "Oh... 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...", + "danielTextBroken": "Добро пожаловать в Таверну... Полагаю... Если вам нужен отдых, я размещу вас в Гостинице... При этом пропущенные ежедневные задания не будут наносить урон в конце дня, но вы все же сможете их отмечать... Если у вас хватит на это сил... ", + "danielText2Broken": "Ах да... Если вы участвуете в квесте с боссом, он все же будет наносить вам урон за ежедневные задания, не выполненные вашими друзьями по команде... Также, ваши повреждения боссу (или собранные квестовые предметы) не будут засчитаны, пока вы не покинете Гостиницу...", "alexander": "Торговец Александр", "welcomeMarket": "Заходите на рынок! Купите редкие яйца и эликсиры! Продайте то, что вам не нужно! Воспользуйтесь полезными услугами! Загляните и ознакомьтесь со всеми предложениями.", "displayItemForGold": "Вы хотите продать <%= itemType %>?", @@ -19,7 +19,7 @@ "justin": "Джастин", "ian": "Ян", "ianText": "Добро пожаловать в Лавку квестов! Здесь вы можете использовать Свитки Квестов, чтобы сразиться с монстрами вместе с друзьями. Не забудьте оценить справа стройные ряды Свитков Квестов на продажу!", - "ianBrokenText": "Welcome to the Quest Shop... Here you can use Quest Scrolls to battle monsters with your friends... Be sure to check out our fine array of Quest Scrolls for purchase on the right...", + "ianBrokenText": "Добро пожаловать в Лавку квестов... Здесь вы можете использовать Свитки Квестов, чтобы сразиться с монстрами вместе с друзьями... Оцените стройные ряды Свитков Квестов на продажу справа от вас...", "USD": "долларов США", "newStuff": "Что-то новенькое", "cool": "Напомнить позже", diff --git a/common/locales/ru/pets.json b/common/locales/ru/pets.json index 4acbda3cb9..1fefa2ad3c 100644 --- a/common/locales/ru/pets.json +++ b/common/locales/ru/pets.json @@ -58,16 +58,16 @@ "firstDrop": "Вы открыли систему выпадения предметов! Теперь, когда вы выполняете задания, у вас есть маленький шанс найти предмет, включая яйца, эликсиры и еду! Вы только что нашли <%= eggText %> в яйце! <%= eggNotes %>", "useGems": "Если вы хотите питомца, но не можете больше ждать, когда он выпадет, купите его за самоцветы в меню Инвентарь > Рынок!", "hatchAPot": "Вылупится <%= potion %> <%= egg %>. Использовать эликсир?", - "hatchedPet": "You hatched a <%= potion %> <%= egg %>!", + "hatchedPet": "У вас вылупился(ась) <%= potion %> <%= egg %>!", "displayNow": "Показать сейчас", "displayLater": "Показать позже", - "earnedCompanion": "With all your productivity, you've earned a new companion. Feed it to make it grow!", + "earnedCompanion": "Вы были так продуктивны, что заработали нового спутника. Кормите его, чтобы он вырос!", "feedPet": "Скормить <%= article %><%= text %> вашему питомцу: <%= name %>?", "useSaddle": "Оседлать <%= pet %>?", - "raisedPet": "You grew a <%= pet %>!", - "earnedSteed": "By completing your tasks, you've earned a faithful steed!", - "rideNow": "Ride Now", - "rideLater": "Ride Later", + "raisedPet": "У вас вырос(ла) <%= pet %>!", + "earnedSteed": "Завершая свои задания, вы заработали верного скакуна!", + "rideNow": "Оседлать Сейчас", + "rideLater": "Оседлать Позже", "petName": "<%= potion %> <%= egg %>", "mountName": "<%= potion %> <%= mount %>", "petKeyName": "Ключ от Вольеров", diff --git a/common/locales/ru/quests.json b/common/locales/ru/quests.json index ca4416e9e9..1157cf66b9 100644 --- a/common/locales/ru/quests.json +++ b/common/locales/ru/quests.json @@ -13,7 +13,7 @@ "youReceived": "Вы получили", "dropQuestCongrats": "Поздравляем с получением этого свитка квеста! Вы можете пригласить команду для начала квеста прямо сейчас или вернуться к нему позже в любое время через раздел Инвентарь > Квесты.", "questSend": "Нажатие кнопки «Пригласить» отправит приглашения всем членам команды. Когда все члены команды ответят на него (согласием или отказом), квест начнется. Текущий статус можно посмотреть во вкладке Общение > Команда", - "questSendBroken": "Clicking \"Invite\" will send an invitation to your party members... When all members have accepted or denied, the quest begins... See status under Social > Party...", + "questSendBroken": "Нажатие на \"Пригласить\" отправит приглашения членам вашей команды... Когда все члены примут либо откажутся, квест стартует... Статус отображается по адресу Общение > Команда...", "inviteParty": "Пригласить команду в квест", "questInvitation": "Приглашение на участие в квесте", "questInvitationTitle": "Приглашение на квест", @@ -25,7 +25,7 @@ "rejected": "Отклонено", "pending": "В ожидании", "questStart": "Квест начнется, когда все члены команды примут или отклонят его. Принять участие и получить выпадающие предметы смогут только те, кто нажал «принять». Если на приглашение не отвечают слишком долго (неактивный аккаунт?), владелец квеста может начать без них, нажав «Начать». Он также может отменить квест и получить свиток квеста обратно, нажав \"Отменить\"", - "questStartBroken": "Once all members have either accepted or rejected, the quest begins... Only those that clicked \"accept\" will be able to participate in the quest and receive the drops... If members are pending too long (inactive?), the quest owner can start the quest without them by clicking \"Begin\"... The quest owner can also cancel the quest and regain the quest scroll by clicking \"Cancel\"...", + "questStartBroken": "Как только все члены команды примут либо отменят приглашение, квест начинается... Только те, кто нажали \"принять\", смогут участвовать в квесте и получить трофеи... Если члены слишком долго не действуют (либо неактивны), владелец квеста может начать квест без них, нажав \"Начать\"... Владелец квеста также может отменить квест и снова получить квестовый свиток, нажав \"Отмена\"...", "begin": "Начать", "bossHP": "Здоровье босса", "bossStrength": "Сила босса", @@ -36,13 +36,13 @@ "itemsToCollect": "Предметы для сбора", "bossDmg1": "Босс получает урон от каждого завершенного ежедневного задания, каждой задачи и каждой полезной привычки. Вы можете нанести больше урона, выполняя красные задания и используя Мощный удар или Всплеск пламени. Босс нанесет урон каждому участнику квеста за каждое пропущенное ежедневное задание (ущерб от задания, умноженный на силу босса) в дополнение к обычному урону. Старайтесь поддерживать здоровье команды, выполняя ежедневные задания! Весь урон, нанесенный команде и боссу, засчитывается в момент смены суток (по окончании вашего дня).", "bossDmg2": "Только участники будут сражаться с боссом и разделят квестовые трофеи.", - "bossDmg1Broken": "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)...", + "bossDmg1Broken": "Босс получает урон от каждого завершенного ежедневного задания, каждой задачи и каждой полезной привычки... Вы можете нанести больше урона, выполняя красные задания и используя Мощный удар или Всплеск пламени... Босс нанесет урон каждому участнику квеста за каждое пропущенное ежедневное задание (ущерб от задания, умноженный на силу босса) в дополнение к обычному урону... Старайтесь поддерживать здоровье команды, выполняя ежедневные задания... Весь урон, нанесенный команде и боссу, засчитывается в момент смены суток (по окончании вашего дня)...", "bossDmg2Broken": "Только участники будут сражаться с боссом и разделят квестовые трофеи.", - "tavernBossInfo": "Complete Dailies and To-Dos and score positive Habits to damage the World Boss! Incomplete Dailies fill the Exhaust Strike Bar. When the Exhaust 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 not resting in the Inn will have their tasks tallied.", - "tavernBossInfoBroken": "Complete Dailies and To-Dos and score positive Habits to damage the World Boss... Incomplete Dailies fill the Exhaust Strike Bar... When the Exhaust 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 not resting in the Inn will have their tasks tallied...", + "tavernBossInfo": "Завершайте Ежедневные Задания и отмечайте положительные Привычки, чтобы нанести урон Мировому Боссу! Незавершённые Ежедневные Задания заполнят Шкалу Изнуряющего Удара. Когда Шкала Изнуряющего Удара заполнена, Мировой Босс нанесёт атаку неигровому персонажу. Мировой Босс никак и никогда не нанесёт урона вашему личному персонажу или вашему аккаунту. Задание будет засчитанно только активным аккаунтам, которые не отдыхают в Гостинице.", + "tavernBossInfoBroken": "Завершайте Ежедневные Задания и отмечайте положительные Привычки, чтобы нанести урон Мировому Боссу... Незавершённые Ежедневные Задания заполнят Шкалу Изнуряющего Удара... Когда Шкала Изнуряющего Удара заполнена, Мировой Босс нанесёт атаку неигровому персонажу... Мировой Босс никак и никогда не нанесёт урона вашему личному персонажу или вашему аккаунту... Задание будет засчитанно только активным аккаунтам, которые не отдыхают в Гостинице...", "bossColl1": "Чтобы собирать предметы, выполняйте положительные задания. Квестовые предметы падают точно так же, как обычные; однако, вы не увидите, что упало, до начала следующего дня — тогда всё, что вы нашли, будет посчитано и сложено в общую стопку.", "bossColl2": "Только участники могут собрать предметы и разделять квестовые трофеи.", - "bossColl1Broken": "To collect items, do your positive tasks... Quest items drop just like normal items; however, you won't see the drops until the next day, then everything you've found will be tallied up and contributed to the pile...", + "bossColl1Broken": "Чтобы собрать предметы, выполняйте свои положительные задания... Квестовые предметы выпадают так же часто, как и обычные; однако, вы не увидите трофеи до следующего дня, тогда всё, что вы нашли, будет подсчитано и внесено в штабель...", "bossColl2Broken": "Только участники могут собирать предметы и разделять квестовые трофеи.", "abort": "Прервать", "leaveQuest": "Покинуть квест", @@ -70,7 +70,7 @@ "sureAbort": "Вы уверены, что хотите отменить эту миссию? Она отменится для всех членов группы, весь прогресс будет утерян. Свиток вернется к владельцу квеста.", "doubleSureAbort": "Вы точно-точно уверены? Подумайте, не будут ли они ненавидеть вас всю жизнь после этого?", "questWarning": "Получайте приглашение на участие в квесте до его начала, т.к. после старта ни один новый член команды не сможет к нему присоединиться.", - "questWarningBroken": "If new players join the party before the quest starts, they will also receive an invitation... However once the quest has started, no new party members can join the quest...", + "questWarningBroken": "Если новые игроки присоединяются к команде до того, как квест начинается, они также получат приглашение... Однако, как только квест начался, новые члены команды не смогут присоединиться к квесту...", "bossRageTitle": "Ярость", "bossRageDescription": "Когда полоска заполнится, босс произведет особую атаку!", "startAQuest": "НАЧАТЬ КВЕСТ", @@ -78,5 +78,5 @@ "whichQuestStart": "Какой квест вы хотите начать?", "getMoreQuests": "Получить больше квестов", "unlockedAQuest": "Вы разблокировали квест!", - "leveledUpReceivedQuest": "You leveled up to Level <%= level %> and received a quest scroll!" + "leveledUpReceivedQuest": "Вы повысили свой уровень до Уровня <%= level %> и получили квестовый свиток!" } \ No newline at end of file diff --git a/common/locales/ru/questscontent.json b/common/locales/ru/questscontent.json index 01cfe21a87..8342959722 100644 --- a/common/locales/ru/questscontent.json +++ b/common/locales/ru/questscontent.json @@ -254,24 +254,24 @@ "questBurnoutNotes": "Уже далеко за полночь, в городе спокойно и очень душно. Вдруг Redphoenix и капитан скаутов Kiwibot резко врываются через городские ворота. \"Нам нужно спасти все деревянные здания!\" - кричит Redphoenix, - \"Торопитесь!\".

Kiwibot цепляется за стену, переводя дыхание. \"Оно высасывает силы людей и превращает их в Истощённых Духов! Вот почему все дела откладывались. Теперь ясно, куда пропали недостающие люди. Оно крало их энергию!\"

\"Оно..?\" - спросила Lemoness.

Неожиданно тепло обретает форму.

Оно поднимается с земли в форме развевающейся, скручивающейся массы, и воздух переполняется запахами дыма и серы. Корчась и поднимаясь до страшных высот, пламя растекается по расплавленной земле, на кончиках искривляясь. Дымящиеся глаза распахиваются, и тварь издаёт глубокое и трещащее гоготание.

Kiwibot прошептала единое слово.

\"Перегорание.\"", "questBurnoutCompletion": "Burnout is DEFEATED!

With a great, soft sigh, Burnout slowly releases the ardent energy that was fueling its fire. As the monster curls quietly into ashes, its stolen energy shimmers through the air, rejuvenating the Exhaust Spirits and returning them to their true forms.

Ian, Daniel, and the Seasonal Sorceress cheer as Habiticans rush to greet them, and all the missing citizens of the Flourishing Fields embrace their friends and families. The final Exhaust Spirit transforms into the Joyful Reaper herself!

\"Look!\" whispers @Baconsaur, as the ashes begin to glitter. Slowly, they resolve into hundreds of shining phoenixes!

One of the glowing birds alights on the Joyful Reaper's skeletal arm, and she grins at it. \"It has been a long time since I've had the exquisite privilege to behold a phoenix in the Flourishing Fields,\" she says. \"Although given recent occurrences, I must say, this is highly thematically appropriate!\"

Her tone sobers, although (naturally) her grin remains. \"We're known for being hard-working here, but we are also known for our feasts and festivities. Rather ironic, I suppose, that as we strove to plan a spectacular party, we refused to permit ourselves any time for fun. We certainly won't make the same mistake twice!\"

She claps her hands. \"Now - let's celebrate!\"", "questBurnoutCompletionChat": "`Burnout is DEFEATED!`\n\nWith a great, soft sigh, Burnout slowly releases the ardent energy that was fueling its fire. As the monster curls quietly into ashes, its stolen energy shimmers through the air, rejuvenating the Exhaust Spirits and returning them to their true forms.\n\nIan, Daniel, and the Seasonal Sorceress cheer as Habiticans rush to greet them, and all the missing citizens of the Flourishing Fields embrace their friends and families. The final Exhaust Spirit transforms into the Joyful Reaper herself!\n\n\"Look!\" whispers @Baconsaur, as the ashes begin to glitter. Slowly, they resolve into hundreds of shining phoenixes!\n\nOne of the glowing birds alights on the Joyful Reaper's skeletal arm, and she grins at it. \"It has been a long time since I've had the exquisite privilege to behold a phoenix in the Flourishing Fields,\" she says. \"Although given recent occurrences, I must say, this is highly thematically appropriate!\"\n\nHer tone sobers, although (naturally) her grin remains. \"We're known for being hard-working here, but we are also known for our feasts and festivities. Rather ironic, I suppose, that as we strove to plan a spectacular party, we refused to permit ourselves any time for fun. We certainly won't make the same mistake twice!\"\n\nShe claps her hands. \"Now - let's celebrate!\"\n\nAll Habiticans receive:\n\nPhoenix Pet\nPhoenix Mount\nAchievement: Savior of the Flourishing Fields\nBasic Candy\nVanilla Candy\nSand Candy\nCinnamon Candy\nChocolate Candy\nRotten Candy\nSour Pink Candy\nSour Blue Candy\nHoney Candy", - "questBurnoutBoss": "Перегорание", - "questBurnoutBossRageTitle": "Истощающий Удар", - "questBurnoutBossRageDescription": "Когда этот индикатор заполнится, Перегорание выпустит свой Истощающий Удар на страну Habitica", + "questBurnoutBoss": "Выгорание", + "questBurnoutBossRageTitle": "Изнуряющий Удар", + "questBurnoutBossRageDescription": "Когда эта шкала заполнится, Выгорание выпустит свой Изнуряющий Удар на страну Habitica!", "questBurnoutDropPhoenixPet": "Феникс (питомец)", "questBurnoutDropPhoenixMount": "Феникс (скакун)", - "questBurnoutBossRageQuests": "`Burnout uses EXHAUST STRIKE!`\n\nOh no! Despite our best efforts, we've let some Dailies get away from us, and now Burnout is inflamed with energy! With a crackling snarl, it engulfs Ian the Quest Master in a surge of spectral fire. As fallen quest scrolls smolder, the smoke clears, and you see that Ian has been drained of energy and turned into a drifting Exhaust Spirit!\n\nOnly defeating Burnout can break the spell and restore our beloved Quest Master. Let's keep our Dailies in check and defeat this monster before it attacks again!", + "questBurnoutBossRageQuests": "`Выгорание применяет ИЗНУРЯЮЩИЙ УДАР!`\n\nО нет! Несмотря на все наши усилия, мы упустили из виду несколько ежедневных заданий, и теперь Выгорание вспыхнуло энергией! Рыча с треском, it engulfs Ian the Quest Master in a surge of spectral fire. As fallen quest scrolls smolder, the smoke clears, and you see that Ian has been drained of energy and turned into a drifting Exhaust Spirit!\n\nOnly defeating Burnout can break the spell and restore our beloved Quest Master. Let's keep our Dailies in check and defeat this monster before it attacks again!", "questBurnoutBossRageSeasonalShop": "`Burnout uses EXHAUST STRIKE!`\n\nAhh!!! Our incomplete Dailies have fed the flames of Burnout, and now it has enough energy to strike again! It lets loose a gout of spectral flame that sears the Seasonal Shop. You're horrified to see that the cheery Seasonal Sorceress has been transformed into a drooping Exhaust Spirit.\n\nWe have to rescue our NPCs! Hurry, Habiticans, complete your tasks and defeat Burnout before it strikes for a third time!", "questBurnoutBossRageTavern": "`Burnout uses EXHAUST STRIKE!`\n\nMany Habiticans have been hiding from Burnout in the Tavern, but no longer! With a screeching howl, Burnout rakes the Tavern with its white-hot hands. As the Tavern patrons flee, Daniel is caught in Burnout's grip, and transforms into an Exhaust Spirit right in front of you!\n\nThis hot-headed horror has gone on for too long. Don't give up... we're so close to vanquishing Burnout for once and for all!", - "questFrogText": "Swamp of the Clutter Frog", - "questFrogNotes": "As you and your friends are slogging through the Swamps of Stagnation, @starsystemic points at a large sign. \"Stay on the path -- if you can.\"

\"Surely that isn't hard!\" @RosemonkeyCT says. \"It's broad and clear.\"

But as you continue, you notice that path is gradually overtaken by the muck of the swamp, laced with bits of strange blue debris and clutter, until it's impossible to proceed.

As you look around, wondering how it got this messy, @Jon Arjinborn shouts, \"Look out!\" An angry frog leaps from the sludge, clad in dirty laundry and lit by blue fire. You will have to overcome this poisonous Clutter Frog to progress!", - "questFrogCompletion": "The frog cowers back into the muck, defeated. As it slinks away, the blue slime fades, leaving the way ahead clear.

Sitting in the middle of the path are three pristine eggs. \"You can even see the tiny tadpoles and through the clear casing!\" @Breadstrings says. \"Here, you should take them.\"", - "questFrogBoss": "Clutter Frog", + "questFrogText": "Болото Лягушки Беспорядка", + "questFrogNotes": "Вы и ваши друзья пробираетесь через Болото Застоя, @starsystemic указывает на большой знак. \"Оставайтесь на тропе, если сможете.\"

\"Конечно, это не сложно!\" сказал @RosemonkeyCT. \"Она широкая и чистая.\"

Но когда вы пытаетесь пройти дальше, то замечаете, что тропу начинает покрывать болотная грязь с вкраплениями голубых обломков и мусора. Наконец вы понимаете, что не можете идти дальше..

Вы огляделись, удивляясь тому, откуда взялся этот беспорядок, @Jon Arjinborn вскрикнул \"Берегись!\" Злая лягушка выпрыгнула из ила, покрытая грязным бельем и святящаяся голубым огнем. Вам придется преодолеть эту отвратительную Лягушку Беспорядка, чтобы пройти дальше!", + "questFrogCompletion": "Проиграв, лягушка прячется обратно в грязь. Как только он ускользну, синяя слизь исчезла, открывая путь вперед.

В середине тропе лежат три нетронутых яйца. \"Вы даже можете увидеть крошечных головастиков через тонкую скорлупу!\" сказал @Breadstrings. \"Возьмите, вы должны их принять.\"", + "questFrogBoss": "Лягушка Беспорядка", "questFrogDropFrogEgg": "Лягушонок (Яйцо)", - "questFrogUnlockText": "Unlocks purchasable Frog eggs in the Market", - "questSnakeText": "The Serpent of Distraction", + "questFrogUnlockText": "Позволяет покупать на рынке Лягушонка в яйце.", + "questSnakeText": "Змей Безумаия", "questSnakeNotes": "It takes a hardy soul to live in the Sand Dunes of Distraction. The arid desert is hardly a productive place, and the shimmering dunes have led many a traveler astray. However, something has even the locals spooked. The sands have been shifting and upturning entire villages. Residents claim a monster with an enormous serpentine body lies in wait under the sands, and they have all pooled together a reward for whomever will help them find and stop it. The much-lauded snake charmers @EmeraldOx and @PainterProphet have agreed to help you summon the beast. Can you stop the Serpent of Distraction?", "questSnakeCompletion": "With assistance from the charmers, you banish the Serpent of Distraction. Though you were happy to help the inhabitants of the Dunes, you can't help but feel a little sad for your fallen foe. While you contemplate the sights, @LordDarkly approaches you. \"Thank you! It's not much, but I hope this can express our gratitude properly.\" He hands you some Gold and... some Snake eggs! You will see that majestic animal again after all.", - "questSnakeBoss": "Serpent of Distraction", - "questSnakeDropSnakeEgg": "Snake (Egg)", - "questSnakeUnlockText": "Unlocks purchasable Snake eggs in the Market" + "questSnakeBoss": "Змей Безумаия", + "questSnakeDropSnakeEgg": "Змея (Яйцо)", + "questSnakeUnlockText": "Позволяет покупать на рынке Змею в яйце." } \ No newline at end of file diff --git a/common/locales/ru/rebirth.json b/common/locales/ru/rebirth.json index 33e6778a41..d100b6206b 100644 --- a/common/locales/ru/rebirth.json +++ b/common/locales/ru/rebirth.json @@ -16,7 +16,7 @@ "rebirthEarnAchievement": "А еще вы получите достижение за начало нового приключения!", "beReborn": "Родитесь заново", "rebirthAchievement": "Вы начали новое приключение! Это ваше возрождение <%= number %> и самый высокий уровень, который вы достигали — <%= level %>. Чтобы увеличить это достижение, начните свое следующее новое приключение после того, как достигните еще более высокого уровня!", - "rebirthAchievement100": "You've begun a new adventure! This is Rebirth <%= number %> for you, and the highest Level you've attained is 100 or higher. To stack this Achievement, begin your next new adventure when you've reached at least 100!", + "rebirthAchievement100": "Вы начали новое приключение! Это Возрождение <%= number %> для вас, и наивысший Уровень, которого вы достигли равен или больше 100. Чтобы накапливать это Достижение, начните своё следующее новое приключение, когда вы достигнете по крайней мере 100 уровня!", "rebirthBegan": "Начато новое приключение", "rebirthText": "Начато новых приключений: <%= rebirths %>", "rebirthOrb": "Использован шар возрождения, чтобы начать заново после достижения уровня", diff --git a/common/locales/ru/settings.json b/common/locales/ru/settings.json index 2341598b14..2d9ef366d0 100644 --- a/common/locales/ru/settings.json +++ b/common/locales/ru/settings.json @@ -14,11 +14,11 @@ "startCollapsedPop": "Когда этот параметр включен, при открытии задания для редактирования список тегов будет отображаться в свернутом виде.", "startAdvCollapsed": "Раздел «Дополнительные параметры» в задачах свернут по умолчанию", "startAdvCollapsedPop": "Когда этот параметр включен, при открытии задания для редактирования раздел «Дополнительные параметры» будет отображаться в свернутом виде.", - "dontShowAgain": "Don't show this again", - "suppressLevelUpModal": "Don't show popup when gaining a level", - "suppressHatchPetModal": "Don't show popup when hatching a pet", - "suppressRaisePetModal": "Don't show popup when raising a pet into a mount", - "suppressStreakModal": "Don't show popup when attaining a Streak achievement", + "dontShowAgain": "Не показывать это снова", + "suppressLevelUpModal": "Не показывать всплывающее сообщение при повышении уровня", + "suppressHatchPetModal": "Не показывать всплывающее сообщение при повышении уровня", + "suppressRaisePetModal": "Не показывать всплывающее сообщение при выращивании питомца в скакуна", + "suppressStreakModal": "Не показывать всплывающее сообщение при получении достижения Серии", "showTour": "Показать тур", "restartTour": "Запустить ознакомительный тур, который вы видели, когда зарегистрировались на Habitica.", "showBailey": "Показать Бэйли", @@ -135,7 +135,7 @@ "add": "Добавить", "buyGemsGoldCap": "Предел повышен до <%= amount %>", "mysticHourglass": "Кол-во мистических песочных часов: <%= amount %>", - "mysticHourglassText": "Mystic Hourglasses allow purchasing a previous month's Mystery Item set.", + "mysticHourglassText": "Мистические Песочные часы позволяют покупку Комплекта Таинственных предметов предыдущего месяца", "purchasedPlanId": "Возобновляемая подписка за <%= price %> долларов каждые <%= months %> мес. (<%= plan %>)", "purchasedPlanExtraMonths": "Вы были подписаны в течение <%= months %> мес.", "consecutiveSubscription": "Непрерывная подписка", @@ -143,5 +143,8 @@ "gemCapExtra": "Доп. предел самоцветов:", "mysticHourglasses": "Мистические песочные часы:", "paypal": "PayPal", - "amazonPayments": "Платёж с помощью Amazon" + "amazonPayments": "Платёж с помощью Amazon", + "timezone": "Time Zone", + "timezoneUTC": "Habitica uses the time zone set on your PC, which is: <%= utc %>", + "timezoneInfo": "If that time zone is wrong, first reload this page using your browser's reload or refresh button to ensure that Habitica has the most recent information. If it is still wrong, adjust the time zone on your PC and then reload this page again.

If you use Habitica on other PCs or mobile devices, the time zone must be the same on them all. If your Dailies have been reseting at the wrong time, repeat this check on all other PCs and on a browser on your mobile devices." } \ No newline at end of file diff --git a/common/locales/ru/spells.json b/common/locales/ru/spells.json index 4e913eff47..879fe49dc5 100644 --- a/common/locales/ru/spells.json +++ b/common/locales/ru/spells.json @@ -19,7 +19,7 @@ "spellRoguePickPocketNotes": "Вы грабите ближайшую задачу. Вы получаете золото! Нажмите на одно из заданий для применения. (На основе ВОС)", "spellRogueBackStabText": "Удар в спину", "spellRogueBackStabNotes": "Вы предаете глупое задание. Вы получаете золото и очки опыта! Нажмите на одно из заданий для применения. (На основе СИЛ)", - "spellRogueToolsOfTradeText": "Орудия труда", + "spellRogueToolsOfTradeText": "Орудия Труда", "spellRogueToolsOfTradeNotes": "Вы делитесь своими талантами с друзьями. Вся ваша команда получает баф к восприятию! (На основе ВОС без бафов)", "spellRogueStealthText": "Уйти в тень", "spellRogueStealthNotes": "Вы скрытны и вас невозможно заметить. Часть невыполненных ежедневных заданий не нанесут вреда сегодня, и их серии / цвет не изменятся. (Наложите заклинание несколько раз, чтобы охватить больше ежедневных заданий)", @@ -37,7 +37,7 @@ "spellSpecialSaltNotes": "Кто-то кинул в вас снежок. Ха-ха, очень смешно. А теперь стряхните с меня снег!", "spellSpecialSpookDustText": "Зловещие искры", "spellSpecialSpookDustNotes": "Превратите друга в парящую простыню с глазами!", - "spellSpecialOpaquePotionText": "Эликсир непрозрачности", + "spellSpecialOpaquePotionText": "Зелье Непроницаемости", "spellSpecialOpaquePotionNotes": "Отменить эффект Зловещих искр", "spellSpecialShinySeedText": "Солнечное семя", "spellSpecialShinySeedNotes": "Превратите друга в радостный цветок!", diff --git a/common/locales/ru/subscriber.json b/common/locales/ru/subscriber.json index 887461c4a5..44e2a33bf4 100644 --- a/common/locales/ru/subscriber.json +++ b/common/locales/ru/subscriber.json @@ -60,7 +60,7 @@ "timeTravelersTitleNoSub": "<%= linkStartTyler %>Tyler<%= linkEnd %> и <%= linkStartVicky %>Vicky<%= linkEnd %>", "timeTravelersTitle": "Загадочные путешественники во времени", "timeTravelersPopoverNoSub": "Вам понадобятся мистические песочные часы, чтобы призвать загадочных путешественников во времени. <%= linkStart %>Подписчики<%= linkEnd %> получают одни песочные часы за каждые три месяца непрерывной подписки. Возвращайтесь, когда у вас будут песочные часы, и путешественники во времени добудут вам редкого питомца, скакуна или подарочный набор подписчика из прошлого... или даже из будущего.", - "timeTravelersPopover": "We see you have a Mystic Hourglass, so we will happily travel back in time for you! Please choose the pet, mount, or Mystery Item Set you would like. You can see a list of the past item sets here! If those don't satisfy you, perhaps you'd be interested in one of our fashionably futuristic Steampunk Item Sets?", + "timeTravelersPopover": "Видно, что вы с Мистическими песочными часами, так что мы с радостью отправимся для вас в прошлое! Пожалуйста, выберите себе питомца, скакуна, или Комплект Таинственных предметов. Вы можете увидеть список прошлых комплектов здесь! Если они вам не подходят, возможно, вы будете заинтересованы в одном из наших модных футуристических Комплектов в стиле Стимпанк?", "timeTravelersAlreadyOwned": "Поздравляем! У вас уже есть все предметы, которые могут предложить путешественники во времени. Благодарим за поддержку сайта!", "mysticHourglassPopover": "Загадочные песочные часы позволят вам приобрести определённые предметы, которые были лишь временно доступны когда-то. Например, наборы таинственных предметов и награды за мировых боссов. Прямо из прошлого!", "subUpdateCard": "Обновить карточку", diff --git a/common/locales/ru/tasks.json b/common/locales/ru/tasks.json index e7f48c020e..7b1b8e9c71 100644 --- a/common/locales/ru/tasks.json +++ b/common/locales/ru/tasks.json @@ -88,8 +88,7 @@ "fortifyText": "Укрепление вернёт все ваши задания в нейтральный (жёлтый) цвет, как будто бы вы их только что добавили, и восстановит всё здоровье до максимума. Это пригодится, если все ваши красные задания слишком усложняют, а синие — слишком упрощают игру. Если новое, свежее начало даст вам больше сил и мотивации, не пожалейте самоцветов и получите временное облегчение!", "sureDelete": "Вы уверены, что хотите удалить эту задачу?", "streakCoins": "Бонус за серию!", - "pushTaskToTop": "Переместить задание наверх", - "pushTaskToBottom": "Переместить задание вниз", + "pushTaskToTop": "Push task to top. Hold ctrl or cmd to push to bottom.", "emptyTask": "Сначала введите название задания.", "dailiesRestingInInn": "Вы отдыхаете в Гостинице! Пропущенные Ежедневные задания НЕ причинят вам вреда в конце сегодняшнего дня, но отметки об их выполнении БУДУТ сбрасываться каждый день. Если ваша Команда участвует к квесте, вы не будете наносить урон / находить предметы, пока не покинете Гостиницу. В то же время Босс все же будет наносить урон вам за Ежедневные задания, пропущенные вашими товарищами по Команде.", "habitHelp1": "Полезные привычки – это то, что вы делаете часто. За них вы получаете золото и опыт после каждого нажатия на <%= plusIcon %>.", diff --git a/common/locales/sk/backgrounds.json b/common/locales/sk/backgrounds.json index 83365b5a2f..a2757e770f 100644 --- a/common/locales/sk/backgrounds.json +++ b/common/locales/sk/backgrounds.json @@ -125,5 +125,12 @@ "backgroundNightDunesText": "Night Dunes", "backgroundNightDunesNotes": "Walk peacefully through the Night Dunes.", "backgroundSunsetOasisText": "Sunset Oasis", - "backgroundSunsetOasisNotes": "Bask in the Sunset Oasis." + "backgroundSunsetOasisNotes": "Bask in the Sunset Oasis.", + "backgrounds122015": "SET 19: Released December 2015", + "backgroundAlpineSlopesText": "Alpine Slopes", + "backgroundAlpineSlopesNotes": "Ski on the Alpine Slopes.", + "backgroundSnowySunriseText": "Snowy Sunrise", + "backgroundSnowySunriseNotes": "Gaze at the Snowy Sunrise.", + "backgroundWinterTownText": "Winter Town", + "backgroundWinterTownNotes": "Bustle through a Winter Town." } \ No newline at end of file diff --git a/common/locales/sk/faq.json b/common/locales/sk/faq.json index 97ac6e5c37..587ba838c6 100644 --- a/common/locales/sk/faq.json +++ b/common/locales/sk/faq.json @@ -2,7 +2,7 @@ "frequentlyAskedQuestions": "Frequently Asked Questions", "faqQuestion0": "I'm confused. Where do I get an overview?", "iosFaqAnswer0": "First, you'll set up tasks that you want to do in your everyday life. Then, as you complete the tasks in real life and check them off, you'll earn experience and gold. Gold is used to buy equipment and some items, as well as custom rewards. Experience causes your character to level up and unlock content such as Pets, Skills, and Quests! You can customize your character under Menu > Customize Avatar.\n\n Some basic ways to interact: click the (+) in the upper-right-hand corner to add a new task. Tap on an existing task to edit it, and swipe left on a task to delete it. You can sort tasks using Tags in the upper-left-hand corner, and expand and contract checklists by clicking on the checklist bubble.", - "webFaqAnswer0": "First, you'll set up tasks that you want to do in your everyday life. Then, as you complete the tasks in real life and check them off, you'll earn Experience and Gold. Gold is used to buy equipment and some items, as well as custom rewards. Experience causes your character to level up and unlock content such as pets, skills, and quests! For more detail, the wiki has an excellent step-by-step overview of the game [right here](http://habitica.wikia.com/wiki/Habitica_Wiki).", + "webFaqAnswer0": "First, you'll set up tasks that you want to do in your everyday life. Then, as you complete the tasks in real life and check them off, you'll earn Experience and Gold. Gold is used to buy equipment and some items, as well as custom rewards. Experience causes your character to level up and unlock content such as pets, skills, and quests! For more detail, check out a step-by-step overview of the game at [Help -> Overview for New Users](https://habitica.com/static/overview).", "faqQuestion1": "How do I set up my tasks?", "iosFaqAnswer1": "Good Habits (the ones with a +) are tasks that you can do many times a day, such as eating vegetables. Bad Habits (the ones with a -) are tasks that you should avoid, like biting nails. Habits with a + and a - have a good choice and a bad choice, like taking the stairs vs. taking the elevator. Good Habits award experience and gold. Bad Habits subtract health.\n\n Dailies are tasks that you have to do every day, like brushing your teeth or checking your email. You can adjust the days that a Daily is due by tapping to edit it. If you skip a Daily that is due, your avatar will take damage overnight. Be careful not to add too many Dailies at once!\n\n To-Dos are your To-Do list. Completing a To-Do earns you gold and experience. You never lose health from To-Dos. You can add a due date to a To-Do by tapping to edit.", "webFaqAnswer1": "Good Habits (the ones with a ) are tasks that you can do many times a day, such as eating vegetables. Bad Habits (the ones with a ) are tasks that you should avoid, like biting nails. Habits with a and a have a good choice and a bad choice, like taking the stairs vs. taking the elevator. Good Habits award Experience and Gold. Bad Habits subtract Health.\n

\n Dailies are tasks that you have to do every day, like brushing your teeth or checking your email. You can adjust the days that a Daily is due by clicking the pencil item to edit it. If you skip a Daily that is due, your avatar will take damage overnight. Be careful not to add too many Dailies at once!\n

\n To-Dos are your To-Do list. Completing a To-Do earns you Gold and Experience. You never lose Health from To-Dos. You can add a due date to a To-Do by clicking the pencil icon to edit.", diff --git a/common/locales/sk/gear.json b/common/locales/sk/gear.json index 764c4c84de..f1544173ca 100644 --- a/common/locales/sk/gear.json +++ b/common/locales/sk/gear.json @@ -149,15 +149,19 @@ "weaponArmoireRancherLassoText": "Rancher Lasso", "weaponArmoireRancherLassoNotes": "Lassos: the ideal tool for rounding up and wrangling. Increases Strength by <%= str %>, Perception by <%= per %>, and Intelligence by <%= int %>. Enchanted Armoire: Rancher Set (Item 3 of 3).", "weaponArmoireMythmakerSwordText": "Mythmaker Sword", - "weaponArmoireMythmakerSwordNotes": "Though it may seem humble, this sword has made many mythic heroes. Increases Perception and Strength by <%= attrs %> each. Enchanted Armoire: Golden Toga Set (Item 3 of 3)", + "weaponArmoireMythmakerSwordNotes": "Though it may seem humble, this sword has made many mythic heroes. Increases Perception and Strength by <%= attrs %> each. Enchanted Armoire: Golden Toga Set (Item 3 of 3).", "weaponArmoireIronCrookText": "Iron Crook", - "weaponArmoireIronCrookNotes": "Fiercely hammered from iron, this iron crook is good at herding sheep. Increases Perception and Strength by <%= attrs %> each. Enchanted Armoire: Horned Iron Set (Item 3 of 3)", + "weaponArmoireIronCrookNotes": "Fiercely hammered from iron, this iron crook is good at herding sheep. Increases Perception and Strength by <%= attrs %> each. Enchanted Armoire: Horned Iron Set (Item 3 of 3).", "weaponArmoireGoldWingStaffText": "Gold Wing Staff", "weaponArmoireGoldWingStaffNotes": "The wings on this staff constantly flutter and twist. Increases all attributes by <%= attrs %> each. Enchanted Armoire: Independent Item.", "weaponArmoireBatWandText": "Bat Wand", "weaponArmoireBatWandNotes": "This wand can turn any task into a bat! Wave it about and watch them fly away. Increases Intelligence by <%= int %> and Perception by <%= per %>. Enchanted Armoire: Independent Item.", "weaponArmoireShepherdsCrookText": "Shepherd's Crook", "weaponArmoireShepherdsCrookNotes": "Useful for herding gryphons. Increases Constitution by <%= con %>. Enchanted Armoire: Shepherd Set (Item 1 of 3).", + "weaponArmoireCrystalCrescentStaffText": "Crystal Crescent Staff", + "weaponArmoireCrystalCrescentStaffNotes": "Summon the power of the crescent moon with this shining staff! Increases Intelligence and Strength by <%= attrs %> each. Enchanted Armoire: Crystal Crescent Set (Item 3 of 3).", + "weaponArmoireBlueLongbowText": "Blue Longbow", + "weaponArmoireBlueLongbowNotes": "Ready... Aim... Fire! This bow has great range. Increases Perception by 9, Constitution by 8, and Strength by 7. Enchanted Armoire: Independent Item.", "armor": "armor", "armorBase0Text": "Prosté ošatenie", "armorBase0Notes": "Bežné ošatenie. Neposkytuje žiadne výhody.", @@ -222,7 +226,7 @@ "armorSpecialBirthday2015Text": "Silly Party Robes", "armorSpecialBirthday2015Notes": "Happy Birthday, Habitica! Wear these Silly Party Robes to celebrate this wonderful day. Confers no benefit.", "armorSpecialGaymerxText": "Rainbow Warrior Armor", - "armorSpecialGaymerxNotes": "In celebration of pride season and GaymerX, this special armor is decorated with a radiant, colorful rainbow pattern! GaymerX is a game convention celebrating LGBTQ and gaming and is open to everyone. It takes place at the InterContinental in downtown San Francisco on July 11-13! Confers no benefit.", + "armorSpecialGaymerxNotes": "In celebration of the GaymerX Conference, this special armor is decorated with a radiant, colorful rainbow pattern! GaymerX is a game convention celebrating LGTBQ and gaming and is open to everyone.", "armorSpecialSpringRogueText": "Priliehavý mačací oblek", "armorSpecialSpringRogueNotes": "Impeccably groomed. Increases Perception by <%= per %>. Limited Edition 2014 Spring Gear.", "armorSpecialSpringWarriorText": "Brnenie z ďatelinovej ocele", @@ -309,6 +313,8 @@ "armorMystery201508Notes": "Run fast as a flash in the fluffy Cheetah Costume! Confers no benefit. August 2015 Subscriber Item.", "armorMystery201509Text": "Werewolf Costume", "armorMystery201509Notes": "This IS a costume, right? Confers no benefit. September 2015 Subscriber Item.", + "armorMystery201511Text": "Wooden Armor", + "armorMystery201511Notes": "Considering this armor was carved directly from a magical log, it's surprisingly comfortable. Confers no benefit. November 2015 Subscriber Item.", "armorMystery301404Text": "Steampunk Suit", "armorMystery301404Notes": "Dapper and dashing, wot! Confers no benefit. February 3015 Subscriber Item.", "armorArmoireLunarArmorText": "Soothing Lunar Armor", @@ -327,6 +333,8 @@ "armorArmoireShepherdRobesNotes": "The fabric is cool and breathable, perfect for a hot day herding gryphons in the desert. Increases Strength and Perception by <%= attrs %> each. Enchanted Armoire: Shepherd Set (Item 2 of 3).", "armorArmoireRoyalRobesText": "Royal Robes", "armorArmoireRoyalRobesNotes": "Wonderful ruler, rule all day long! Increases Constitution, Intelligence, and Perception by <%= attrs %> each. Enchanted Armoire: Royal Set (Item 3 of 3).", + "armorArmoireCrystalCrescentRobesText": "Crystal Crescent Robes", + "armorArmoireCrystalCrescentRobesNotes": "These magical robes are luminescent at night. Increases Constitution and Perception by <%= attrs %> each. Enchanted Armoire: Crystal Crescent Set (Item 2 of 3).", "headgear": "headgear", "headBase0Text": "Bez helmy", "headBase0Notes": "Bez pokrývky hlavy.", @@ -447,7 +455,7 @@ "headSpecialFall2015HealerText": "Hat of Frog", "headSpecialFall2015HealerNotes": "This is an extremely serious hat that is worthy of only the most advanced potioners. Increases Intelligence by <%= int %>. Limited Edition 2015 Autumn Gear.", "headSpecialGaymerxText": "Rainbow Warrior Helm", - "headSpecialGaymerxNotes": "In celebration of pride season and GaymerX, this special helmet is decorated with a radiant, colorful rainbow pattern! GaymerX is a game convention celebrating LGBTQ and gaming and is open to everyone. It takes place at the InterContinental in downtown San Francisco on July 11-13! Confers no benefit.", + "headSpecialGaymerxNotes": "In celebration of the GaymerX Conference, this special helmet is decorated with a radiant, colorful rainbow pattern! GaymerX is a game convention celebrating LGTBQ and gaming and is open to everyone.", "headMystery201402Text": "Okrídlená helma", "headMystery201402Notes": "This winged circlet imbues the wearer with the speed of the wind! Confers no benefit. February 2014 Subscriber Item.", "headMystery201405Text": "Oheň mysle", @@ -470,6 +478,8 @@ "headMystery201508Notes": "This cozy cheetah hat is very fuzzy! Confers no benefit. August 2015 Subscriber Item.", "headMystery201509Text": "Werewolf Mask", "headMystery201509Notes": "This IS a mask, right? Confers no benefit. September 2015 Subscriber Item.", + "headMystery201511Text": "Log Crown", + "headMystery201511Notes": "Count the number of rings to learn how old this crown is. Confers no benefit. November 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", @@ -506,6 +516,8 @@ "headArmoireBlueFloppyHatNotes": "Many spells have been sewn into this simple hat, giving it a brilliant blue color. Increases Constitution, Intelligence, and Perception by <%= attrs %> each. Enchanted Armoire: Independent Item.", "headArmoireShepherdHeaddressText": "Shepherd Headdress", "headArmoireShepherdHeaddressNotes": "Sometimes the gryphons that you herd like to chew on this headdress, but it makes you seem more intelligent nonetheless. Increases Intelligence by <%= int %>. Enchanted Armoire: Shepherd Set (Item 3 of 3).", + "headArmoireCrystalCrescentHatText": "Crystal Crescent Hat", + "headArmoireCrystalCrescentHatNotes": "The design on this hat waxes and wanes with the phases of the moon. Increases Intelligence and Perception by <%= attrs %> each. Enchanted Armoire: Crystal Crescent Set (Item 1 of 3).", "offhand": "shield-hand item", "shieldBase0Text": "No Shield-Hand Equipment", "shieldBase0Notes": "Bez štítu alebo druhej zbrane.", diff --git a/common/locales/sk/limited.json b/common/locales/sk/limited.json index 485dafe783..966c23938e 100644 --- a/common/locales/sk/limited.json +++ b/common/locales/sk/limited.json @@ -21,6 +21,7 @@ "valentineCardAchievementText": "Aww, you and your friend must really care about each other! Sent or received <%= cards %> Valentine's Day cards.", "polarBear": "Polárny medveď", "turkey": "Moriak", + "gildedTurkey": "Gilded Turkey", "polarBearPup": "Polárne medvieďa", "jackolantern": "Jack-O-Lantern", "seasonalShop": "Sezónny obchod", diff --git a/common/locales/sk/settings.json b/common/locales/sk/settings.json index e66d198ff1..4c1596950d 100644 --- a/common/locales/sk/settings.json +++ b/common/locales/sk/settings.json @@ -143,5 +143,8 @@ "gemCapExtra": "Gem Cap Extra:", "mysticHourglasses": "Mystic Hourglasses:", "paypal": "PayPal", - "amazonPayments": "Amazon Payments" + "amazonPayments": "Amazon Payments", + "timezone": "Time Zone", + "timezoneUTC": "Habitica uses the time zone set on your PC, which is: <%= utc %>", + "timezoneInfo": "If that time zone is wrong, first reload this page using your browser's reload or refresh button to ensure that Habitica has the most recent information. If it is still wrong, adjust the time zone on your PC and then reload this page again.

If you use Habitica on other PCs or mobile devices, the time zone must be the same on them all. If your Dailies have been reseting at the wrong time, repeat this check on all other PCs and on a browser on your mobile devices." } \ No newline at end of file diff --git a/common/locales/sk/tasks.json b/common/locales/sk/tasks.json index cc851b164c..a78d1b236f 100644 --- a/common/locales/sk/tasks.json +++ b/common/locales/sk/tasks.json @@ -88,8 +88,7 @@ "fortifyText": "Fortify will return all your tasks to a neutral (yellow) state, as if you'd just added them, and top your Health off to full. This is great if all your red tasks are making the game too hard, or all your blue tasks are making the game too easy. If starting fresh sounds much more motivating, spend the Gems and catch a reprieve!", "sureDelete": "Si si istý, že chceš zmazať túto úlohu?", "streakCoins": "Bonus za sériu!", - "pushTaskToTop": "Presuň úlohu navrch", - "pushTaskToBottom": "Presuň úlohu naspodok", + "pushTaskToTop": "Push task to top. Hold ctrl or cmd to push to bottom.", "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.", "habitHelp1": "Good Habits are things that you do often. They award Gold and Experience every time you click the <%= plusIcon %>.", diff --git a/common/locales/sr/backgrounds.json b/common/locales/sr/backgrounds.json index abe83b587f..4bd023c031 100644 --- a/common/locales/sr/backgrounds.json +++ b/common/locales/sr/backgrounds.json @@ -125,5 +125,12 @@ "backgroundNightDunesText": "Night Dunes", "backgroundNightDunesNotes": "Walk peacefully through the Night Dunes.", "backgroundSunsetOasisText": "Sunset Oasis", - "backgroundSunsetOasisNotes": "Bask in the Sunset Oasis." + "backgroundSunsetOasisNotes": "Bask in the Sunset Oasis.", + "backgrounds122015": "SET 19: Released December 2015", + "backgroundAlpineSlopesText": "Alpine Slopes", + "backgroundAlpineSlopesNotes": "Ski on the Alpine Slopes.", + "backgroundSnowySunriseText": "Snowy Sunrise", + "backgroundSnowySunriseNotes": "Gaze at the Snowy Sunrise.", + "backgroundWinterTownText": "Winter Town", + "backgroundWinterTownNotes": "Bustle through a Winter Town." } \ No newline at end of file diff --git a/common/locales/sr/faq.json b/common/locales/sr/faq.json index 075d625ddd..f7e20d7a67 100644 --- a/common/locales/sr/faq.json +++ b/common/locales/sr/faq.json @@ -2,7 +2,7 @@ "frequentlyAskedQuestions": "Najčešće Postavljena Pitanja", "faqQuestion0": "Zbunjen sam. Gde mogu dobiti kratko objašnjenje?", "iosFaqAnswer0": "Prvo, postavićete sebi zadatke koje želite da uradite u vašem svakodnevnom životu. Onda, kako završavate zadatke u pravom životu i obeležavate, zaradićete iskustvo i zlato. Zlatom se kupuje oprema i neki predmeti,kao i nagrade koje ste sami napravili. Iskustvo daje vašem liku nivoe i otključava stvari kao što su Zveri, Veštine, (and Quests!) Možete da birate kako će vaš lik izgledati pod Meni > (Customize Avatar).\n\nNeki osnovni način interakcije: kliknite (+) u gornjem-desnom uglu da dodate nov zadatak. Tapnite na postojeći zadatak da ga prepravite, i prevucite nalevo na zadatak da ga obrišete. Možete da sortirate zadatke koristeći tagove u gornjem-levom-uglu, i proširite i skupite spisak.", - "webFaqAnswer0": "First, you'll set up tasks that you want to do in your everyday life. Then, as you complete the tasks in real life and check them off, you'll earn Experience and Gold. Gold is used to buy equipment and some items, as well as custom rewards. Experience causes your character to level up and unlock content such as pets, skills, and quests! For more detail, the wiki has an excellent step-by-step overview of the game [right here](http://habitica.wikia.com/wiki/Habitica_Wiki).", + "webFaqAnswer0": "First, you'll set up tasks that you want to do in your everyday life. Then, as you complete the tasks in real life and check them off, you'll earn Experience and Gold. Gold is used to buy equipment and some items, as well as custom rewards. Experience causes your character to level up and unlock content such as pets, skills, and quests! For more detail, check out a step-by-step overview of the game at [Help -> Overview for New Users](https://habitica.com/static/overview).", "faqQuestion1": "How do I set up my tasks?", "iosFaqAnswer1": "Good Habits (the ones with a +) are tasks that you can do many times a day, such as eating vegetables. Bad Habits (the ones with a -) are tasks that you should avoid, like biting nails. Habits with a + and a - have a good choice and a bad choice, like taking the stairs vs. taking the elevator. Good Habits award experience and gold. Bad Habits subtract health.\n\n Dailies are tasks that you have to do every day, like brushing your teeth or checking your email. You can adjust the days that a Daily is due by tapping to edit it. If you skip a Daily that is due, your avatar will take damage overnight. Be careful not to add too many Dailies at once!\n\n To-Dos are your To-Do list. Completing a To-Do earns you gold and experience. You never lose health from To-Dos. You can add a due date to a To-Do by tapping to edit.", "webFaqAnswer1": "Good Habits (the ones with a ) are tasks that you can do many times a day, such as eating vegetables. Bad Habits (the ones with a ) are tasks that you should avoid, like biting nails. Habits with a and a have a good choice and a bad choice, like taking the stairs vs. taking the elevator. Good Habits award Experience and Gold. Bad Habits subtract Health.\n

\n Dailies are tasks that you have to do every day, like brushing your teeth or checking your email. You can adjust the days that a Daily is due by clicking the pencil item to edit it. If you skip a Daily that is due, your avatar will take damage overnight. Be careful not to add too many Dailies at once!\n

\n To-Dos are your To-Do list. Completing a To-Do earns you Gold and Experience. You never lose Health from To-Dos. You can add a due date to a To-Do by clicking the pencil icon to edit.", diff --git a/common/locales/sr/gear.json b/common/locales/sr/gear.json index 73e1284944..5ce8046a9a 100644 --- a/common/locales/sr/gear.json +++ b/common/locales/sr/gear.json @@ -149,15 +149,19 @@ "weaponArmoireRancherLassoText": "Rancher Lasso", "weaponArmoireRancherLassoNotes": "Lassos: the ideal tool for rounding up and wrangling. Increases Strength by <%= str %>, Perception by <%= per %>, and Intelligence by <%= int %>. Enchanted Armoire: Rancher Set (Item 3 of 3).", "weaponArmoireMythmakerSwordText": "Mythmaker Sword", - "weaponArmoireMythmakerSwordNotes": "Though it may seem humble, this sword has made many mythic heroes. Increases Perception and Strength by <%= attrs %> each. Enchanted Armoire: Golden Toga Set (Item 3 of 3)", + "weaponArmoireMythmakerSwordNotes": "Though it may seem humble, this sword has made many mythic heroes. Increases Perception and Strength by <%= attrs %> each. Enchanted Armoire: Golden Toga Set (Item 3 of 3).", "weaponArmoireIronCrookText": "Iron Crook", - "weaponArmoireIronCrookNotes": "Fiercely hammered from iron, this iron crook is good at herding sheep. Increases Perception and Strength by <%= attrs %> each. Enchanted Armoire: Horned Iron Set (Item 3 of 3)", + "weaponArmoireIronCrookNotes": "Fiercely hammered from iron, this iron crook is good at herding sheep. Increases Perception and Strength by <%= attrs %> each. Enchanted Armoire: Horned Iron Set (Item 3 of 3).", "weaponArmoireGoldWingStaffText": "Gold Wing Staff", "weaponArmoireGoldWingStaffNotes": "The wings on this staff constantly flutter and twist. Increases all attributes by <%= attrs %> each. Enchanted Armoire: Independent Item.", "weaponArmoireBatWandText": "Bat Wand", "weaponArmoireBatWandNotes": "This wand can turn any task into a bat! Wave it about and watch them fly away. Increases Intelligence by <%= int %> and Perception by <%= per %>. Enchanted Armoire: Independent Item.", "weaponArmoireShepherdsCrookText": "Shepherd's Crook", "weaponArmoireShepherdsCrookNotes": "Useful for herding gryphons. Increases Constitution by <%= con %>. Enchanted Armoire: Shepherd Set (Item 1 of 3).", + "weaponArmoireCrystalCrescentStaffText": "Crystal Crescent Staff", + "weaponArmoireCrystalCrescentStaffNotes": "Summon the power of the crescent moon with this shining staff! Increases Intelligence and Strength by <%= attrs %> each. Enchanted Armoire: Crystal Crescent Set (Item 3 of 3).", + "weaponArmoireBlueLongbowText": "Blue Longbow", + "weaponArmoireBlueLongbowNotes": "Ready... Aim... Fire! This bow has great range. Increases Perception by 9, Constitution by 8, and Strength by 7. Enchanted Armoire: Independent Item.", "armor": "oklop", "armorBase0Text": "Obična odeća", "armorBase0Notes": "Potpuno obična odeća. Ne daje nikakav bonus.", @@ -222,7 +226,7 @@ "armorSpecialBirthday2015Text": "Blesava odora za žurke", "armorSpecialBirthday2015Notes": "Srećan rođendan, Habitica! Obucite ovu Blesavu odoru za žurke i proslavite ovaj veliki dan. Ne daje nikakav bonus.", "armorSpecialGaymerxText": "Dugin ratnički oklop", - "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.", + "armorSpecialGaymerxNotes": "In celebration of the GaymerX Conference, this special armor is decorated with a radiant, colorful rainbow pattern! GaymerX is a game convention celebrating LGTBQ and gaming and is open to everyone.", "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", @@ -309,6 +313,8 @@ "armorMystery201508Notes": "Run fast as a flash in the fluffy Cheetah Costume! Confers no benefit. August 2015 Subscriber Item.", "armorMystery201509Text": "Werewolf Costume", "armorMystery201509Notes": "This IS a costume, right? Confers no benefit. September 2015 Subscriber Item.", + "armorMystery201511Text": "Wooden Armor", + "armorMystery201511Notes": "Considering this armor was carved directly from a magical log, it's surprisingly comfortable. Confers no benefit. November 2015 Subscriber Item.", "armorMystery301404Text": "Stimpank odelo", "armorMystery301404Notes": "Kicoško i zanosno! Ne daje nikakav bonus. Predmet za pretplatnike februar 3015..", "armorArmoireLunarArmorText": "Soothing Lunar Armor", @@ -327,6 +333,8 @@ "armorArmoireShepherdRobesNotes": "The fabric is cool and breathable, perfect for a hot day herding gryphons in the desert. Increases Strength and Perception by <%= attrs %> each. Enchanted Armoire: Shepherd Set (Item 2 of 3).", "armorArmoireRoyalRobesText": "Royal Robes", "armorArmoireRoyalRobesNotes": "Wonderful ruler, rule all day long! Increases Constitution, Intelligence, and Perception by <%= attrs %> each. Enchanted Armoire: Royal Set (Item 3 of 3).", + "armorArmoireCrystalCrescentRobesText": "Crystal Crescent Robes", + "armorArmoireCrystalCrescentRobesNotes": "These magical robes are luminescent at night. Increases Constitution and Perception by <%= attrs %> each. Enchanted Armoire: Crystal Crescent Set (Item 2 of 3).", "headgear": "šlemovi", "headBase0Text": "Bez šlema", "headBase0Notes": "Gola glava", @@ -447,7 +455,7 @@ "headSpecialFall2015HealerText": "Hat of Frog", "headSpecialFall2015HealerNotes": "This is an extremely serious hat that is worthy of only the most advanced potioners. Increases Intelligence by <%= int %>. Limited Edition 2015 Autumn Gear.", "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.", + "headSpecialGaymerxNotes": "In celebration of the GaymerX Conference, this special helmet is decorated with a radiant, colorful rainbow pattern! GaymerX is a game convention celebrating LGTBQ and gaming and is open to everyone.", "headMystery201402Text": "Krilati šlem", "headMystery201402Notes": "Ova krilata kruna daje vlasniku brzinu vetra. Ne daje nikakav bonus. Predmet za pretplatnike februar 2014.", "headMystery201405Text": "Plamen iz uma", @@ -470,6 +478,8 @@ "headMystery201508Notes": "This cozy cheetah hat is very fuzzy! Confers no benefit. August 2015 Subscriber Item.", "headMystery201509Text": "Werewolf Mask", "headMystery201509Notes": "This IS a mask, right? Confers no benefit. September 2015 Subscriber Item.", + "headMystery201511Text": "Log Crown", + "headMystery201511Notes": "Count the number of rings to learn how old this crown is. Confers no benefit. November 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", @@ -506,6 +516,8 @@ "headArmoireBlueFloppyHatNotes": "Many spells have been sewn into this simple hat, giving it a brilliant blue color. Increases Constitution, Intelligence, and Perception by <%= attrs %> each. Enchanted Armoire: Independent Item.", "headArmoireShepherdHeaddressText": "Shepherd Headdress", "headArmoireShepherdHeaddressNotes": "Sometimes the gryphons that you herd like to chew on this headdress, but it makes you seem more intelligent nonetheless. Increases Intelligence by <%= int %>. Enchanted Armoire: Shepherd Set (Item 3 of 3).", + "headArmoireCrystalCrescentHatText": "Crystal Crescent Hat", + "headArmoireCrystalCrescentHatNotes": "The design on this hat waxes and wanes with the phases of the moon. Increases Intelligence and Perception by <%= attrs %> each. Enchanted Armoire: Crystal Crescent Set (Item 1 of 3).", "offhand": "predmet za levu ruku", "shieldBase0Text": "Nema opreme za levu ruku", "shieldBase0Notes": "Nema štita ni drugog oružja", diff --git a/common/locales/sr/limited.json b/common/locales/sr/limited.json index b2949c7a64..961ca76208 100644 --- a/common/locales/sr/limited.json +++ b/common/locales/sr/limited.json @@ -21,6 +21,7 @@ "valentineCardAchievementText": "Aww, you and your friend must really care about each other! Sent or received <%= cards %> Valentine's Day cards.", "polarBear": "Beli medved", "turkey": "Ćurka", + "gildedTurkey": "Gilded Turkey", "polarBearPup": "Mladunče belog medveda", "jackolantern": "Svetiljka od bundeve", "seasonalShop": "Prodavnica sezonskih predmeta", diff --git a/common/locales/sr/settings.json b/common/locales/sr/settings.json index 86219943c0..ef02142a2c 100644 --- a/common/locales/sr/settings.json +++ b/common/locales/sr/settings.json @@ -143,5 +143,8 @@ "gemCapExtra": "Gem Cap Extra:", "mysticHourglasses": "Mystic Hourglasses:", "paypal": "PayPal", - "amazonPayments": "Amazon Payments" + "amazonPayments": "Amazon Payments", + "timezone": "Time Zone", + "timezoneUTC": "Habitica uses the time zone set on your PC, which is: <%= utc %>", + "timezoneInfo": "If that time zone is wrong, first reload this page using your browser's reload or refresh button to ensure that Habitica has the most recent information. If it is still wrong, adjust the time zone on your PC and then reload this page again.

If you use Habitica on other PCs or mobile devices, the time zone must be the same on them all. If your Dailies have been reseting at the wrong time, repeat this check on all other PCs and on a browser on your mobile devices." } \ No newline at end of file diff --git a/common/locales/sr/tasks.json b/common/locales/sr/tasks.json index 33827b4f1f..77eebadc19 100644 --- a/common/locales/sr/tasks.json +++ b/common/locales/sr/tasks.json @@ -88,8 +88,7 @@ "fortifyText": "Fortify will return all your tasks to a neutral (yellow) state, as if you'd just added them, and top your Health off to full. This is great if all your red tasks are making the game too hard, or all your blue tasks are making the game too easy. If starting fresh sounds much more motivating, spend the Gems and catch a reprieve!", "sureDelete": "Jeste li sigurni da želite da obrišete ovaj zadatak?", "streakCoins": "Bonus zbog redovnog izvršavanja zadataka!", - "pushTaskToTop": "Premesti zadatak na vrh", - "pushTaskToBottom": "Premesti zadatak na dno", + "pushTaskToTop": "Push task to top. Hold ctrl or cmd to push to bottom.", "emptyTask": "Prvo ukucajte naziv zadatka.", "dailiesRestingInInn": "Odmarate se u Gostionici! Svakodnevni zadaci će na početku dana biti obeleženi kao neurađeni, ali nećete trpeti štetu zbog neurađenih zadataka na kraju dana. Ako učestvujete u misiji, nećete nanositi štetu bosu, ni dobijati predmete, dok se ne odjavite iz Gostionice. Ako članovi družine budu imali neurađene svakodnevne zadatke, bos će povrediti i Vas.", "habitHelp1": "Good Habits are things that you do often. They award Gold and Experience every time you click the <%= plusIcon %>.", diff --git a/common/locales/sv/backgrounds.json b/common/locales/sv/backgrounds.json index 0790ba13d9..20239e09f5 100644 --- a/common/locales/sv/backgrounds.json +++ b/common/locales/sv/backgrounds.json @@ -125,5 +125,12 @@ "backgroundNightDunesText": "Night Dunes", "backgroundNightDunesNotes": "Walk peacefully through the Night Dunes.", "backgroundSunsetOasisText": "Sunset Oasis", - "backgroundSunsetOasisNotes": "Bask in the Sunset Oasis." + "backgroundSunsetOasisNotes": "Bask in the Sunset Oasis.", + "backgrounds122015": "SET 19: Released December 2015", + "backgroundAlpineSlopesText": "Alpine Slopes", + "backgroundAlpineSlopesNotes": "Ski on the Alpine Slopes.", + "backgroundSnowySunriseText": "Snowy Sunrise", + "backgroundSnowySunriseNotes": "Gaze at the Snowy Sunrise.", + "backgroundWinterTownText": "Winter Town", + "backgroundWinterTownNotes": "Bustle through a Winter Town." } \ No newline at end of file diff --git a/common/locales/sv/faq.json b/common/locales/sv/faq.json index 22f7b8599f..da4277f7f7 100644 --- a/common/locales/sv/faq.json +++ b/common/locales/sv/faq.json @@ -2,7 +2,7 @@ "frequentlyAskedQuestions": "Frekvent Ställda Frågor", "faqQuestion0": "Jag är förvirrad. Var kan jag få en överblick?", "iosFaqAnswer0": "First, you'll set up tasks that you want to do in your everyday life. Then, as you complete the tasks in real life and check them off, you'll earn experience and gold. Gold is used to buy equipment and some items, as well as custom rewards. Experience causes your character to level up and unlock content such as Pets, Skills, and Quests! You can customize your character under Menu > Customize Avatar.\n\n Some basic ways to interact: click the (+) in the upper-right-hand corner to add a new task. Tap on an existing task to edit it, and swipe left on a task to delete it. You can sort tasks using Tags in the upper-left-hand corner, and expand and contract checklists by clicking on the checklist bubble.", - "webFaqAnswer0": "First, you'll set up tasks that you want to do in your everyday life. Then, as you complete the tasks in real life and check them off, you'll earn Experience and Gold. Gold is used to buy equipment and some items, as well as custom rewards. Experience causes your character to level up and unlock content such as pets, skills, and quests! For more detail, the wiki has an excellent step-by-step overview of the game [right here](http://habitica.wikia.com/wiki/Habitica_Wiki).", + "webFaqAnswer0": "First, you'll set up tasks that you want to do in your everyday life. Then, as you complete the tasks in real life and check them off, you'll earn Experience and Gold. Gold is used to buy equipment and some items, as well as custom rewards. Experience causes your character to level up and unlock content such as pets, skills, and quests! For more detail, check out a step-by-step overview of the game at [Help -> Overview for New Users](https://habitica.com/static/overview).", "faqQuestion1": "Hur ställer jag in mina uppgifter?", "iosFaqAnswer1": "Good Habits (the ones with a +) are tasks that you can do many times a day, such as eating vegetables. Bad Habits (the ones with a -) are tasks that you should avoid, like biting nails. Habits with a + and a - have a good choice and a bad choice, like taking the stairs vs. taking the elevator. Good Habits award experience and gold. Bad Habits subtract health.\n\n Dailies are tasks that you have to do every day, like brushing your teeth or checking your email. You can adjust the days that a Daily is due by tapping to edit it. If you skip a Daily that is due, your avatar will take damage overnight. Be careful not to add too many Dailies at once!\n\n To-Dos are your To-Do list. Completing a To-Do earns you gold and experience. You never lose health from To-Dos. You can add a due date to a To-Do by tapping to edit.", "webFaqAnswer1": "Good Habits (the ones with a ) are tasks that you can do many times a day, such as eating vegetables. Bad Habits (the ones with a ) are tasks that you should avoid, like biting nails. Habits with a and a have a good choice and a bad choice, like taking the stairs vs. taking the elevator. Good Habits award Experience and Gold. Bad Habits subtract Health.\n

\n Dailies are tasks that you have to do every day, like brushing your teeth or checking your email. You can adjust the days that a Daily is due by clicking the pencil item to edit it. If you skip a Daily that is due, your avatar will take damage overnight. Be careful not to add too many Dailies at once!\n

\n To-Dos are your To-Do list. Completing a To-Do earns you Gold and Experience. You never lose Health from To-Dos. You can add a due date to a To-Do by clicking the pencil icon to edit.", diff --git a/common/locales/sv/gear.json b/common/locales/sv/gear.json index 5730337f58..737756c42f 100644 --- a/common/locales/sv/gear.json +++ b/common/locales/sv/gear.json @@ -149,15 +149,19 @@ "weaponArmoireRancherLassoText": "Rancher Lasso", "weaponArmoireRancherLassoNotes": "Lassos: the ideal tool for rounding up and wrangling. Increases Strength by <%= str %>, Perception by <%= per %>, and Intelligence by <%= int %>. Enchanted Armoire: Rancher Set (Item 3 of 3).", "weaponArmoireMythmakerSwordText": "Mythmaker Sword", - "weaponArmoireMythmakerSwordNotes": "Though it may seem humble, this sword has made many mythic heroes. Increases Perception and Strength by <%= attrs %> each. Enchanted Armoire: Golden Toga Set (Item 3 of 3)", + "weaponArmoireMythmakerSwordNotes": "Though it may seem humble, this sword has made many mythic heroes. Increases Perception and Strength by <%= attrs %> each. Enchanted Armoire: Golden Toga Set (Item 3 of 3).", "weaponArmoireIronCrookText": "Iron Crook", - "weaponArmoireIronCrookNotes": "Fiercely hammered from iron, this iron crook is good at herding sheep. Increases Perception and Strength by <%= attrs %> each. Enchanted Armoire: Horned Iron Set (Item 3 of 3)", + "weaponArmoireIronCrookNotes": "Fiercely hammered from iron, this iron crook is good at herding sheep. Increases Perception and Strength by <%= attrs %> each. Enchanted Armoire: Horned Iron Set (Item 3 of 3).", "weaponArmoireGoldWingStaffText": "Gold Wing Staff", "weaponArmoireGoldWingStaffNotes": "The wings on this staff constantly flutter and twist. Increases all attributes by <%= attrs %> each. Enchanted Armoire: Independent Item.", "weaponArmoireBatWandText": "Bat Wand", "weaponArmoireBatWandNotes": "This wand can turn any task into a bat! Wave it about and watch them fly away. Increases Intelligence by <%= int %> and Perception by <%= per %>. Enchanted Armoire: Independent Item.", "weaponArmoireShepherdsCrookText": "Shepherd's Crook", "weaponArmoireShepherdsCrookNotes": "Useful for herding gryphons. Increases Constitution by <%= con %>. Enchanted Armoire: Shepherd Set (Item 1 of 3).", + "weaponArmoireCrystalCrescentStaffText": "Crystal Crescent Staff", + "weaponArmoireCrystalCrescentStaffNotes": "Summon the power of the crescent moon with this shining staff! Increases Intelligence and Strength by <%= attrs %> each. Enchanted Armoire: Crystal Crescent Set (Item 3 of 3).", + "weaponArmoireBlueLongbowText": "Blue Longbow", + "weaponArmoireBlueLongbowNotes": "Ready... Aim... Fire! This bow has great range. Increases Perception by 9, Constitution by 8, and Strength by 7. Enchanted Armoire: Independent Item.", "armor": "utrustning", "armorBase0Text": "Vanliga kläder", "armorBase0Notes": "Vanliga kläder. Har ingen effekt.", @@ -222,7 +226,7 @@ "armorSpecialBirthday2015Text": "Löjliga partyrockar", "armorSpecialBirthday2015Notes": "Grattis på födelsedagen, Habitica! Bär dessa Fåniga Festdräkter för att fira denna underbara dag. Ger ingen fördel.", "armorSpecialGaymerxText": "Regnbågsfärgad krigarutrustning", - "armorSpecialGaymerxNotes": "In celebration of pride season and GaymerX, this special armor is decorated with a radiant, colorful rainbow pattern! GaymerX is a game convention celebrating LGBTQ and gaming and is open to everyone. It takes place at the InterContinental in downtown San Francisco on July 11-13! Confers no benefit.", + "armorSpecialGaymerxNotes": "In celebration of the GaymerX Conference, this special armor is decorated with a radiant, colorful rainbow pattern! GaymerX is a game convention celebrating LGTBQ and gaming and is open to everyone.", "armorSpecialSpringRogueText": "Smidig kattdräkt", "armorSpecialSpringRogueNotes": "Impeccably groomed. Increases Perception by <%= per %>. Limited Edition 2014 Spring Gear.", "armorSpecialSpringWarriorText": "Klöver-stålrustning", @@ -309,6 +313,8 @@ "armorMystery201508Notes": "Run fast as a flash in the fluffy Cheetah Costume! Confers no benefit. August 2015 Subscriber Item.", "armorMystery201509Text": "Werewolf Costume", "armorMystery201509Notes": "This IS a costume, right? Confers no benefit. September 2015 Subscriber Item.", + "armorMystery201511Text": "Wooden Armor", + "armorMystery201511Notes": "Considering this armor was carved directly from a magical log, it's surprisingly comfortable. Confers no benefit. November 2015 Subscriber Item.", "armorMystery301404Text": "Steampunk-dräkt", "armorMystery301404Notes": "Dapper and dashing, wot! Confers no benefit. February 3015 Subscriber Item.", "armorArmoireLunarArmorText": "Soothing Lunar Armor", @@ -327,6 +333,8 @@ "armorArmoireShepherdRobesNotes": "The fabric is cool and breathable, perfect for a hot day herding gryphons in the desert. Increases Strength and Perception by <%= attrs %> each. Enchanted Armoire: Shepherd Set (Item 2 of 3).", "armorArmoireRoyalRobesText": "Royal Robes", "armorArmoireRoyalRobesNotes": "Wonderful ruler, rule all day long! Increases Constitution, Intelligence, and Perception by <%= attrs %> each. Enchanted Armoire: Royal Set (Item 3 of 3).", + "armorArmoireCrystalCrescentRobesText": "Crystal Crescent Robes", + "armorArmoireCrystalCrescentRobesNotes": "These magical robes are luminescent at night. Increases Constitution and Perception by <%= attrs %> each. Enchanted Armoire: Crystal Crescent Set (Item 2 of 3).", "headgear": "huvudbonader", "headBase0Text": "Ingen hjälm", "headBase0Notes": "Ingen huvudbonad.", @@ -447,7 +455,7 @@ "headSpecialFall2015HealerText": "Hat of Frog", "headSpecialFall2015HealerNotes": "This is an extremely serious hat that is worthy of only the most advanced potioners. Increases Intelligence by <%= int %>. Limited Edition 2015 Autumn Gear.", "headSpecialGaymerxText": "Regnbågsfärgad krigarhjälm", - "headSpecialGaymerxNotes": "In celebration of pride season and GaymerX, this special helmet is decorated with a radiant, colorful rainbow pattern! GaymerX is a game convention celebrating LGBTQ and gaming and is open to everyone. It takes place at the InterContinental in downtown San Francisco on July 11-13! Confers no benefit.", + "headSpecialGaymerxNotes": "In celebration of the GaymerX Conference, this special helmet is decorated with a radiant, colorful rainbow pattern! GaymerX is a game convention celebrating LGTBQ and gaming and is open to everyone.", "headMystery201402Text": "Bevingad hjälm", "headMystery201402Notes": "This winged circlet imbues the wearer with the speed of the wind! Confers no benefit. February 2014 Subscriber Item.", "headMystery201405Text": "Flame of Mind", @@ -470,6 +478,8 @@ "headMystery201508Notes": "This cozy cheetah hat is very fuzzy! Confers no benefit. August 2015 Subscriber Item.", "headMystery201509Text": "Werewolf Mask", "headMystery201509Notes": "This IS a mask, right? Confers no benefit. September 2015 Subscriber Item.", + "headMystery201511Text": "Log Crown", + "headMystery201511Notes": "Count the number of rings to learn how old this crown is. Confers no benefit. November 2015 Subscriber Item.", "headMystery301404Text": "Stilig cylinderhatt", "headMystery301404Notes": "A fancy top hat for the finest of gentlefolk! January 3015 Subscriber Item. Confers no benefit.", "headMystery301405Text": "Vanlig cylinderhatt", @@ -506,6 +516,8 @@ "headArmoireBlueFloppyHatNotes": "Many spells have been sewn into this simple hat, giving it a brilliant blue color. Increases Constitution, Intelligence, and Perception by <%= attrs %> each. Enchanted Armoire: Independent Item.", "headArmoireShepherdHeaddressText": "Shepherd Headdress", "headArmoireShepherdHeaddressNotes": "Sometimes the gryphons that you herd like to chew on this headdress, but it makes you seem more intelligent nonetheless. Increases Intelligence by <%= int %>. Enchanted Armoire: Shepherd Set (Item 3 of 3).", + "headArmoireCrystalCrescentHatText": "Crystal Crescent Hat", + "headArmoireCrystalCrescentHatNotes": "The design on this hat waxes and wanes with the phases of the moon. Increases Intelligence and Perception by <%= attrs %> each. Enchanted Armoire: Crystal Crescent Set (Item 1 of 3).", "offhand": "shield-hand item", "shieldBase0Text": "No Shield-Hand Equipment", "shieldBase0Notes": "Ingen sköld eller sekundärt vapen.", diff --git a/common/locales/sv/limited.json b/common/locales/sv/limited.json index 7a7998a641..d62ee1f5ae 100644 --- a/common/locales/sv/limited.json +++ b/common/locales/sv/limited.json @@ -21,6 +21,7 @@ "valentineCardAchievementText": "Aww, you and your friend must really care about each other! Sent or received <%= cards %> Valentine's Day cards.", "polarBear": "Isbjörn", "turkey": "Kalkon", + "gildedTurkey": "Gilded Turkey", "polarBearPup": "Isbjörnsunge", "jackolantern": "Lyktgubbe", "seasonalShop": "Säsongsbutik", diff --git a/common/locales/sv/settings.json b/common/locales/sv/settings.json index 8f866a8417..b7228b34fc 100644 --- a/common/locales/sv/settings.json +++ b/common/locales/sv/settings.json @@ -143,5 +143,8 @@ "gemCapExtra": "Gem Cap Extra:", "mysticHourglasses": "Mystic Hourglasses:", "paypal": "PayPal", - "amazonPayments": "Amazon Payments" + "amazonPayments": "Amazon Payments", + "timezone": "Time Zone", + "timezoneUTC": "Habitica uses the time zone set on your PC, which is: <%= utc %>", + "timezoneInfo": "If that time zone is wrong, first reload this page using your browser's reload or refresh button to ensure that Habitica has the most recent information. If it is still wrong, adjust the time zone on your PC and then reload this page again.

If you use Habitica on other PCs or mobile devices, the time zone must be the same on them all. If your Dailies have been reseting at the wrong time, repeat this check on all other PCs and on a browser on your mobile devices." } \ No newline at end of file diff --git a/common/locales/sv/tasks.json b/common/locales/sv/tasks.json index 2fd639b275..0cfa24e08a 100644 --- a/common/locales/sv/tasks.json +++ b/common/locales/sv/tasks.json @@ -88,8 +88,7 @@ "fortifyText": "Fortify will return all your tasks to a neutral (yellow) state, as if you'd just added them, and top your Health off to full. This is great if all your red tasks are making the game too hard, or all your blue tasks are making the game too easy. If starting fresh sounds much more motivating, spend the Gems and catch a reprieve!", "sureDelete": "Är du säker att du vill ta bort denna uppgift?", "streakCoins": "Följdbonus!", - "pushTaskToTop": "Förflytta uppgift till toppen", - "pushTaskToBottom": "Förflytta uppgift till botten", + "pushTaskToTop": "Push task to top. Hold ctrl or cmd to push to bottom.", "emptyTask": "Skriv in uppgiftens titel först.", "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.", "habitHelp1": "Good Habits are things that you do often. They award Gold and Experience every time you click the <%= plusIcon %>.", diff --git a/common/locales/uk/backgrounds.json b/common/locales/uk/backgrounds.json index f89ae62fa1..1854182aad 100644 --- a/common/locales/uk/backgrounds.json +++ b/common/locales/uk/backgrounds.json @@ -125,5 +125,12 @@ "backgroundNightDunesText": "Night Dunes", "backgroundNightDunesNotes": "Walk peacefully through the Night Dunes.", "backgroundSunsetOasisText": "Sunset Oasis", - "backgroundSunsetOasisNotes": "Bask in the Sunset Oasis." + "backgroundSunsetOasisNotes": "Bask in the Sunset Oasis.", + "backgrounds122015": "SET 19: Released December 2015", + "backgroundAlpineSlopesText": "Alpine Slopes", + "backgroundAlpineSlopesNotes": "Ski on the Alpine Slopes.", + "backgroundSnowySunriseText": "Snowy Sunrise", + "backgroundSnowySunriseNotes": "Gaze at the Snowy Sunrise.", + "backgroundWinterTownText": "Winter Town", + "backgroundWinterTownNotes": "Bustle through a Winter Town." } \ No newline at end of file diff --git a/common/locales/uk/faq.json b/common/locales/uk/faq.json index 97ac6e5c37..587ba838c6 100644 --- a/common/locales/uk/faq.json +++ b/common/locales/uk/faq.json @@ -2,7 +2,7 @@ "frequentlyAskedQuestions": "Frequently Asked Questions", "faqQuestion0": "I'm confused. Where do I get an overview?", "iosFaqAnswer0": "First, you'll set up tasks that you want to do in your everyday life. Then, as you complete the tasks in real life and check them off, you'll earn experience and gold. Gold is used to buy equipment and some items, as well as custom rewards. Experience causes your character to level up and unlock content such as Pets, Skills, and Quests! You can customize your character under Menu > Customize Avatar.\n\n Some basic ways to interact: click the (+) in the upper-right-hand corner to add a new task. Tap on an existing task to edit it, and swipe left on a task to delete it. You can sort tasks using Tags in the upper-left-hand corner, and expand and contract checklists by clicking on the checklist bubble.", - "webFaqAnswer0": "First, you'll set up tasks that you want to do in your everyday life. Then, as you complete the tasks in real life and check them off, you'll earn Experience and Gold. Gold is used to buy equipment and some items, as well as custom rewards. Experience causes your character to level up and unlock content such as pets, skills, and quests! For more detail, the wiki has an excellent step-by-step overview of the game [right here](http://habitica.wikia.com/wiki/Habitica_Wiki).", + "webFaqAnswer0": "First, you'll set up tasks that you want to do in your everyday life. Then, as you complete the tasks in real life and check them off, you'll earn Experience and Gold. Gold is used to buy equipment and some items, as well as custom rewards. Experience causes your character to level up and unlock content such as pets, skills, and quests! For more detail, check out a step-by-step overview of the game at [Help -> Overview for New Users](https://habitica.com/static/overview).", "faqQuestion1": "How do I set up my tasks?", "iosFaqAnswer1": "Good Habits (the ones with a +) are tasks that you can do many times a day, such as eating vegetables. Bad Habits (the ones with a -) are tasks that you should avoid, like biting nails. Habits with a + and a - have a good choice and a bad choice, like taking the stairs vs. taking the elevator. Good Habits award experience and gold. Bad Habits subtract health.\n\n Dailies are tasks that you have to do every day, like brushing your teeth or checking your email. You can adjust the days that a Daily is due by tapping to edit it. If you skip a Daily that is due, your avatar will take damage overnight. Be careful not to add too many Dailies at once!\n\n To-Dos are your To-Do list. Completing a To-Do earns you gold and experience. You never lose health from To-Dos. You can add a due date to a To-Do by tapping to edit.", "webFaqAnswer1": "Good Habits (the ones with a ) are tasks that you can do many times a day, such as eating vegetables. Bad Habits (the ones with a ) are tasks that you should avoid, like biting nails. Habits with a and a have a good choice and a bad choice, like taking the stairs vs. taking the elevator. Good Habits award Experience and Gold. Bad Habits subtract Health.\n

\n Dailies are tasks that you have to do every day, like brushing your teeth or checking your email. You can adjust the days that a Daily is due by clicking the pencil item to edit it. If you skip a Daily that is due, your avatar will take damage overnight. Be careful not to add too many Dailies at once!\n

\n To-Dos are your To-Do list. Completing a To-Do earns you Gold and Experience. You never lose Health from To-Dos. You can add a due date to a To-Do by clicking the pencil icon to edit.", diff --git a/common/locales/uk/gear.json b/common/locales/uk/gear.json index 176886c4e8..eed6de566c 100644 --- a/common/locales/uk/gear.json +++ b/common/locales/uk/gear.json @@ -149,15 +149,19 @@ "weaponArmoireRancherLassoText": "Rancher Lasso", "weaponArmoireRancherLassoNotes": "Lassos: the ideal tool for rounding up and wrangling. Increases Strength by <%= str %>, Perception by <%= per %>, and Intelligence by <%= int %>. Enchanted Armoire: Rancher Set (Item 3 of 3).", "weaponArmoireMythmakerSwordText": "Mythmaker Sword", - "weaponArmoireMythmakerSwordNotes": "Though it may seem humble, this sword has made many mythic heroes. Increases Perception and Strength by <%= attrs %> each. Enchanted Armoire: Golden Toga Set (Item 3 of 3)", + "weaponArmoireMythmakerSwordNotes": "Though it may seem humble, this sword has made many mythic heroes. Increases Perception and Strength by <%= attrs %> each. Enchanted Armoire: Golden Toga Set (Item 3 of 3).", "weaponArmoireIronCrookText": "Iron Crook", - "weaponArmoireIronCrookNotes": "Fiercely hammered from iron, this iron crook is good at herding sheep. Increases Perception and Strength by <%= attrs %> each. Enchanted Armoire: Horned Iron Set (Item 3 of 3)", + "weaponArmoireIronCrookNotes": "Fiercely hammered from iron, this iron crook is good at herding sheep. Increases Perception and Strength by <%= attrs %> each. Enchanted Armoire: Horned Iron Set (Item 3 of 3).", "weaponArmoireGoldWingStaffText": "Gold Wing Staff", "weaponArmoireGoldWingStaffNotes": "The wings on this staff constantly flutter and twist. Increases all attributes by <%= attrs %> each. Enchanted Armoire: Independent Item.", "weaponArmoireBatWandText": "Bat Wand", "weaponArmoireBatWandNotes": "This wand can turn any task into a bat! Wave it about and watch them fly away. Increases Intelligence by <%= int %> and Perception by <%= per %>. Enchanted Armoire: Independent Item.", "weaponArmoireShepherdsCrookText": "Shepherd's Crook", "weaponArmoireShepherdsCrookNotes": "Useful for herding gryphons. Increases Constitution by <%= con %>. Enchanted Armoire: Shepherd Set (Item 1 of 3).", + "weaponArmoireCrystalCrescentStaffText": "Crystal Crescent Staff", + "weaponArmoireCrystalCrescentStaffNotes": "Summon the power of the crescent moon with this shining staff! Increases Intelligence and Strength by <%= attrs %> each. Enchanted Armoire: Crystal Crescent Set (Item 3 of 3).", + "weaponArmoireBlueLongbowText": "Blue Longbow", + "weaponArmoireBlueLongbowNotes": "Ready... Aim... Fire! This bow has great range. Increases Perception by 9, Constitution by 8, and Strength by 7. Enchanted Armoire: Independent Item.", "armor": "броня", "armorBase0Text": "Звичайний одяг", "armorBase0Notes": "Звичайнісінький одяг. Так собі.", @@ -222,7 +226,7 @@ "armorSpecialBirthday2015Text": "Silly Party Robes", "armorSpecialBirthday2015Notes": "Happy Birthday, Habitica! Wear these Silly Party Robes to celebrate this wonderful day. Confers no benefit.", "armorSpecialGaymerxText": "Rainbow Warrior Armor", - "armorSpecialGaymerxNotes": "In celebration of pride season and GaymerX, this special armor is decorated with a radiant, colorful rainbow pattern! GaymerX is a game convention celebrating LGBTQ and gaming and is open to everyone. It takes place at the InterContinental in downtown San Francisco on July 11-13! Confers no benefit.", + "armorSpecialGaymerxNotes": "In celebration of the GaymerX Conference, this special armor is decorated with a radiant, colorful rainbow pattern! GaymerX is a game convention celebrating LGTBQ and gaming and is open to everyone.", "armorSpecialSpringRogueText": "Гладенький котячий костюм", "armorSpecialSpringRogueNotes": "Impeccably groomed. Increases Perception by <%= per %>. Limited Edition 2014 Spring Gear.", "armorSpecialSpringWarriorText": "Броня сталевої конюшини", @@ -309,6 +313,8 @@ "armorMystery201508Notes": "Run fast as a flash in the fluffy Cheetah Costume! Confers no benefit. August 2015 Subscriber Item.", "armorMystery201509Text": "Werewolf Costume", "armorMystery201509Notes": "This IS a costume, right? Confers no benefit. September 2015 Subscriber Item.", + "armorMystery201511Text": "Wooden Armor", + "armorMystery201511Notes": "Considering this armor was carved directly from a magical log, it's surprisingly comfortable. Confers no benefit. November 2015 Subscriber Item.", "armorMystery301404Text": "Steampunk Suit", "armorMystery301404Notes": "Dapper and dashing, wot! Confers no benefit. February 3015 Subscriber Item.", "armorArmoireLunarArmorText": "Soothing Lunar Armor", @@ -327,6 +333,8 @@ "armorArmoireShepherdRobesNotes": "The fabric is cool and breathable, perfect for a hot day herding gryphons in the desert. Increases Strength and Perception by <%= attrs %> each. Enchanted Armoire: Shepherd Set (Item 2 of 3).", "armorArmoireRoyalRobesText": "Royal Robes", "armorArmoireRoyalRobesNotes": "Wonderful ruler, rule all day long! Increases Constitution, Intelligence, and Perception by <%= attrs %> each. Enchanted Armoire: Royal Set (Item 3 of 3).", + "armorArmoireCrystalCrescentRobesText": "Crystal Crescent Robes", + "armorArmoireCrystalCrescentRobesNotes": "These magical robes are luminescent at night. Increases Constitution and Perception by <%= attrs %> each. Enchanted Armoire: Crystal Crescent Set (Item 2 of 3).", "headgear": "headgear", "headBase0Text": "Без шолома", "headBase0Notes": "Без головного убору", @@ -447,7 +455,7 @@ "headSpecialFall2015HealerText": "Hat of Frog", "headSpecialFall2015HealerNotes": "This is an extremely serious hat that is worthy of only the most advanced potioners. Increases Intelligence by <%= int %>. Limited Edition 2015 Autumn Gear.", "headSpecialGaymerxText": "Rainbow Warrior Helm", - "headSpecialGaymerxNotes": "In celebration of pride season and GaymerX, this special helmet is decorated with a radiant, colorful rainbow pattern! GaymerX is a game convention celebrating LGBTQ and gaming and is open to everyone. It takes place at the InterContinental in downtown San Francisco on July 11-13! Confers no benefit.", + "headSpecialGaymerxNotes": "In celebration of the GaymerX Conference, this special helmet is decorated with a radiant, colorful rainbow pattern! GaymerX is a game convention celebrating LGTBQ and gaming and is open to everyone.", "headMystery201402Text": "Крилатий шолом", "headMystery201402Notes": "This winged circlet imbues the wearer with the speed of the wind! Confers no benefit. February 2014 Subscriber Item.", "headMystery201405Text": "Flame of Mind", @@ -470,6 +478,8 @@ "headMystery201508Notes": "This cozy cheetah hat is very fuzzy! Confers no benefit. August 2015 Subscriber Item.", "headMystery201509Text": "Werewolf Mask", "headMystery201509Notes": "This IS a mask, right? Confers no benefit. September 2015 Subscriber Item.", + "headMystery201511Text": "Log Crown", + "headMystery201511Notes": "Count the number of rings to learn how old this crown is. Confers no benefit. November 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", @@ -506,6 +516,8 @@ "headArmoireBlueFloppyHatNotes": "Many spells have been sewn into this simple hat, giving it a brilliant blue color. Increases Constitution, Intelligence, and Perception by <%= attrs %> each. Enchanted Armoire: Independent Item.", "headArmoireShepherdHeaddressText": "Shepherd Headdress", "headArmoireShepherdHeaddressNotes": "Sometimes the gryphons that you herd like to chew on this headdress, but it makes you seem more intelligent nonetheless. Increases Intelligence by <%= int %>. Enchanted Armoire: Shepherd Set (Item 3 of 3).", + "headArmoireCrystalCrescentHatText": "Crystal Crescent Hat", + "headArmoireCrystalCrescentHatNotes": "The design on this hat waxes and wanes with the phases of the moon. Increases Intelligence and Perception by <%= attrs %> each. Enchanted Armoire: Crystal Crescent Set (Item 1 of 3).", "offhand": "shield-hand item", "shieldBase0Text": "No Shield-Hand Equipment", "shieldBase0Notes": "Без щита чи другої зброї", diff --git a/common/locales/uk/limited.json b/common/locales/uk/limited.json index 3ea75597c7..95d20d4481 100644 --- a/common/locales/uk/limited.json +++ b/common/locales/uk/limited.json @@ -21,6 +21,7 @@ "valentineCardAchievementText": "Aww, you and your friend must really care about each other! Sent or received <%= cards %> Valentine's Day cards.", "polarBear": "Білий ведмідь", "turkey": "Індичка", + "gildedTurkey": "Gilded Turkey", "polarBearPup": "Біле ведмежа", "jackolantern": "Світильник Джека", "seasonalShop": "Сезонна крамниця", diff --git a/common/locales/uk/settings.json b/common/locales/uk/settings.json index feaa0a3acd..452e75911b 100644 --- a/common/locales/uk/settings.json +++ b/common/locales/uk/settings.json @@ -143,5 +143,8 @@ "gemCapExtra": "Gem Cap Extra:", "mysticHourglasses": "Mystic Hourglasses:", "paypal": "PayPal", - "amazonPayments": "Amazon Payments" + "amazonPayments": "Amazon Payments", + "timezone": "Time Zone", + "timezoneUTC": "Habitica uses the time zone set on your PC, which is: <%= utc %>", + "timezoneInfo": "If that time zone is wrong, first reload this page using your browser's reload or refresh button to ensure that Habitica has the most recent information. If it is still wrong, adjust the time zone on your PC and then reload this page again.

If you use Habitica on other PCs or mobile devices, the time zone must be the same on them all. If your Dailies have been reseting at the wrong time, repeat this check on all other PCs and on a browser on your mobile devices." } \ No newline at end of file diff --git a/common/locales/uk/tasks.json b/common/locales/uk/tasks.json index 1c48c6d400..aaa3adcdde 100644 --- a/common/locales/uk/tasks.json +++ b/common/locales/uk/tasks.json @@ -88,8 +88,7 @@ "fortifyText": "Підсилення поверне всі ваші завдання у нейтральний (жовтий) колір, немов ви щойно їх додали, та відновить все ваше здоров’я. Це дуже корисно, якщо ваші червоні задачі роблять гру занадто складною, а сині — занадто простою. Якщо новий початок з чистої сторінки вас мотивує, не шкодуйте самоцвіти та отримайте тимчасове полегшення!", "sureDelete": "Ви справді бажаєте вилучити це завдання?", "streakCoins": "Бонус за серію!", - "pushTaskToTop": "Перемістити завдання вгору", - "pushTaskToBottom": "Перемістити завдання вниз", + "pushTaskToTop": "Push task to top. Hold ctrl or cmd to push to bottom.", "emptyTask": "Спочатку введіть назву завдання", "dailiesRestingInInn": "Ви відпочиваєте у Господі! Ващі щоденні задачі НЕ пошкодять вас сьогодні, але вони БУДУТЬ оновлюватися кожної доби. Якщо ви у квесті, ви не будете наносити пошкоджень чи отримувати предмети, поки не залишите Господу, але ви все одно можете бути пошкоджени Босом, якщо хтось з вашого Гурту не виконає щоденні задачі.", "habitHelp1": "Корисні звички - це те, що ви часто робите. Вони приносять Золото та Досвід щоразу, як ви клацаєте <%= plusIcon %>.", diff --git a/common/locales/zh/backgrounds.json b/common/locales/zh/backgrounds.json index b7a9949950..c21ae8d4e9 100644 --- a/common/locales/zh/backgrounds.json +++ b/common/locales/zh/backgrounds.json @@ -125,5 +125,12 @@ "backgroundNightDunesText": "夜幕沙丘", "backgroundNightDunesNotes": "在夜幕沙丘中静静穿行", "backgroundSunsetOasisText": "日落绿洲", - "backgroundSunsetOasisNotes": "沐浴在日落绿洲" + "backgroundSunsetOasisNotes": "沐浴在日落绿洲", + "backgrounds122015": "SET 19: Released December 2015", + "backgroundAlpineSlopesText": "Alpine Slopes", + "backgroundAlpineSlopesNotes": "Ski on the Alpine Slopes.", + "backgroundSnowySunriseText": "Snowy Sunrise", + "backgroundSnowySunriseNotes": "Gaze at the Snowy Sunrise.", + "backgroundWinterTownText": "Winter Town", + "backgroundWinterTownNotes": "Bustle through a Winter Town." } \ No newline at end of file diff --git a/common/locales/zh/faq.json b/common/locales/zh/faq.json index 9163bd9d9e..7f3c1af2d7 100644 --- a/common/locales/zh/faq.json +++ b/common/locales/zh/faq.json @@ -2,7 +2,7 @@ "frequentlyAskedQuestions": "经常被问到的问题", "faqQuestion0": "我很迷惑。我在哪里能得到简介 ?", "iosFaqAnswer0": "首先,你要建立起你每天要完成的任务。然后,当你在现实生活中完成这些任务时,在应用中清点它们,你就会得到经验值和金钱。金钱可以用来买装备和一些物品,也可以用来买奖励。经验可以使你的人物升级,并解锁宠物、技能、任务等内容。你可以在菜单>装扮角色中装扮你的角色。\n\n一些基本的交互方法:点击右上角的(+)添加任务。点击一个已经存在的任务去编辑它,左滑来删除它。你可以用左上角标签给任务排序,并通过点击清单气泡来增大和缩小任务清单。", - "webFaqAnswer0": "首先,你需要设定你希望自己每天应该完成的日常任务,以后在平时完成这些任务时你可以给它们打个勾,这样你就能得到经验值和金币。金币可以用来购买装备和一些道具,还有自定义奖励。经验值能让你的角色升级成长,并解锁更多内容比如宠物,技能和任务!想了解更多信息,我们的维基能给你一个完美的进阶指导[就在这儿](http://habitica.wikia.com/wiki/Habitica_Wiki).", + "webFaqAnswer0": "First, you'll set up tasks that you want to do in your everyday life. Then, as you complete the tasks in real life and check them off, you'll earn Experience and Gold. Gold is used to buy equipment and some items, as well as custom rewards. Experience causes your character to level up and unlock content such as pets, skills, and quests! For more detail, check out a step-by-step overview of the game at [Help -> Overview for New Users](https://habitica.com/static/overview).", "faqQuestion1": "怎样来建立一个任务?", "iosFaqAnswer1": "好习惯(有+号的那些)养成任务你能够在一天之内完成很多次,比如多吃蔬菜。坏习惯(带有-号的)则是你需要避免去做的,比如啃指甲。同时带有+和-号的任务表示某件事可以有好坏两个选择,比如走楼梯上楼,还有乘坐电梯。养成好习惯能奖励你经验值和金币,坏习惯则会损害生命值。\n\n每日任务是你每天都必须完成的事项,比如刷牙,或者检查你的邮件。可以通过点击每日任务编辑任务完成期限,如果在一个任务到期前你没能完成它,你的健康值将降低,小心,不要一次性加太多每日任务!\n\n待办任务就是你的待办项列表,完成一个待办任务可以获得金币和经验值,你不会因为待办任务损失生命值,可以点击编辑一个待办任务来为它添加完成期限。", "webFaqAnswer1": "好习惯(有的那些)养成任务你能够在一天之内完成很多次,比如多吃蔬菜。坏习惯(带有的)则是你需要避免去做的,比如啃指甲。同时带有 的任务表示某件事可以有好坏两个选择,比如走楼梯上楼,还有乘坐电梯。养成好习惯能奖励你经验值和金币,坏习惯则会损害生命值。\n

\n每日任务是你每天都必须完成的事项,比如刷牙,或者检查你的邮件。可以通过点击每日任务编辑任务完成期限,如果在一个任务到期前你没能完成它,你的健康值将降低,小心,不要一次性加太多每日任务!\n

\n待办任务就是你的待办项列表,完成一个待办任务可以获得金币和经验值,你不会因为待办任务损失生命值,可以点击编辑一个待办任务来为它添加完成期限。", @@ -15,7 +15,7 @@ "faqQuestion4": "为什么我的头像显示生命值降低了,怎样才能重新获得生命值?", "iosFaqAnswer4": "有这样一些东西会减少你的生命值,第一,如果你有每日任务没完成,它会克扣你的生命值,第二,如果你“点击”了一个坏习惯,它也会伤害你的生命值,最后,如果你在和你的队员一起进行BOSS战时,一旦队伍中有一个成员没能完成每日任务,BOSS就会攻击你。\n\n回复生命值最主要的办法是升级,每一次升级时,所有的生命值都会回复。你也用金币从奖励栏里可以购买生命药剂。另外,在达到10级以上的级数时,你可以选择成为一个医师,然后学习治疗技能。如果你的队伍里有一个医师,他也能治疗你。", "webFaqAnswer4": "有这样一些东西会减少你的生命值,第一,如果你有每日任务没完成,它会克扣你的生命值,第二,如果你“点击”了一个坏习惯,它也会伤害你的生命值,最后,如果你在和你的队员一起进行BOSS战时,一旦队伍中有一个成员没能完成每日任务,BOSS就会攻击你。\n

\n回复生命值最主要的办法是升级,每一次升级时,所有的生命值都会回复。你也用金币从奖励栏里可以购买生命药剂。另外,在达到10级以上的级数时,你可以选择成为一个医师,然后学习治疗技能。如果你的队伍(可在社交>队伍里查看)里有一个医师,他也能治疗你。", - "faqQuestion5": "我怎么和朋友们以前玩Habitica?", + "faqQuestion5": "我怎么和朋友们一起玩Habitica?", "iosFaqAnswer5": "最好的办法是邀请他们加入你的战队!战队可以接受任务,和怪物作战,使用技能互相支持。 如果你还没有自己的队伍,进入目录 > 队伍点击“建立新的队伍”。 然后点击成员列表,在右上角选择邀请,输入朋友们的用户ID (一串由数字和字母组成的列表,可以在手机APP的设置 > 账户明细或者网页版的设置 > API下查看)。在网站上,你还可以使用email地址邀请朋友,在手机APP会在未来增加这个功能。\n\n在网页版上你和朋友们还能加入公会,即公共聊天室,APP也会跟进公会功能!", "webFaqAnswer5": "最好的方法就是邀请他们跟你一起加入队伍,选择「社交」>「队伍」。队伍可以参加任务卷轴、和魔王对抗、使用技能来支援彼此。你也可以加入公会(「社交」>「公会」),公会里面有聊天室,你可以在上面分享些新鲜事或者说说你想要达成的好习惯目标,你可以自由的选择要公开聊天或者私下。公会可以重复加入数个,但是队伍一次只能加入一组喔!\n

\n想要知道更多资讯,请点选我们的wiki页面\n[队伍](http://habitrpg.wikia.com/wiki/Party) \n[公会](http://habitrpg.wikia.com/wiki/Guilds)", "faqQuestion6": "我要怎样才能得到宠物或是坐骑呢?", diff --git a/common/locales/zh/front.json b/common/locales/zh/front.json index 5736a30985..bdc2a3ce0c 100644 --- a/common/locales/zh/front.json +++ b/common/locales/zh/front.json @@ -75,21 +75,21 @@ "invalidEmail": "执行密码重置需要一个有效的电子邮件地址。", "irishfeet123Quote": "我曾经习惯很烂,在吃饭之后不好好收拾,茶杯放得到处都是, [Habitica]解决了这个问题!", "joinOthers": "加入 <%= userCount %> 个玩家的队伍,让完成任务变得有趣!", - "kazuiQuote": "Before [Habitica], 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.", + "kazuiQuote": "加入[Habitica]之前,我的毕业论文卡住了,对我自己做家务,背单词和学习下棋的态度也很不满意。最后我发现,把这些任务拆分成可以管理的小待办事项是能让我保持动力和持续学习的最好办法。", "landingadminlink": "管理包", "landingend": "还没被说服?", "landingend2": "来看一些详细的", "landingend3": "希望找一个更私密的方式?看一下我们的", "landingend4": "它更适合家庭,老师,团体和商业活动。", "landingfeatureslink": "功能", - "landingp1": "The problem with most productivity apps on the market is that they provide no incentive to continue using them. Habitica fixes this by making habit building fun! By rewarding you for your successes and penalizing you for slip-ups, Habitica provides external motivation for completing your day-to-day activities.", + "landingp1": "市场上大多数生产力管理的应用最大的问题在于,它们缺乏让人们保持使用的动力。Habitica克服了这点,把好习惯塑造变成了一件非常有趣的事情!为自己的成功奖励自己,为自己的懒惰惩罚自己,Habitica为完成你的每日任务带来了超多动力。", "landingp2": "当你坚持一个好习惯,完成一个日常任务,或清除一个旧的待办事项,Habitica马上用经验和金币奖励你。你获得经验后会升级,增加属性并解锁更多功能,例如职业和宠物。金币可以用来购买提升经验的物品,或你创建的个人奖励。即便是最小的成功也会立刻给你奖励,使你变得不那么拖延。", "landingp2header": "即时激励", - "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 lose some of the progress you've made. By providing immediate consequences, Habitica can help break bad habits and procrastination cycles before they cause real-world problems.", + "landingp3": "一旦你沉溺于坏习惯,或者忘记完成你的某个每日任务,你就会掉血。如果你的健康值太低,你就会丢失一些你之前完成的进度。通过提供即时奖励,Habitica能够在你的坏习惯和拖延症伤害到你之前,帮你克服它们。", "landingp3header": "后果", - "landingp4": "With an active community, Habitica 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. In Habitica, the community means that you have both the support and the accountability you need to succeed.", + "landingp4": "Habitica的活跃在线社区是你保持任务进展的可靠保证。通过战队系统,你可以邀请一群你最好的朋友来为你加油。公会系统则能帮你找到与你志同道合的战友,让你们分享经验,共享成果。在Habitica,在线社区同时提供你所需要的支持,和你走向成功所需要的坚强后盾。", "landingp4header": "责任感", - "leadText": "Habitica 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, Habitica can help you achieve your goals to become healthy, hard-working, and happy.", + "leadText": "Habitica是一个免费的习惯养成及生产力应用,让你“游戏人生”。游戏里的奖惩措施能激励你完成任务,还有一个强大的互动社区给你完成任务的好建议。Habitica能够帮助你达成目标,变得健康,勤奋,快乐。", "login": "登录", "loginAndReg": "登录/登记", "loginFacebookAlt": "用FB登录/登记", @@ -107,7 +107,7 @@ "marketing2Lead3": "挑战 让你同你的朋友或其他人竞争。挑战的获胜者会赢得特殊的奖励。", "marketing3Header": "应用程式", "marketing3Lead1": "iPhone 和 安卓 应用程式可以让你外出时也能处理你的习惯。我们明白有时要登录网站点点按钮可能会成为一个负担。", - "marketing3Lead2": "Other 3rd Party Tools tie Habitica 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", + "marketing3Lead2": "其他第3方工具能够把Habitica和你生活中的不同方面联系起来。我们的API提供各种便捷的结合通道比如Chrome扩展,当你浏览浪费时间的网站时会克扣点数,反之则增加经验。点击这里查看更多", "marketing4Header": "组织使用", "marketing4Lead1": "教育是游戏化最适合的领域。我们都知道最近学生们多么热衷于手机和游戏,利用这种力量!给你的学生引入良性竞争。用稀有奖励奖赏那些好的行为。等着看他们的成绩和表现腾飞吧。", "marketing4Lead1Title": "教育游戏化", diff --git a/common/locales/zh/gear.json b/common/locales/zh/gear.json index dea579a71a..c7459b1f95 100644 --- a/common/locales/zh/gear.json +++ b/common/locales/zh/gear.json @@ -121,43 +121,47 @@ "weaponSpecialSummer2015RogueText": "炽烈珊瑚", "weaponSpecialSummer2015RogueNotes": "这个是烈焰珊瑚的分支装备,它拥有在水中散播毒液的能力。提高<%= str %>点力量。2015年夏季限量装备", "weaponSpecialSummer2015WarriorText": "日剑鱼", - "weaponSpecialSummer2015WarriorNotes": "The Sun Swordfish is a fearsome weapon, provided that it can be induced to stop wriggling. Increases Strength by <%= str %>. Limited Edition 2015 Summer Gear.", + "weaponSpecialSummer2015WarriorNotes": "日光剑鱼是一个可怕的武器,如果能让它不要再扭来扭去的话。增加 <%= str %>点力量。2015年秋季限量版装备。", "weaponSpecialSummer2015MageText": "轻语者之杖", - "weaponSpecialSummer2015MageNotes": "Hidden power glimmers in the jewels of this staff. Increases Intelligence by <%= int %> and Perception by <%= per %>. Limited Edition 2015 Summer Gear.", + "weaponSpecialSummer2015MageNotes": "在这柄法杖上的宝石里隐隐可见隐藏着的力量在闪耀。增加<%= int %>点智力和 <%= per %>点感知。限量版2015年夏季装备。", "weaponSpecialSummer2015HealerText": "涛之魔杖", "weaponSpecialSummer2015HealerNotes": "治疗晕船,和船晕!增加 <%= int %> 点智力。2015年夏天限量版装备。", - "weaponSpecialFall2015RogueText": "Bat-tle Ax", - "weaponSpecialFall2015RogueNotes": "Fearsome To-Dos cower before the flapping of this ax. Increases Strength by <%= str %>. Limited Edition 2015 Autumn Gear.", - "weaponSpecialFall2015WarriorText": "Wooden Plank", - "weaponSpecialFall2015WarriorNotes": "Great for elevating things in cornfields and/or smacking tasks. Increases Strength by <%= str %>. Limited Edition 2015 Autumn Gear.", - "weaponSpecialFall2015MageText": "Enchanted Thread", - "weaponSpecialFall2015MageNotes": "A powerful Stitch Witch can control this enchanted thread without even touching it! Increases Intelligence by <%= int %> and Perception by <%= per %>. Limited Edition 2015 Autumn Gear.", - "weaponSpecialFall2015HealerText": "Swamp-Slime Potion", - "weaponSpecialFall2015HealerNotes": "Brewed to perfection! Now you just have to convince yourself to drink it. Increases Intelligence by <%= int %>. Limited Edition 2015 Autumn Gear.", + "weaponSpecialFall2015RogueText": "战蝠", + "weaponSpecialFall2015RogueNotes": "那些令人生畏的待办事项都在这把神斧的挥砍之下瑟瑟发抖。增加<%= str %>点力量。2015年秋季限量版装备。", + "weaponSpecialFall2015WarriorText": "木板", + "weaponSpecialFall2015WarriorNotes": "用来在玉米地里架起东西以及干掉任务的话会很趁手。增加<%= str %>点力量。2015年秋季限量版装备。", + "weaponSpecialFall2015MageText": "魔法缝纫针", + "weaponSpecialFall2015MageNotes": "一位强大的缝纫女巫不用碰这根魔法阵就能控制它!增加<%= int %>点智力和<%= per %>点感知。2015年秋季限量版装备。", + "weaponSpecialFall2015HealerText": "沼泽史莱姆药剂", + "weaponSpecialFall2015HealerNotes": "完美调配!只要说服自己喝下去就行了。增加<%= int %>点智力。2015年秋季限量版装备。", "weaponMystery201411Text": "盛宴之叉", "weaponMystery201411Notes": "刺伤你的仇敌或是插进你最爱的食物——这把多才多艺的叉子可是无所不能!没有属性加成。2014年11月捐助者物品。", "weaponMystery201502Text": "爱与真理之微光翅膀法杖", "weaponMystery201502Notes": "为了翅膀!为了爱!也为了真理!没有属性加成。2015年2月捐赠者物品。", "weaponMystery201505Text": "绿色骑士长矛", - "weaponMystery201505Notes": "This green and silver lance has unseated many opponents from their mounts. Confers no benefit. May 2015 Subscriber Item.", + "weaponMystery201505Notes": "这柄银绿相间的长枪已经将许多强敌打落马下。无属性加成。2015年5月网站订阅者物品。", "weaponMystery301404Text": "蒸汽朋克手杖", "weaponMystery301404Notes": "特别适合在城里散步。3015年3月订阅者物品。没有属性加成。", "weaponArmoireBasicCrossbowText": "基本款弩", - "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).", + "weaponArmoireBasicCrossbowNotes": "这副十字弓可以在很远的距离刺穿一个任务的盔甲!增加<%= str %>点力量,<%= per %>点感知和<%= con %>点体质。", + "weaponArmoireLunarSceptreText": "圆月弯镰", + "weaponArmoireLunarSceptreNotes": "这把魔杖的治愈之力时隐时现。增加<%= con %>点体质和<%= int %>点智力。魔法衣橱:治愈之月套装(第3件物品)。", "weaponArmoireRancherLassoText": "牧场用套索", "weaponArmoireRancherLassoNotes": "Lassos: the ideal tool for rounding up and wrangling. Increases Strength by <%= str %>, Perception by <%= per %>, and Intelligence by <%= int %>. Enchanted Armoire: Rancher Set (Item 3 of 3).", - "weaponArmoireMythmakerSwordText": "Mythmaker Sword", - "weaponArmoireMythmakerSwordNotes": "Though it may seem humble, this sword has made many mythic heroes. Increases Perception and Strength by <%= attrs %> each. Enchanted Armoire: Golden Toga Set (Item 3 of 3)", + "weaponArmoireMythmakerSwordText": "创神者之剑", + "weaponArmoireMythmakerSwordNotes": "Though it may seem humble, this sword has made many mythic heroes. Increases Perception and Strength by <%= attrs %> each. Enchanted Armoire: Golden Toga Set (Item 3 of 3).", "weaponArmoireIronCrookText": "钢铁手杖", - "weaponArmoireIronCrookNotes": "由铁打制而成。这个钢铁手杖十分适合用来驱赶羊群。加强感知和力量 <%= attrs %> 点。魔法衣橱:钢铁号角系列(第3件物品)", + "weaponArmoireIronCrookNotes": "Fiercely hammered from iron, this iron crook is good at herding sheep. Increases Perception and Strength by <%= attrs %> each. Enchanted Armoire: Horned Iron Set (Item 3 of 3).", "weaponArmoireGoldWingStaffText": "金翅法仗", "weaponArmoireGoldWingStaffNotes": "The wings on this staff constantly flutter and twist. Increases all attributes by <%= attrs %> each. Enchanted Armoire: Independent Item.", "weaponArmoireBatWandText": "蝙蝠法仗", "weaponArmoireBatWandNotes": "This wand can turn any task into a bat! Wave it about and watch them fly away. Increases Intelligence by <%= int %> and Perception by <%= per %>. Enchanted Armoire: Independent Item.", "weaponArmoireShepherdsCrookText": "Shepherd's Crook", "weaponArmoireShepherdsCrookNotes": "Useful for herding gryphons. Increases Constitution by <%= con %>. Enchanted Armoire: Shepherd Set (Item 1 of 3).", + "weaponArmoireCrystalCrescentStaffText": "Crystal Crescent Staff", + "weaponArmoireCrystalCrescentStaffNotes": "Summon the power of the crescent moon with this shining staff! Increases Intelligence and Strength by <%= attrs %> each. Enchanted Armoire: Crystal Crescent Set (Item 3 of 3).", + "weaponArmoireBlueLongbowText": "Blue Longbow", + "weaponArmoireBlueLongbowNotes": "Ready... Aim... Fire! This bow has great range. Increases Perception by 9, Constitution by 8, and Strength by 7. Enchanted Armoire: Independent Item.", "armor": "护甲", "armorBase0Text": "普通服装", "armorBase0Notes": "普通的衣服。 没有属性加成。", @@ -207,8 +211,8 @@ "armorSpecial1Notes": "它不竭的力量能使佩戴者适应一般的不适。全部属性增加<%= attrs %>点。", "armorSpecial2Text": "珍·沙拉德的贵族束腰外衣", "armorSpecial2Notes": "让你更加毛茸茸!体质与智力各加<%= attrs %>。", - "armorSpecialFinnedOceanicArmorText": "Finned Oceanic Armor", - "armorSpecialFinnedOceanicArmorNotes": "Although delicate, this armor makes your skin as harmful to the touch as a fire coral. Increases Strength by <%= str %>.", + "armorSpecialFinnedOceanicArmorText": "海鳞衣", + "armorSpecialFinnedOceanicArmorNotes": "尽管看上去精致漂亮,这件护甲让你变得像火焰珊瑚一样碰不得。增加<%= str %>点力量。", "armorSpecialYetiText": "野人驯化长袍", "armorSpecialYetiNotes": "模糊和激烈。增加<%= con %>点体质。2013-2014冬季限量版装备。", "armorSpecialSkiText": "雪橇刺客大衣", @@ -222,7 +226,7 @@ "armorSpecialBirthday2015Text": "愚蠢的派对长袍", "armorSpecialBirthday2015Notes": "生日快乐,Habitica!穿上这些愚蠢的派对长袍去庆祝美妙的一天,没有属性加成。", "armorSpecialGaymerxText": "彩虹战士护甲", - "armorSpecialGaymerxNotes": "这件特殊的护甲装饰着五彩斑斓的彩虹图案,是为纪念自豪季和GaymerX而生!GaymerX是一个游戏大会庆祝LGBTQ和游戏并对每个人开放。它举办于旧金山中心的洲际酒店,时间是7月11-13日!没有属性加成。", + "armorSpecialGaymerxNotes": "In celebration of the GaymerX Conference, this special armor is decorated with a radiant, colorful rainbow pattern! GaymerX is a game convention celebrating LGTBQ and gaming and is open to everyone.", "armorSpecialSpringRogueText": "圆滑猫套装", "armorSpecialSpringRogueNotes": "无可挑剔的整洁。增加<%= per %>点感知。限量版2014年春季装备。", "armorSpecialSpringWarriorText": "四叶草钢护甲", @@ -269,12 +273,12 @@ "armorSpecialSummer2015WarriorNotes": "This garment of shimmering scales transforms its wearer into a real Sunfish Warrior! Increases Constitution by <%= con %>. Limited Edition 2015 Summer Gear.", "armorSpecialSummer2015MageText": "Soothsayer Robes", "armorSpecialSummer2015MageNotes": "Hidden power resides in the puffs of these sleeves. Increases Intelligence by <%= int %>. Limited Edition 2015 Summer Gear.", - "armorSpecialSummer2015HealerText": "Sailor's Armor", - "armorSpecialSummer2015HealerNotes": "This armor lets everyone know that you are an honest merchant sailor who would never dream of behaving like a scalawag. Increases Constitution by <%= con %>. Limited Edition 2015 Summer Gear.", - "armorSpecialFall2015RogueText": "Bat-tle Armor", - "armorSpecialFall2015RogueNotes": "Fly into bat-tle! Increases Perception by <%= per %>. Limited Edition 2015 Autumn Gear.", - "armorSpecialFall2015WarriorText": "Scarecrow Armor", - "armorSpecialFall2015WarriorNotes": "Despite being stuffed with straw, this armor is extremely hefty! Increases Constitution by <%= con %>. Limited Edition 2015 Autumn Gear.", + "armorSpecialSummer2015HealerText": "水手的护甲", + "armorSpecialSummer2015HealerNotes": "穿上这件护甲,大家都会知道你是一位城市的航海家,绝对不会跟流氓一样。增加<%= con %>点体质。2015年夏季限量版装备。", + "armorSpecialFall2015RogueText": "战蝠护甲", + "armorSpecialFall2015RogueNotes": "飞起来,变成蝙蝠!增加<%= per %>点感知。2015年秋季限量版装备。", + "armorSpecialFall2015WarriorText": "稻草人的外装", + "armorSpecialFall2015WarriorNotes": "除了塞满了稻草之外,这件护甲还特别沉重!增加<%= con %>点体质。2015年秋季限量版装备。", "armorSpecialFall2015MageText": "Stitched Robes", "armorSpecialFall2015MageNotes": "Every stitch in this armor shimmers with enchantment. Increases Intelligence by <%= int %>. Limited Edition 2015 Autumn Gear.", "armorSpecialFall2015HealerText": "Potioner Robes", @@ -309,6 +313,8 @@ "armorMystery201508Notes": "Run fast as a flash in the fluffy Cheetah Costume! Confers no benefit. August 2015 Subscriber Item.", "armorMystery201509Text": "Werewolf Costume", "armorMystery201509Notes": "This IS a costume, right? Confers no benefit. September 2015 Subscriber Item.", + "armorMystery201511Text": "Wooden Armor", + "armorMystery201511Notes": "Considering this armor was carved directly from a magical log, it's surprisingly comfortable. Confers no benefit. November 2015 Subscriber Item.", "armorMystery301404Text": "蒸汽朋克套装", "armorMystery301404Notes": "整洁又精神,真聪明!没有属性加成。2015年1月订阅者物品", "armorArmoireLunarArmorText": "Soothing Lunar Armor", @@ -327,6 +333,8 @@ "armorArmoireShepherdRobesNotes": "The fabric is cool and breathable, perfect for a hot day herding gryphons in the desert. Increases Strength and Perception by <%= attrs %> each. Enchanted Armoire: Shepherd Set (Item 2 of 3).", "armorArmoireRoyalRobesText": "Royal Robes", "armorArmoireRoyalRobesNotes": "Wonderful ruler, rule all day long! Increases Constitution, Intelligence, and Perception by <%= attrs %> each. Enchanted Armoire: Royal Set (Item 3 of 3).", + "armorArmoireCrystalCrescentRobesText": "Crystal Crescent Robes", + "armorArmoireCrystalCrescentRobesNotes": "These magical robes are luminescent at night. Increases Constitution and Perception by <%= attrs %> each. Enchanted Armoire: Crystal Crescent Set (Item 2 of 3).", "headgear": "头饰", "headBase0Text": "没有头盔", "headBase0Notes": "没有头饰", @@ -447,7 +455,7 @@ "headSpecialFall2015HealerText": "Hat of Frog", "headSpecialFall2015HealerNotes": "This is an extremely serious hat that is worthy of only the most advanced potioners. Increases Intelligence by <%= int %>. Limited Edition 2015 Autumn Gear.", "headSpecialGaymerxText": "彩虹战士头盔", - "headSpecialGaymerxNotes": "这顶由五光十色的镭射彩虹图案装饰的帽子是为了庆祝骄傲时节和GaymerX!GaymerX是一个向所有人开放的庆祝LGBTQ并尽情玩乐的游戏大会。7月11-13日在旧金山市中心洲际饭店举行!没有属性加成。", + "headSpecialGaymerxNotes": "In celebration of the GaymerX Conference, this special helmet is decorated with a radiant, colorful rainbow pattern! GaymerX is a game convention celebrating LGTBQ and gaming and is open to everyone.", "headMystery201402Text": "翼盔", "headMystery201402Notes": "这顶带翅膀的饰环使佩戴者风驰电掣!没有属性加成。2014年2月捐赠者物品。", "headMystery201405Text": "精神之焰", @@ -470,6 +478,8 @@ "headMystery201508Notes": "This cozy cheetah hat is very fuzzy! Confers no benefit. August 2015 Subscriber Item.", "headMystery201509Text": "Werewolf Mask", "headMystery201509Notes": "This IS a mask, right? Confers no benefit. September 2015 Subscriber Item.", + "headMystery201511Text": "Log Crown", + "headMystery201511Notes": "Count the number of rings to learn how old this crown is. Confers no benefit. November 2015 Subscriber Item.", "headMystery301404Text": "华丽礼帽", "headMystery301404Notes": "上流社会佼佼者的华丽礼帽!3015年1月捐赠者物品。没有属性加成。", "headMystery301405Text": "基础礼帽", @@ -506,6 +516,8 @@ "headArmoireBlueFloppyHatNotes": "Many spells have been sewn into this simple hat, giving it a brilliant blue color. Increases Constitution, Intelligence, and Perception by <%= attrs %> each. Enchanted Armoire: Independent Item.", "headArmoireShepherdHeaddressText": "Shepherd Headdress", "headArmoireShepherdHeaddressNotes": "Sometimes the gryphons that you herd like to chew on this headdress, but it makes you seem more intelligent nonetheless. Increases Intelligence by <%= int %>. Enchanted Armoire: Shepherd Set (Item 3 of 3).", + "headArmoireCrystalCrescentHatText": "Crystal Crescent Hat", + "headArmoireCrystalCrescentHatNotes": "The design on this hat waxes and wanes with the phases of the moon. Increases Intelligence and Perception by <%= attrs %> each. Enchanted Armoire: Crystal Crescent Set (Item 1 of 3).", "offhand": "副手物品", "shieldBase0Text": "没有副手装备", "shieldBase0Notes": "没有盾牌或副手武器。", @@ -573,25 +585,25 @@ "shieldSpecialSpring2015HealerNotes": "你可以把头靠在这个软软的枕头上,也可以用你可怕的爪子和它玩摔跤。嗷呜!提高<%= con %>点体质。2015春季限定版装备。", "shieldSpecialSummer2015RogueText": "Firing Coral", "shieldSpecialSummer2015RogueNotes": "This relative of fire coral has the ability to propel its venom through the water. Increases Strength by <%= str %>. Limited Edition 2015 Summer Gear.", - "shieldSpecialSummer2015WarriorText": "Sunfish Shield", - "shieldSpecialSummer2015WarriorNotes": "Crafted of deep-ocean metal by the artisans of Dilatory, this shield shines like the sand and the sea. Increases Constitution by <%= con %>. Limited Edition 2015 Summer Gear.", - "shieldSpecialSummer2015HealerText": "Strapping Shield", - "shieldSpecialSummer2015HealerNotes": "Use this shield to bash away bilge rats. Increases Constitution by <%= con %>. Limited Edition 2015 Summer Gear.", - "shieldSpecialFall2015RogueText": "Bat-tle Ax", - "shieldSpecialFall2015RogueNotes": "Fearsome To-Dos cower before the flapping of this ax. Increases Strength by <%= str %>. Limited Edition 2015 Autumn Gear.", - "shieldSpecialFall2015WarriorText": "Birdseed Bag", - "shieldSpecialFall2015WarriorNotes": "It's true that you're supposed to be SCARING the crows, but there's nothing wrong with making friends! Increases Constitution by <%= con %>. Limited Edition 2015 Autumn Gear.", - "shieldSpecialFall2015HealerText": "Stirring Stick", - "shieldSpecialFall2015HealerNotes": "This stick can stir anything without melting, dissolving, or bursting into flame! It can also be used to fiercely poke enemy tasks. Increases Constitution by <%= con %>. Limited Edition 2015 Autumn Gear.", + "shieldSpecialSummer2015WarriorText": "太阳鱼盾", + "shieldSpecialSummer2015WarriorNotes": "拖延之国的工匠们使用深海金属雕琢而成,这面盾牌看上去像沙滩和大海一样闪光。增加<%= con %>点体质。2015年夏季限量版装备。", + "shieldSpecialSummer2015HealerText": "胶面盾", + "shieldSpecialSummer2015HealerNotes": "用这面盾牌猛砸舱底老鼠。增加<%= con %>点体质。2015年夏季限量版装备。", + "shieldSpecialFall2015RogueText": "战蝠", + "shieldSpecialFall2015RogueNotes": "那些令人生畏的待办事项都在这把神斧的挥砍之下瑟瑟发抖。增加<%= str %>点力量。2015年秋季限量版装备。", + "shieldSpecialFall2015WarriorText": "鸟食小袋", + "shieldSpecialFall2015WarriorNotes": "说好的是来吓唬这些乌鸦的呢,但是交交朋友也没错啊!增加<%= con %>点体质。2015年秋季限量版装备。", + "shieldSpecialFall2015HealerText": "鞭策之杖", + "shieldSpecialFall2015HealerNotes": "用这只手掌能鞭策任何事情,而且不会引起融化,溶解或者点着火之类的事情!还能用来狠狠地戳向你敌人一样的待办任务。增加<%= con %>点体质。2015年秋季限量版装备。", "shieldMystery301405Text": "时钟之盾", "shieldMystery301405Notes": "拥有这块高耸的时钟之盾,时间与你同在!没有属性加成。3015年6月捐赠者物品。", - "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).", - "shieldArmoireMidnightShieldText": "Midnight Shield", - "shieldArmoireMidnightShieldNotes": "This shield is most powerful at the stroke of midnight! Increases Constitution by <%= con %> and Strength by <%= str %>. Enchanted Armoire: Independent Item.", - "shieldArmoireRoyalCaneText": "Royal Cane", - "shieldArmoireRoyalCaneNotes": "Hooray for the ruler, worthy of song! Increases Constitution, Intelligence, and Perception by <%= attrs %> each. Enchanted Armoire: Royal Set (Item 2 of 3).", - "back": "Back Accessory", + "shieldArmoireGladiatorShieldText": "角斗士之盾", + "shieldArmoireGladiatorShieldNotes": "作为一名角斗士,你必须……呃,管他了,就用你的盾砸他们就好了。增加<%= con %> 点体质和 <%= str %>点力量。魔法衣橱:角斗士套装(第3件物品)。", + "shieldArmoireMidnightShieldText": "午夜之盾", + "shieldArmoireMidnightShieldNotes": "在午夜到来时,这块盾牌的威力就会达到极致!增加<%= con %>点体质和<%= str %>点力量。魔法衣橱:独立装备。", + "shieldArmoireRoyalCaneText": "皇家手杖", + "shieldArmoireRoyalCaneNotes": "赞歌颂唱,山呼吾王!增加体质,智力和感知各<%= attrs %>点。魔法衣橱:皇家套装(3件中的第2件)", + "back": "背部挂件", "backBase0Text": "没有背部挂件", "backBase0Notes": "没有背部挂件。", "backMystery201402Text": "黄金之翼", @@ -602,15 +614,15 @@ "backMystery201410Notes": "夜晚,以这双强壮的翅膀俯冲。没有属性加成。2014年10月捐赠者物品。", "backMystery201504Text": "忙碌的蜜蜂翅膀", "backMystery201504Notes": "嗡嗡嗡嗡嗡嗡声!从掠过任务任务。不授予任何好处。 2015年4月认购项目。", - "backMystery201507Text": "Rad Surfboard", - "backMystery201507Notes": "Surf off the Diligent Docks and ride the waves in Inkomplete Bay! Confers no benefit. July 2015 Subscriber Item.", - "backMystery201510Text": "Goblin Tail", - "backMystery201510Notes": "Prehensile and powerful! Confers no benefit. October 2015 Subscriber Item.", + "backMystery201507Text": "超爽冲浪板", + "backMystery201507Notes": "在未完成之湾优雅穿行于雅致的岩石,踏浪飞驰!无增益效果。2015年7月捐赠者物品。", + "backMystery201510Text": "地精尾巴", + "backMystery201510Notes": "绕来抓去,强而有力!无增益效果。2015年10月订阅者物品。", "backSpecialWonderconRedText": "威武斗篷", "backSpecialWonderconRedNotes": "力量与美貌在刷刷作响。没有属性加成。特别版参与者物品。", "backSpecialWonderconBlackText": "潜行斗篷", "backSpecialWonderconBlackNotes": "由暗影与低语织就。没有属性加成。特别版参与者物品。", - "body": "Body Accessory", + "body": "身体配件", "bodyBase0Text": "没有身体配件", "bodyBase0Notes": "没有身体配件。", "bodySpecialWonderconRedText": "红宝石领子", @@ -623,16 +635,16 @@ "bodySpecialSummerMageNotes": "无论咸水、淡水,都无法使这件含金属纤维的披肩黯然失色。没有增益效果。2014夏季限定版装备。", "bodySpecialSummerHealerText": "珊瑚领子", "bodySpecialSummerHealerNotes": "以活珊瑚制成的拉风领子!没有增益效果。2014夏季限定版装备。", - "bodySpecialSummer2015RogueText": "Renegade Sash", - "bodySpecialSummer2015RogueNotes": "You can't be a true Renegade without panache... and a sash. Confers no benefit. Limited Edition 2015 Summer Gear.", - "bodySpecialSummer2015WarriorText": "Oceanic Spikes", - "bodySpecialSummer2015WarriorNotes": "Each spike drips jellyfish venom, defending the wearer. Confers no benefit. Limited Edition 2015 Summer Gear.", - "bodySpecialSummer2015MageText": "Golden Buckle", - "bodySpecialSummer2015MageNotes": "This buckle adds no power at all, but it's shiny. Confers no benefit. Limited Edition 2015 Summer Gear.", - "bodySpecialSummer2015HealerText": "Sailor's Neckerchief", - "bodySpecialSummer2015HealerNotes": "Yo ho ho? No, no, no! Confers no benefit. Limited Edition 2015 Summer Gear.", + "bodySpecialSummer2015RogueText": "叛徒的饰带", + "bodySpecialSummer2015RogueNotes": "你不带上一根羽饰就不像个真正的叛徒……饰带也是一样。无增益效果。2015年夏季限量版装备。", + "bodySpecialSummer2015WarriorText": "海洋之刺", + "bodySpecialSummer2015WarriorNotes": "每一根尖刺顶上都有水木毒液在滴下,保护穿这件护甲的人。无增益效果。2015年夏季限定版装备。", + "bodySpecialSummer2015MageText": "金色搭扣", + "bodySpecialSummer2015MageNotes": "这个搭扣并不能让你变强,但它很闪。无增益效果。2015年夏季限定版装备。", + "bodySpecialSummer2015HealerText": "航海家的领巾", + "bodySpecialSummer2015HealerNotes": "哟,嚯,嚯? 不, 不, 不! 没有增益效果。2015年夏季限定版装备。", "headAccessory": "头部配件", - "accessories": "Accessories", + "accessories": "附属道具", "animalEars": "动物耳朵", "headAccessoryBase0Text": "没有头部配件", "headAccessoryBase0Notes": "没有头部配件。", @@ -676,8 +688,8 @@ "headAccessoryMystery201409Notes": "这对强大的鹿角会随着树叶一起改变颜色。没有增益效果。2014年9月捐赠者物品。", "headAccessoryMystery201502Text": "思绪之翼", "headAccessoryMystery201502Notes": "放飞你的想象力!没有属性加成。2015年2月捐赠者物品。", - "headAccessoryMystery201510Text": "Goblin Horns", - "headAccessoryMystery201510Notes": "These fearsome horns are slightly slimy. Confers no benefit. October 2015 Subscriber Item.", + "headAccessoryMystery201510Text": "地精角", + "headAccessoryMystery201510Notes": "这些吓人的角滑溜溜的。没有属性加成。2015年10月捐赠者物品。", "headAccessoryMystery301405Text": "头戴护目镜", "headAccessoryMystery301405Notes": "“护目镜是戴在眼睛上的,”人们说。“没有人会想要一副只能戴在头上的护目镜。”人们说。哈!你果然让他们长见识了!没有增益效果。3015年8月捐赠者物品。", "eyewear": "眼镜", @@ -693,8 +705,8 @@ "eyewearSpecialWonderconBlackNotes": "你的动机绝对合法。没有增益效果。特别版参与者物品。", "eyewearMystery201503Text": "海蓝护目镜", "eyewearMystery201503Notes": "别被这些璀璨的宝石闪瞎了!无属性加成。2015年三月捐赠者物品。", - "eyewearMystery201506Text": "Neon Snorkel", - "eyewearMystery201506Notes": "This neon snorkel lets its wearer see underwater. Confers no benefit. June 2015 Subscriber Item.", + "eyewearMystery201506Text": "霓虹潜水镜", + "eyewearMystery201506Notes": "这件霓虹的潜水镜能让佩戴者看清楚水下的状况,没有属性加成。2015年6越捐赠者物品。", "eyewearMystery201507Text": "酷的太阳镜", "eyewearMystery201507Notes": "天气热的时候,这副太阳镜能帮你保持冷静。 没有属性加成。2015年7月捐赠者物品。", "eyewearMystery301404Text": "眼戴护目镜", diff --git a/common/locales/zh/generic.json b/common/locales/zh/generic.json index 513889a461..e5a43cbf80 100644 --- a/common/locales/zh/generic.json +++ b/common/locales/zh/generic.json @@ -5,20 +5,20 @@ "habitica": "Habitica", "expandToolbar": "展开列表", "collapseToolbar": "隐藏列表", - "markdownBlurb": "Habitica uses markdown for message formatting. See the Markdown Cheat Sheet for more info.", + "markdownBlurb": "Habitica使用markdown标记语言作为信息传递格式。点击 Markdown Cheat Sheet 查看更多信息。", "showFormattingHelp": "查看格式相关帮助", "hideFormattingHelp": "缩小格式相关帮助", "youType": "你输入了:", "youSee": "你会看到:", - "italics": "*Italics*", - "bold": "**Bold**", - "strikethrough": "~~Strikethrough~~", + "italics": "斜体", + "bold": "粗体", + "strikethrough": "~~继续前进~~", "emojiExample": ":笑:", "markdownLinkEx": "[Habitica 真好!](https://habitica.com)", "markdownImageEx": "![mandatory alt text](https://habitica.com/cake.png \"optional mouseover title\")", - "unorderedListHTML": "+ First item
+ Second item
+ Third item", - "unorderedListMarkdown": "+ First item\n+ Second item\n+ Third item", - "code": "`code`", + "unorderedListHTML": "+ 第一个道具
+ 第二个道具
+ 第三个道具", + "unorderedListMarkdown": "+ 第一个道具\n+ 第二个道具\n+ 第三个道具", + "code": "代码", "achievements": "成就", "modalAchievement": "获得成就!", "special": "特殊", @@ -56,7 +56,7 @@ "moreInfo": "更多信息", "showMoreMore": "(显示更多)", "showMoreLess": "(显示更少)", - "gemsWhatFor": "Click to buy Gems! Gems let you purchase special items like Quests, avatar customizations, and seasonal equipment.", + "gemsWhatFor": "单击购买宝石!宝石能让你购置特殊道具如任务,自定义头像,和应季装备。", "veteran": "老兵", "veteranText": "经历过 Habit The Grey (原来的网站) ,身上带着多处其bug带来的伤疤。", "originalUser": "原始用户!", @@ -66,12 +66,12 @@ "habitBirthdayPluralText": "欢庆第<%= number %>个 Habitica生日派对", "habiticaDay": "Habitica命名日", "habiticaDaySingularText": "庆祝了Habitica的命名日!谢谢您陪伴我们,客户朋友!", - "habiticaDayPluralText": "Celebrated <%= number %> Naming Days! Thanks for being a fantastic user.", + "habiticaDayPluralText": "庆祝 <%= number %> 次命名日! 谢谢您陪伴我们,客户朋友!", "achievementDilatory": "拖延的救世者", "achievementDilatoryText": "2014年夏季世界事件中协助打败了恐怖的拖延巨龙!", - "costumeContest": "Costume Contestant", - "costumeContestText": "Participated in the Habitoween Costume Contest. See some of the entries on the Habitica blog!", - "costumeContestTextPlural": "Participated in <%= number %> Habitoween Costume Contests. See some of the entries on the Habitica blog!", + "costumeContest": "妆扮比赛", + "costumeContestText": "参加了万圣节服装大赛。在Habitica blog查看更多参赛作品!", + "costumeContestTextPlural": "共参加<%= number %>场万圣节服装大赛。在Habitica blog查看更多参赛作品!", "memberSince": "- 加入于", "lastLoggedIn": "- 最后上线于", "notPorted": "这个功能未从原版网站中导出。", @@ -80,7 +80,7 @@ "errorUpCase": "错误:", "newPassSent": "已传送新密码。", "serverUnreach": "暂时连不上服务器。", - "requestError": "Yikes, an error occurred! Please reload the page, your last action may not have been saved correctly.", + "requestError": "噫,出了一个错误!请刷新页面,你的上一个操作也许没能成功生效。", "seeConsole": "如果错误持续存在,请在帮助>报告Bug。如果你对你的浏览器的控制台熟悉的话,请加入所有的错误信息。", "error": "错误", "menu": "菜单", @@ -112,12 +112,12 @@ "December": "十二月", "dateFormat": "日期格式", "achievementStressbeast": "Stoïkalm的救星", - "achievementStressbeastText": "Helped defeat the Abominable Stressbeast during the 2014 Winter Wonderland Event!", + "achievementStressbeastText": "在2014冬季仙境事件中协助战胜可恶的压力野兽!", "achievementBurnout": "全盛田野的救护者", - "achievementBurnoutText": "Helped defeat Burnout and restore the Exhaust Spirits during the 2015 Fall Festival Event!", + "achievementBurnoutText": "在2015秋季节事件中打败了疲惫魔,复原了锻炼精魂!", "checkOutProgress": "看一下我在Habitica的进步!", "cardReceived": "收到一个卡片!", - "cardReceivedFrom": "<%= cardType %> from <%= userName %>", + "cardReceivedFrom": "来自 <%= userName %> 的 <%= cardType %> ", "greetingCard": "祝贺卡", "greetingCardExplanation": "你俩都获得“欢乐伙伴”的成就!", "greetingCardNotes": "给一个队伍者个祝贺卡。", @@ -126,26 +126,26 @@ "greeting2": "`疯狂的招手`", "greeting3": "嗨!喊你呐!", "greetingCardAchievementTitle": "快乐伙伴", - "greetingCardAchievementText": "Hey! Hi! Hello! Sent or received <%= cards %> greeting cards.", - "thankyouCard": "Thank-You Card", - "thankyouCardExplanation": "You both receive the Greatly Grateful achievement!", - "thankyouCardNotes": "Send a Thank-You card to a party member.", - "thankyou0": "Thank you very much!", - "thankyou1": "Thank you, thank you, thank you!", + "greetingCardAchievementText": "你好!你好!你好!共寄出或收到了 <%= cards %> 份问候卡。", + "thankyouCard": "感谢卡", + "thankyouCardExplanation": "你俩都获得“衷心感谢”的成就!", + "thankyouCardNotes": "给一个队友发一张感谢卡。", + "thankyou0": "非常感谢!", + "thankyou1": "多谢,多谢,多谢!", "thankyou2": "万谢,万谢!", - "thankyou3": "I'm very grateful - thank you!", - "thankyouCardAchievementTitle": "Greatly Grateful", - "thankyouCardAchievementText": "Thanks for being thankful! Sent or received <%= cards %> Thank-You cards.", + "thankyou3": "我很感激——谢谢你!", + "thankyouCardAchievementTitle": "衷心感激", + "thankyouCardAchievementText": "谢谢你的感恩!已寄出和收到<%= cards %>张感谢卡。", "streakAchievement": "你得到一个连击成就!", "firstStreakAchievement": "21天连击", "streakAchievementCount": "<%= streaks %> 21天连击", "twentyOneDays": "你连21天完成了你的日常任务!", - "dontBreakStreak": "Amazing job. Don't break the streak!", + "dontBreakStreak": "太厉害了,不要停!", "dontStop": "加油!别停!", - "levelUpShare": "I leveled up in Habitica by improving my real-life habits!", - "questUnlockShare": "I unlocked a new quest in Habitica!", - "hatchPetShare": "I hatched a new pet by completing my real-life tasks!", - "raisePetShare": "I raised a pet into a mount by completing my real-life tasks!", + "levelUpShare": "通过养成好习惯,我在Habitica升级了!", + "questUnlockShare": "我在Habitica解锁了一个新任务!", + "hatchPetShare": "我完成了我的任务,孵出了一个新宠物!", + "raisePetShare": "我完成了我的任务,培养了一匹新坐骑!", "wonChallengeShare": "我在Habitica赢了一个挑战!", "achievementShare": "我在Habitica得到了一个新成就!" } \ No newline at end of file diff --git a/common/locales/zh/groups.json b/common/locales/zh/groups.json index 0324914002..94016e3bae 100644 --- a/common/locales/zh/groups.json +++ b/common/locales/zh/groups.json @@ -147,5 +147,5 @@ "partyChatEmpty": "队伍聊天框里空空如也!在上面的聊天框打字来开始聊天。", "guildChatEmpty": "公会聊天框里空空如也!在上面的聊天框打字来开始聊天。", "possessiveParty": "<%= name %>的队伍", - "requestAcceptGuidelines": "If you would like to post messages in the Tavern or any party or guild chat, please first read our <%= linkStart %>Community Guidelines<%= linkEnd %> and then click the button below to indicate that you accept them." + "requestAcceptGuidelines": "如果你想在酒馆里,或是队伍和公会里张贴信息,请先阅读<%= linkStart %>交流须知<%= linkEnd %>并点击按钮,表示接受其中的条款。 " } \ No newline at end of file diff --git a/common/locales/zh/limited.json b/common/locales/zh/limited.json index 74dbcf5810..64697bac91 100644 --- a/common/locales/zh/limited.json +++ b/common/locales/zh/limited.json @@ -21,6 +21,7 @@ "valentineCardAchievementText": "啊,你和你的朋友一定很关心对方!你们之间已经发送或接受了<%= cards %>张情人节卡片。", "polarBear": "北极熊", "turkey": "火鸡", + "gildedTurkey": "Gilded Turkey", "polarBearPup": "北极熊崽", "jackolantern": "杰克南瓜灯", "seasonalShop": "季度商店", diff --git a/common/locales/zh/noscript.json b/common/locales/zh/noscript.json index 6057268ef2..776c5210f2 100644 --- a/common/locales/zh/noscript.json +++ b/common/locales/zh/noscript.json @@ -1,6 +1,6 @@ { - "jsDisabledHeading": "Alas! Your browser doesn't have JavaScript enabled", - "jsDisabledHeadingFull": "Alas! Your browser doesn't have JavaScript enabled and without it, Habitica can't work properly", - "jsDisabledText": "Habitica can't properly display the site without it!", - "jsDisabledLink": "Please enable JavaScript to continue!" + "jsDisabledHeading": "呜呼!你的浏览器不允许JavaScript", + "jsDisabledHeadingFull": "呜呼!你的浏览器不允许JavaScript,没有它,Habitica无法正常工作", + "jsDisabledText": "没有它Habitica无法正常显示!", + "jsDisabledLink": "请启用JavaScript以继续" } \ No newline at end of file diff --git a/common/locales/zh/questscontent.json b/common/locales/zh/questscontent.json index 22f288ba25..6a310b609f 100644 --- a/common/locales/zh/questscontent.json +++ b/common/locales/zh/questscontent.json @@ -58,11 +58,11 @@ "questSpiderBoss": "蜘蛛", "questSpiderDropSpiderEgg": "蜘蛛 (蛋)", "questSpiderUnlockText": "解锁蜘蛛蛋购买功能", - "questVice1Text": "Vice, Part 1: Free Yourself of the Dragon's Influence", + "questVice1Text": "维斯,第1部分:逃出恶习之龙的控制", "questVice1Notes": "

传言说,有一个可怕的恶魔藏身于Habitica山的洞穴中。他可以击溃所有人的意志,让所有接近这片土地的勇者们染上恶习并变得懒惰!这个野兽由巨大的力量和阴影组成,并化身为一条奸诈的阴影巨龙——恶习之龙。勇敢的Habiteers,一起站出来,击败这个邪恶的怪物。但是,你一定要相信自己能抵抗他巨大的邪恶之力。

恶习第1部:

小心不要让他控制你的意志,不然你怎么和他战斗?不要成为懒惰和恶习的牺牲品!努力与巨龙的力量对抗吧,逃出他邪恶之力的影响!

", "questVice1Boss": "恶习之龙的阴影", "questVice1DropVice2Quest": "恶习之龙第2部 (卷轴)", - "questVice2Text": "Vice, Part 2: Find the Lair of the Wyrm", + "questVice2Text": "维斯,第2部分:寻找巨龙的巢穴", "questVice2Notes": "当你挣脱了恶习的控制,你感觉到一股你已然忘却的力量涌回了你的体内。带着必胜的信念,你的队伍又一次充满自信的踏上了前往Habitica山的路。你们在山洞的入口停了下来。从洞里不断涌出漆黑的暗影,像雾一样笼罩着洞口。洞里漆黑一片,伸手不见五指。从灯笼里发出的光根本无法触及暗影笼罩的区域。据说只有用魔力点亮的光可以渗入巨龙的阴霾中。如果能找到足够多的神光水晶,你就可以找到去巨龙那里的路了。", "questVice2CollectLightCrystal": "神光水晶", "questVice2DropVice3Quest": "恶习之龙第3部 (卷轴)", @@ -77,7 +77,7 @@ "questMoonstone1Notes": "

一个可怕的麻烦困扰着Habiticans.已经消失很久的坏习惯回来复仇了.盘子没有清洗,课本很长时间没有看,拖延症开始猖獗!


你跟踪着你自己的一些归来的坏习惯,来到了淤塞之沼,并发现了这一切的元凶:可怕的死灵巫师,雷茜德维特.你冲了进去,挥舞着你的武器,但是它们都穿过了她幽灵一般的身体,没有造成任何伤害.


\"别费劲儿了,\"她用粗糙刺耳的声音嘶嘶得说.\"没有月长石项链的话,没有什么可以伤害我--而且宝石大师@aurakami很久以前就将月长石分散到了Habitica的各处!\"虽然你气喘吁吁的撤退了...但是你知道你需要做什么.

", "questMoonstone1CollectMoonstone": "月长石", "questMoonstone1DropMoonstone2Quest": "月长石项链第2部:再犯巫师 (卷轴)", - "questMoonstone2Text": "The Moonstone Chain, Part 2: Recidivate The Necromancer", + "questMoonstone2Text": "月亮石之链,第2部分:再犯亡灵法师", "questMoonstone2Notes": "

勇敢的武器铸造师@Inventrix帮你将附魔的月长石铸造成了一条项链.你现在已经准备好面对雷茜德维特了,但是当你进入淤塞之沼的时候,感觉寒气逼人.


腐朽的气息在你的耳边低语.\"又回来了?真令人高兴啊...\"你冲向前去,猛地刺出,在月长石项链的光芒下,你的武器击中了她的肉体.\"你再次将我与这个世界束缚在了一起,\"雷茜德维特咆哮着,\"而且这次该是你离开这个世界了!\"

", "questMoonstone2Boss": "死灵法师", "questMoonstone2DropMoonstone3Quest": "月长石项链第3部:再犯改造 (卷轴)", @@ -87,7 +87,7 @@ "questMoonstone3Boss": "死者-恶习", "questMoonstone3DropRottenMeat": "腐肉 (食物)", "questMoonstone3DropZombiePotion": "僵尸孵化药水", - "questGoldenknight1Text": "The Golden Knight, Part 1: A Stern Talking-To", + "questGoldenknight1Text": "黄金骑士,第1部分:一场严肃的谈话", "questGoldenknight1Notes": "

黄金骑士得知了可怜的Habitican们的情况。没有将你们的每日任务全部完成?记录下一个不好的习惯?她会以此为理由来不断的骚扰你,教你怎样像她一样。她是完美的Habitican的经典范例,而你只不过是一个失败者。但是,虽然这的确有点儿不光彩!但是所有人都会犯错。那些犯了错的人也不应因此就受到这样消极的待遇。也许现在对你来说正是时候,从受到伤害的Habitican们那里收集一些证据,然后和黄金骑士来一场严肃的谈话

", "questGoldenknight1CollectTestimony": "证据", "questGoldenknight1DropGoldenknight2Quest": "黄金骑士项链第2部:暗淡的黄金 (卷轴)", @@ -95,8 +95,8 @@ "questGoldenknight2Notes": "

身上带着上百个Habitican们的证据,你最终面对着黄金骑士,开始一个接着一个地对她陈述Habitican们对她的不满,“还有@Pfeffernusse说你总是不停的讨价还价-”黄金骑士举起了她的手打断了你,嘲弄道,“拜托,这些人只不过是嫉妒我的成功。比起抱怨,他们更应该像我一样努力的工作!也许我应该向你展示一下,就像我一样,勤奋所能给予你的力量!”说着她举起狼牙棒,准备攻击你!

", "questGoldenknight2Boss": "黄金骑士", "questGoldenknight2DropGoldenknight3Quest": "黄金骑士项链第3部:钢铁骑士 (卷轴)", - "questGoldenknight3Text": "黄金骑士第三部:钢铁骑士", - "questGoldenknight3Notes": "

@Jon Arinbjorn cries out to you to get your attention. In the aftermath of your battle, a new figure has appeared. A knight coated in stained-black iron slowly approaches you with sword in hand. The Golden Knight shouts to the figure, \"Father, no!\" but the knight shows no signs of stopping. She turns to you and says, \"I am sorry. I have been a fool, with a head too big to see how cruel I have been. But my father is crueler than I could ever be. If he isn't stopped he'll destroy us all. Here, use my morningstar and halt the Iron Knight!\"

", + "questGoldenknight3Text": "黄金骑士第3部:钢铁骑士", + "questGoldenknight3Notes": "

@Jon Arinbjorn的向你大喊试图引起你的注意。战斗之余,一个新的人物出现了。一个手中握着剑的骑士慢慢地走近了你——他身上穿着染上黑色血污的铁铠。黄金骑士对这个人大喊道:“爸爸,不!”但是骑士丝毫没有停止的迹象。她转身对你说:“我很抱歉。我一直是个大傻瓜,我太傲慢了,都不到自己曾有多残忍。但我父亲比过去的我还要残忍得多。如果他不停下来,他就会毁了我们所有人。来吧,拿着我的流星锤去阻止钢铁骑士吧!”

", "questGoldenknight3Completion": "

铿锵一声,钢铁骑士双膝跪地倒下了。“你太强了,” 他喘着粗气说, “今天,我被轻而易举地打败了。”黄金骑士向你走来,说道:“ 谢谢你。我相信我们都从与你的相遇中学会了谦逊。我会和我的父亲好好谈谈,并解释那些针对我们的怨言。也许是时候向其他Habitican道歉了。” 她考虑了一会儿,又向你转过身来,“拿上它吧,作为我们给你的礼物,我希望你能带上我的流星锤。它现在是你的了。”

", "questGoldenknight3Boss": "钢铁骑士", "questGoldenknight3DropHoney": "蜂蜜 (食物)", @@ -154,24 +154,24 @@ "questPenguinDropPenguinEgg": "企鹅 (宠物蛋)", "questPenguinUnlockText": "解锁企鹅蛋购买功能。", "questStressbeastText": "Stoïkalm草原的可恶压力兽", - "questStressbeastNotes": "完成每日任务和待办事项来攻击世界怪兽!未完成的每日任务会填充压力打击条。当压力打击条被填满,这个世界怪兽会攻击一个NPC。世界怪物不会攻击单一玩家或账户。只有没在酒馆休息的活跃账户才会被他们的未完成任务拖累.

~*~

我们首先听到的是脚步声,缓慢,却势如千军。玩家们一个一个走出门外去看,吓得连话都说不出来。

我们以前都见过压力兽,当然是那种在困难时刻才出现的恶毒的小东西。但这一个?这一个比大楼还高,一爪子能轻易撕碎巨龙。冰霜从它恶臭的皮毛上落下,而它嘶吼,冰爆把我们的屋顶都掀翻了。除了在古老的传说里,我们从没听说过这样可怕的怪物。

“注意了,玩家们!”SabreCat大喊,“注意在屋内隐蔽!这是可恶压力兽!”

“这肯定是几百年累积的压力形成的怪物!”Kiwibot说,紧闭酒馆的门窗。\"

“Stoïkalm Steppes,”Lemoness面色严峻,“那时我们觉得他们温和无害,但这些家伙肯定偷偷把他们的压力藏在什么地方了。一代一代演化成这个怪物。现在这个怪物重获自由,去袭击他们……还有我们!”

只有一个办法能赶跑一个压力兽,无论是可恶压力兽还是其他,那就是完成每日任务和待办事项去攻击它!让我们团聚在一起达到这个可怕的敌人——不过千万不要懈怠,否则未完成的每日任务可能会激怒它,而它会……", + "questStressbeastNotes": "完成每日任务和待办事项来攻击世界怪兽!未完成的每日任务会填充压力打击条。当压力打击条被填满,这个世界怪兽会攻击一个NPC。世界怪物不会攻击单一玩家或账户。只有没在酒馆休息的活跃账户才会被他们的未完成任务拖累.

~*~

我们首先听到的是脚步声,缓慢,却势如千军。玩家们一个一个走出门外去看,吓得连话都说不出来。

我们以前都见过压力兽,当然是那种在困难时刻才出现的恶毒的小东西。但这一个?这一个比大楼还高,一爪子能轻易撕碎巨龙。冰霜从它恶臭的皮毛上落下,而它嘶吼,冰爆把我们的屋顶都掀翻了。除了在古老的传说里,我们从没听说过这样可怕的怪物。

“注意了,玩家们!”剑齿虎大喊,“注意在屋内隐蔽!这是可恶压力兽!”

“这肯定是几百年累积的压力形成的怪物!”Kiwibot说,紧闭酒馆的门窗。\"

“是冷静平原,”Lemoness面色严峻,“那时我们觉得他们温和无害,但这些家伙肯定偷偷把他们的压力藏在什么地方了。一代一代演化成这个怪物。现在这个怪物重获自由,去袭击他们……还有我们!”

只有一个办法能赶跑一个压力兽,无论是可恶压力兽还是其他,那就是完成每日任务和待办事项去攻击它!让我们团聚在一起达到这个可怕的敌人——不过千万不要懈怠,否则未完成的每日任务可能会激怒它,而它会……", "questStressbeastBoss": "可恶压力兽", "questStressbeastBossRageTitle": "压力打击", "questStressbeastBossRageDescription": "当容量满了,可恶压力兽会对玩家进行压力打击!", "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!", - "questStressbeastBossRageBailey": "`Abominable Stressbeast uses STRESS STRIKE!`\n\nThe surge of stress heals Abominable Stressbeast!\n\nAhh!!! Our incomplete Dailies caused the Abominable Stressbeast to become madder than ever and regain some of its health! Bailey the Town Crier was shouting for citizens to get to safety, and now it has seized her in its other hand! Look at her, valiantly reporting on the news as the Stressbeast swings her around viciously... Let's be worthy of her bravery by being as productive as we can to save our NPCs!", - "questStressbeastBossRageGuide": "`Abominable Stressbeast uses STRESS STRIKE!`\n\nThe surge of stress heals Abominable Stressbeast!\n\nLook out! Justin the Guide is trying to distract the Stressbeast by running around its ankles, yelling productivity tips! The Abominable Stressbeast is stomping madly, but it seems like we're really wearing this beast down. I doubt it has enough energy for another strike. Don't give up... we're so close to finishing it off!", - "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.\"", + "questStressbeastBossRageStables": "可恶压力兽使用了压力攻击!\n\n源源不断的压力治愈了可恶压力兽!\n\n噢,不!尽管我们竭尽所能,让一部分的日常远离了我们,但它们暗红色的体表激怒了可恶压力兽并恢复了它的一些生命!这个可怕的生物在马厩里横行肆虐,但驯兽师马特为了保护宠物与坐骑英勇地扑进了战斗中。压力兽用邪恶之握抓住了马特,但此刻正是他分心的时候,赶快啊!让我们在压力兽的下一次攻击到来之前控制好我们的日常!", + "questStressbeastBossRageBailey": "可恶压力兽使用了压力攻击!\n\n源源不断的压力治愈了可恶压力兽!\n\n噢,不!我们未能完成的日常任务让可恶压力兽变得前所未有的疯狂,并恢复了它的一些生命!街头公告员贝雷正在呼叫市民们钱去避难,然而这个怪物却抓住了她!看看她吧,一边承受着压力兽疯狂的甩晃一边勇敢地继续呼喊……让我们对得起她的勇敢,提高我们的效率,拯救我们的NPC!", + "questStressbeastBossRageGuide": "可恶压力兽使用了压力攻击!\n\n源源不断的压力治愈了可恶压力兽!\n\n 当心!向导贾斯汀正在试图绕着压力兽的脚来回跑,好吸引它的注意力,高喊着一些提高工作效率的点子!可恶压力兽疯狂地跺脚,但似乎我们真的已经开始让它精疲力竭了。我怀疑它还有没有力气进行下一次的攻击。不要放弃……我们就快要干掉它了!", + "questStressbeastDesperation": "可恶压力兽达到了500K的血量!可恶压力兽使用了绝望防御!\n\n我们就快做到了!通过勤勉地完成我们的日常,我们已经让压力兽的血量下降到了500K!这头畜生在绝望中吼叫挣扎,愤怒积累得越来越快。贝蕾和马特吓得大叫起来,怪物开始以吓人的速度摇晃他们,并激起一阵雪暴,遮住人们的视线,让人们难以攻击。\n\n我们必须加倍努力,并保持信心 -压力兽也知道自己快完蛋了。不要放弃!", + "questStressbeastCompletion": "可恶压力兽被打-败-了!

我们成功了!随着最后一波攻击,可恶压力兽化作了一团雪云,雪花纷纷飘落,就好像在向着拥抱着宠物和坐骑的Habitica人道喜。我们的动物和NPC们再一次安全了!

冷静镇得救了!

剑齿虎温柔地对一颗小剑齿说。“请找到冷静平原的居民们,把他们带回来。”几个小时以后,小剑齿回来了,后面跟着一群猛犸象骑士。你认出了领头的就是冰霜女士,冷静镇的领袖。

“强大的Habitica人,”她说,“我的人民和我向你们致以最深切的感谢,以及最沉重的道歉。为了保护我们的平原不受焦虑影响,我们悄悄地将我们的压力放逐到冰山之中,我们不知道几个世纪之后它们会变成这样的压力兽。它获得自由时,把我们都困在山里,攻击我们亲爱的动物们。“她忧伤地看着飘落的雪花,”我们的愚蠢将所有人置于危险之中。休息能够确保在问题找上门来之前,我们能和你一起解决它们。“

她转向一边,@Baconsaur 正在和一群猛犸宝宝嬉戏。“我们给你的动物们带来了食物,对惊吓了他们表示抱歉,另外,作为信任的象征,我们会留给你一些我们的宠物和坐骑。我们知道你一定能好好照顾它们。”", + "questStressbeastCompletionChat": "可恶压力兽被打-败-了!\n\n我们成功了!随着最后一波攻击,可恶压力兽化作了一团雪云,雪花纷纷飘落,就好像在向着拥抱着宠物和坐骑的Habitica人道喜。我们的动物和NPC们再一次安全了!\n\n冷静镇得救了!\n\n剑齿虎温柔地对一颗小剑齿说。“请找到冷静平原的居民们,把他们带回来。”几个小时以后,小剑齿回来了,后面跟着一群猛犸象骑士。你认出了领头的就是冰霜女士,冷静镇的领袖。\n\n“强大的Habitica人,”她说,“我的人民和我向你们致以最深切的感谢,以及最沉重的道歉。为了保护我们的平原不受焦虑影响,我们悄悄地将我们的压力放逐到冰山之中,我们不知道几个世纪之后它们会变成这样的压力兽。它获得自由时,把我们都困在山里,攻击我们亲爱的动物们。“她忧伤地看着飘落的雪花,”我们的愚蠢将所有人置于危险之中。休息能够确保在问题找上门来之前,我们能和你一起解决它们。“\n\n她转向一边,@Baconsaur 正在和一群猛犸宝宝嬉戏。“我们给你的动物们带来了食物,对惊吓了他们表示抱歉,另外,作为信任的象征,我们会留给你一些我们的宠物和坐骑。我们知道你一定能好好照顾它们。”", "questTRexText": "恐龙王", - "questTRexNotes": "Now that ancient creatures from the Stoïkalm Steppes are roaming throughout all of Habitica, @Urse has decided to adopt a full-grown Tyrannosaur. What could go wrong?

Everything.", - "questTRexCompletion": "The wild dinosaur finally stops its rampage and settles down to make friends with the giant roosters. @Urse beams down at it. \"They're not such terrible pets, after all! They just need a little discipline. Here, take some Tyrannosaur eggs for yourself.\"", + "questTRexNotes": "现在来自冷静平原的远古生物们发出的吼声已经响彻Habitica。@Urse 决定收养一只成熟的霸王龙。有什么不对吗?

什么都不对。", + "questTRexCompletion": "这只野生恐龙终于停止愤怒,坐下来和巨鸡友好相处了。@Urse 给了它一个笑容。“归根结底,它们不是那么可怕的宠物!他们只需要一点纪律管教。喏,自己拿一些霸王龙蛋吧。”", "questTRexBoss": "血肉霸王龙", "questTRexUndeadText": "恐龙大发现", - "questTRexUndeadNotes": "As the ancient dinosaurs from the Stoïkalm Steppes roam through Habit City, a cry of terror emanates from the Grand Museum. @Baconsaur shouts, \"The Tyrannosaur skeleton in the museum is stirring! It must have sensed its kin!\" The bony beast bares its teeth and clatters towards you. How can you defeat a creature that is already dead? You'll have to strike fast before it heals itself!", + "questTRexUndeadNotes": "来自冷静平原的远古生物们发出的吼声在Habit市回想,大博物馆中发出了一声恐惧的哀嚎。@Baconsaur 喊道:“博物馆里的霸王龙骨架在动!它一定感觉到了自己的同类!”全身白骨的怪物量除了牙齿,嚓嚓地走向了你。你如何打败一只已经死了的生物?必须在它治疗自己之前快速攻击!", "questTRexUndeadCompletion": "霸王龙闪亮的瞳中的光熄灭了,然后坐回到了它熟悉的台子上。每个人都如释重负地叹了口气。\"看!\"@灯塔龙说。\"你的化石蛋里面有几个闪亮而崭新的!也许它们能为你孵出什么。\"", "questTRexUndeadBoss": "骷髅霸王龙", "questTRexUndeadRageTitle": "骷髅治疗", @@ -180,9 +180,9 @@ "questTRexDropTRexEgg": "霸王龙 (宠物蛋)", "questTRexUnlockText": "解锁霸王龙蛋购买功能。", "questRockText": "逃离山洞生物", - "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!\"", + "questRockNotes": "你正在和朋友们一起穿越Habitica绵延山。一天晚上,你在一个闪烁着矿石光辉的岩洞里扎了营,但第二天早上醒来时,入口已经不见了,而脚下的地面正在提升。

“大山活了!”你的同伴@pfeffernusse 喊道,“这不是晶石,这是牙齿!”

@Painter de Cluster 抓住了你的手:“我们得另找一条路出去——跟着我不要跑开,不然我们会永远被困在这里!\"", "questRockBoss": "水晶巨像", - "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?", + "questRockCompletion": "你的勤勉让你在这座活山里找到了一条安全的通路。站在阳光之下,你的朋友@intune 注意到有东西正在山洞出口附近的地上滚动。你走了过去并捡起了一个,发现那是一块透着一点金色矿脉的小石头,旁边还有许多带着特定斑点的石头。它们看上去很像……蛋?", "questRockDropRockEgg": "岩石(蛋)", "questRockUnlockText": "在市场里解锁岩石蛋的购买功能", "questBunnyText": "杀人兔", @@ -192,21 +192,21 @@ "questBunnyDropBunnyEgg": "兔(宠物蛋)", "questBunnyUnlockText": "解锁兔子蛋购买功能", "questSlimeText": "果冻摄政王", - "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.", + "questSlimeNotes": "正当你在努力完成你的任务时,你注意到你移动得越来越慢了。”就像是走在糖浆里一样,“@Leephon抱怨道。”不,像是在果冻里穿行!”@starsystemic说:”那黏糊糊的果冻摄政王已经彻底到达Habitica了。它扰乱了我们的工作,每个人都在越来越慢。“你环顾四周。街道正慢慢地被五颜六色、炫彩夺目的淤泥填充着,Habiticans做任何事情都变得艰难起来。当其他人逃离该地区的时候,你抓起了一个拖把,准备战斗!", + "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!", + "questSheepNotes": "在你和朋友一起到任务汗国的乡村郊外散步时,你打算花很短的时间开个小差,于是发现了一间毛纺店,于是你陷入了拖延症不可自拔,都没有发现天际出现了不祥的乌云。“我有个天气要不……不……不好的感觉。” @Misceo 喃喃的说,你抬起了头,雷雨云正聚在一起翻滚,而且看起来很像一群……“我们没空看云瞎想了!” @starsystemic 喊道,“它要打过来了!”雷霆公羊向前撞去,向你甩去一道一道的闪电!", "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.", + "questSheepCompletion": "雷霆公羊被你的用功震撼了,它的愤怒已经耗尽,最终它向你甩来三个巨大的冰雹,然后随着低沉的轰隆声逐渐消失。仔细观察以后你发现这些冰雹其实是三个毛茸茸的蛋。你把他们收了起来,在碧蓝的天空下向家走去。", "questSheepDropSheepEgg": "羊(蛋)", "questSheepUnlockText": "解锁绵羊蛋购买功能", - "questKrakenText": "象征着未完成的北海巨妖", - "questKrakenNotes": "It's a warm, sunny day as you sail across the Inkomplete Bay, but your thoughts are clouded with worries about everything that you still need to do. It seems that as soon as you finish one task, another crops up, and then another...

Suddenly, the boat gives a horrible jolt, and slimy tentacles burst out of the water on all sides! \"We're being attacked by the Kraken of Inkomplete!\" Wolvenhalo cries.

\"Quickly!\" Lemoness calls to you. \"Strike down as many tentacles and tasks as you can, before new ones can rise up to take their place!\"", + "questKrakenText": "未完成海妖", + "questKrakenNotes": "这是一个温暖充满阳光的日子,你正在未完成海湾驾船穿行,脑子里充满了对那些你还没能去做完的事情的忧虑,好像你做完一个,就会出现另外一个……,

突然间,船底一阵猛震,湿滑的触手迫害而出,从船两边爬了上来!“我们被攻击了!是未完成海妖!“Wolvenhalo喊道。

”快!“柠檬小姐对你喊道,”尽量多打退一些触手,还有你的任务,不然新的就会再升上来填补它们的空缺!“", "questKrakenBoss": "象征着未完成的北海巨妖", - "questKrakenCompletion": "As the Kraken flees, several eggs float to the surface of the water. Lemoness examines them, and her suspicion turns to delight. \"Cuttlefish eggs!\" she says. \"Here, take them as a reward for everything you've completed.\"", + "questKrakenCompletion": "海怪逃之夭夭了,留下几枚蛋在海面上漂浮着。柠檬小姐检查了一下,她的疑问转为欣喜:“是墨鱼蛋!”她说,“这儿,拿几个作为你完成的任务的奖励吧。”", "questKrakenDropCuttlefishEgg": "墨鱼(蛋)", "questKrakenUnlockText": "解锁墨鱼蛋购买功能", "questWhaleText": "鲸之哀嚎", @@ -236,7 +236,7 @@ "questDilatoryDistress3Completion": "Finally, you manage to pull the bewitched pendant from Adva's neck and throw it away. Adva clutches her head. \"Where am I? What happened here?\" After hearing your story, she frowns. \"This necklace was given to me by a strange ambassador - a lady called 'Tzina'. I don't remember anything after that!\"

Back at Dilatory, Manta is overjoyed by your success. \"Allow me to reward you with this trident and shield! I ordered them from @aiseant and @starsystemic as a gift for Adva, but... I'd rather not put weapons in her hands any time soon.\"", "questDilatoryDistress3Boss": "Adva, the Usurping Mermaid", "questDilatoryDistress3DropFish": "鱼(食物)", - "questDilatoryDistress3DropWeapon": "Trident of Crashing Tides (Weapon)", + "questDilatoryDistress3DropWeapon": "咆哮海浪的三叉戟(武器)", "questDilatoryDistress3DropShield": "玉轮明珠盾(手持防御物品)", "questCheetahText": "真是一个猎豹", "questCheetahNotes": "As you hike across the Sloensteadi Savannah with your friends @PainterProphet, @tivaquinn, @Unruly Hyena, and @Crawford, you're startled to see a Cheetah screeching past with a new Habitican clamped in its jaws. Under the Cheetah's scorching paws, tasks burn away as though complete -- before anyone has the chance to actually finish them! The Habitican sees you and yells, \"Please help me! This Cheetah is making me level too quickly, but I'm not getting anything done. I want to slow down and enjoy the game. Make it stop!\" You fondly remember your own fledgling days, and know that you have to help the newbie by stopping the Cheetah!", @@ -250,13 +250,13 @@ "questHorseBoss": "夜魇", "questHorseDropHorseEgg": "马(蛋)", "questHorseUnlockText": "解锁购买马蛋功能", - "questBurnoutText": "Burnout and the Exhaust Spirits", + "questBurnoutText": "湮灭怪和被耗尽的灵魂", "questBurnoutNotes": "It is well past midnight, still and stiflingly hot, when Redphoenix and scout captain Kiwibot abruptly burst through the city gates. \"We need to evacuate all the wooden buildings!\" Redphoenix shouts. \"Hurry!\"

Kiwibot grips the wall as she catches her breath. \"It's draining people and turning them into Exhaust Spirits! That's why everything was delayed. That's where the missing people have gone. It's been stealing their energy!\"

\"'It'?'\" asks Lemoness.

And then the heat takes form.

It rises from the earth in a billowing, twisting mass, and the air chokes with the scent of smoke and sulphur. Flames lick across the molten ground and contort into limbs, writhing to horrific heights. Smoldering eyes snap open, and the creature lets out a deep and crackling cackle.

Kiwibot whispers a single word.

\"Burnout.\"", - "questBurnoutCompletion": "Burnout is DEFEATED!

With a great, soft sigh, Burnout slowly releases the ardent energy that was fueling its fire. As the monster curls quietly into ashes, its stolen energy shimmers through the air, rejuvenating the Exhaust Spirits and returning them to their true forms.

Ian, Daniel, and the Seasonal Sorceress cheer as Habiticans rush to greet them, and all the missing citizens of the Flourishing Fields embrace their friends and families. The final Exhaust Spirit transforms into the Joyful Reaper herself!

\"Look!\" whispers @Baconsaur, as the ashes begin to glitter. Slowly, they resolve into hundreds of shining phoenixes!

One of the glowing birds alights on the Joyful Reaper's skeletal arm, and she grins at it. \"It has been a long time since I've had the exquisite privilege to behold a phoenix in the Flourishing Fields,\" she says. \"Although given recent occurrences, I must say, this is highly thematically appropriate!\"

Her tone sobers, although (naturally) her grin remains. \"We're known for being hard-working here, but we are also known for our feasts and festivities. Rather ironic, I suppose, that as we strove to plan a spectacular party, we refused to permit ourselves any time for fun. We certainly won't make the same mistake twice!\"

She claps her hands. \"Now - let's celebrate!\"", - "questBurnoutCompletionChat": "`Burnout is DEFEATED!`\n\nWith a great, soft sigh, Burnout slowly releases the ardent energy that was fueling its fire. As the monster curls quietly into ashes, its stolen energy shimmers through the air, rejuvenating the Exhaust Spirits and returning them to their true forms.\n\nIan, Daniel, and the Seasonal Sorceress cheer as Habiticans rush to greet them, and all the missing citizens of the Flourishing Fields embrace their friends and families. The final Exhaust Spirit transforms into the Joyful Reaper herself!\n\n\"Look!\" whispers @Baconsaur, as the ashes begin to glitter. Slowly, they resolve into hundreds of shining phoenixes!\n\nOne of the glowing birds alights on the Joyful Reaper's skeletal arm, and she grins at it. \"It has been a long time since I've had the exquisite privilege to behold a phoenix in the Flourishing Fields,\" she says. \"Although given recent occurrences, I must say, this is highly thematically appropriate!\"\n\nHer tone sobers, although (naturally) her grin remains. \"We're known for being hard-working here, but we are also known for our feasts and festivities. Rather ironic, I suppose, that as we strove to plan a spectacular party, we refused to permit ourselves any time for fun. We certainly won't make the same mistake twice!\"\n\nShe claps her hands. \"Now - let's celebrate!\"\n\nAll Habiticans receive:\n\nPhoenix Pet\nPhoenix Mount\nAchievement: Savior of the Flourishing Fields\nBasic Candy\nVanilla Candy\nSand Candy\nCinnamon Candy\nChocolate Candy\nRotten Candy\nSour Pink Candy\nSour Blue Candy\nHoney Candy", - "questBurnoutBoss": "Burnout", - "questBurnoutBossRageTitle": "Exhaust Strike", - "questBurnoutBossRageDescription": "When this gauge fills, Burnout will unleash its Exhaust Strike on Habitica!", + "questBurnoutCompletion": "湮灭怪被击败了!

伴随着一个美妙的、柔软的叹息,湮灭怪慢慢地释放了曾被它用来助长了火灾的热情能量。当怪兽静静地蜷缩最终化为灰烬时,其偷来的能量在空中闪闪发光,使被耗尽的精力们恢复了活力,回到了他们真实的模样。

岚,丹尼尔,和季节女巫与冲过去迎接他们的Habiticans一起欢庆着,所有全盛田野失踪的百姓都回来了,他们拥抱着自己的朋友和家人。最后耗尽的灵魂变为了“快乐收割者”!

“瞧!”@Baconsaur低语,灰烬开始闪烁,慢慢地,他们分解成数百闪闪发光的凤凰!

一只发光的小鸟栖落在了快乐收割者纤细的手臂上,她露出了洁白的牙齿笑道:“距离上一次我有幸在全盛田野看见凤凰已经有很长世间了,”她说:“但是最近发生的这些事,我必须说,这正是恰如其分再好不过!”

她的语调平静,虽然(自然而然)她的笑容依旧:”我们在这片土地上因为辛勤劳作而享有盛名,但是我们也曾因节日和庆祝活动而为世人所知。当我们努力去计划一个盛大的宴会时,我想,这太讽刺了。曾经我们拒绝让自己有任何玩乐的时间。现在,我们当然不会再一次犯同样的错误!”

她拍着她的双手:“现在——让我们来庆祝吧!”", + "questBurnoutCompletionChat": "湮灭怪被击败了!\n\n随着一个美妙的、柔软的叹息,湮灭怪慢慢地释放了曾被它用来助长了火灾的热情能量。当怪兽静静地蜷缩最终化为灰烬时,其偷来的能量在空中闪闪发光,使被耗尽的精力们恢复了活力,回到了他们真实的模样。\n\n岚,丹尼尔,和季节女巫与冲过去迎接他们的Habiticans一起欢庆着,所有全盛田野失踪的百姓都回来了,他们拥抱着自己的朋友和家人。最后耗尽的灵魂变为了“快乐收割者”!\n\n“瞧!”@Baconsaur低语,灰烬开始闪烁,慢慢地,他们分解成数百闪闪发光的凤凰!\n\n一只发光的小鸟栖落在了快乐收割者纤细的手臂上,她露出了洁白的牙齿笑道:“距离上一次我有幸在全盛田野看见凤凰已经有很长世间了,”她说:“但是最近发生的这些事,我必须说,这正是恰如其分再好不过!”\n\n她的语调平静,虽然(自然而然)她的笑容依旧:”我们在这片土地上因为辛勤劳作而享有盛名,但是我们也曾因节日和庆祝活动而为世人所知。当我们努力去计划一个盛大的宴会时,我想,这太讽刺了。曾经我们拒绝让自己有任何玩乐的时间。现在,我们当然不会再一次犯同样的错误!”\n\n她拍着她的双手:“现在——让我们来庆祝吧!”\n\n所有的Habiticans获得:\n\n凤凰宠物\n凤凰坐骑\n成就:全盛田野的守护者\n普通糖果\n香草糖果\n砂糖果\n肉桂糖果\n巧克力糖果\n腐烂糖果\n粉色酸味糖果\n蓝色酸味糖果\n蜂蜜糖果", + "questBurnoutBoss": "湮灭怪", + "questBurnoutBossRageTitle": "湮灭攻击", + "questBurnoutBossRageDescription": "当这个量槽被填满,湮灭怪就会在Habitica释放他的湮灭攻击!", "questBurnoutDropPhoenixPet": "凤凰(宠物)", "questBurnoutDropPhoenixMount": "凤凰(坐骑)", "questBurnoutBossRageQuests": "`Burnout uses EXHAUST STRIKE!`\n\nOh no! Despite our best efforts, we've let some Dailies get away from us, and now Burnout is inflamed with energy! With a crackling snarl, it engulfs Ian the Quest Master in a surge of spectral fire. As fallen quest scrolls smolder, the smoke clears, and you see that Ian has been drained of energy and turned into a drifting Exhaust Spirit!\n\nOnly defeating Burnout can break the spell and restore our beloved Quest Master. Let's keep our Dailies in check and defeat this monster before it attacks again!", @@ -268,10 +268,10 @@ "questFrogBoss": "一群青蛙", "questFrogDropFrogEgg": "青蛙 (宠物蛋)", "questFrogUnlockText": "解锁购买青蛙蛋功能", - "questSnakeText": "The Serpent of Distraction", + "questSnakeText": "分心蛇", "questSnakeNotes": "It takes a hardy soul to live in the Sand Dunes of Distraction. The arid desert is hardly a productive place, and the shimmering dunes have led many a traveler astray. However, something has even the locals spooked. The sands have been shifting and upturning entire villages. Residents claim a monster with an enormous serpentine body lies in wait under the sands, and they have all pooled together a reward for whomever will help them find and stop it. The much-lauded snake charmers @EmeraldOx and @PainterProphet have agreed to help you summon the beast. Can you stop the Serpent of Distraction?", "questSnakeCompletion": "With assistance from the charmers, you banish the Serpent of Distraction. Though you were happy to help the inhabitants of the Dunes, you can't help but feel a little sad for your fallen foe. While you contemplate the sights, @LordDarkly approaches you. \"Thank you! It's not much, but I hope this can express our gratitude properly.\" He hands you some Gold and... some Snake eggs! You will see that majestic animal again after all.", - "questSnakeBoss": "Serpent of Distraction", + "questSnakeBoss": "分心蛇", "questSnakeDropSnakeEgg": "蛇(宠物蛋)", - "questSnakeUnlockText": "Unlocks purchasable Snake eggs in the Market" + "questSnakeUnlockText": "解锁蛇蛋购买功能" } \ No newline at end of file diff --git a/common/locales/zh/settings.json b/common/locales/zh/settings.json index c79f6f3af2..bbd9d8bb43 100644 --- a/common/locales/zh/settings.json +++ b/common/locales/zh/settings.json @@ -143,5 +143,8 @@ "gemCapExtra": "宝石额外上限:", "mysticHourglasses": "神秘沙漏:", "paypal": "PayPal", - "amazonPayments": "亚马逊支付" + "amazonPayments": "亚马逊支付", + "timezone": "Time Zone", + "timezoneUTC": "Habitica uses the time zone set on your PC, which is: <%= utc %>", + "timezoneInfo": "If that time zone is wrong, first reload this page using your browser's reload or refresh button to ensure that Habitica has the most recent information. If it is still wrong, adjust the time zone on your PC and then reload this page again.

If you use Habitica on other PCs or mobile devices, the time zone must be the same on them all. If your Dailies have been reseting at the wrong time, repeat this check on all other PCs and on a browser on your mobile devices." } \ No newline at end of file diff --git a/common/locales/zh/spells.json b/common/locales/zh/spells.json index 28dfe16ea6..e9cd79fc86 100644 --- a/common/locales/zh/spells.json +++ b/common/locales/zh/spells.json @@ -26,7 +26,7 @@ "spellHealerHealText": "圣光术", "spellHealerHealNotes": "圣光笼罩着你,治愈了你的伤口。你获得了生命值!(法术强度与体质值以及智力值有关)", "spellHealerBrightnessText": "灼热光矢", - "spellHealerBrightnessNotes": "你爆发出一道光闪瞎了你的任务。你的任务的蓝色值增加、红色值降低了。(法术强度与力量值有关)", + "spellHealerBrightnessNotes": "你爆发出一道光闪瞎了你的任务。你的任务的蓝色值增加、红色值降低了。(法术强度与智力值有关)", "spellHealerProtectAuraText": "守护光环", "spellHealerProtectAuraNotes": "你保护你的队伍免受伤害。你的整个队伍获得体质上的增益!(法术强度与未增益的体质值有关)", "spellHealerHealAllText": "祝福", diff --git a/common/locales/zh/tasks.json b/common/locales/zh/tasks.json index fd9023e9b6..e07d95e71b 100644 --- a/common/locales/zh/tasks.json +++ b/common/locales/zh/tasks.json @@ -88,8 +88,7 @@ "fortifyText": "稳固作用会将所有的任务重置到初始(黄色)状态,就像刚刚添加时一样,还会回满你的生命值。如果你变红的任务太多,让你感到游戏太难进行,而蓝色的任务又太容易,这会非常有帮助。如果觉得重获新生非常激励人,那就花几块宝石来给自己缓解一下吧!", "sureDelete": "你确定要删除这个任务吗?", "streakCoins": "连击奖励!", - "pushTaskToTop": "将任务置于顶部", - "pushTaskToBottom": "将任务置于底部", + "pushTaskToTop": "Push task to top. Hold ctrl or cmd to push to bottom.", "emptyTask": "请先输入任务标题", "dailiesRestingInInn": "你在客栈休息了!你的每日任务不会伤害你但是依然会每天更新。如果你在执行剧情任务,直到你离开客栈,你都不会受到伤害/收集物品,但是如果你的队伍成员没有完成自己的每日任务,你依然会收到来自 王 的伤害", "habitHelp1": "好习惯是你要坚持的。每次你按 <%= plusIcon %>他们都会给你黄金和经验奖励", diff --git a/common/locales/zh_TW/backgrounds.json b/common/locales/zh_TW/backgrounds.json index 9a40e2e657..f580e72b6a 100644 --- a/common/locales/zh_TW/backgrounds.json +++ b/common/locales/zh_TW/backgrounds.json @@ -9,7 +9,7 @@ "backgroundForestNotes": "在夏天的森林裡漫步。", "backgrounds072014": "第 2 組:2014 年 7 月推出", "backgroundCoralReefText": "珊瑚礁", - "backgroundCoralReefNotes": "在珊瑚礁之間遨遊。", + "backgroundCoralReefNotes": "在珊瑚礁之間游泳。", "backgroundOpenWatersText": "海洋", "backgroundOpenWatersNotes": "享受茫茫大海。", "backgroundSeafarerShipText": "航行中的船", @@ -18,14 +18,14 @@ "backgroundCloudsText": "雲朵", "backgroundCloudsNotes": "在雲端漫步。", "backgroundDustyCanyonsText": "塵封的峽谷", - "backgroundDustyCanyonsNotes": "漫步在塵封的峽谷。", + "backgroundDustyCanyonsNotes": "在塵封的峽谷漫步。", "backgroundVolcanoText": "火山", "backgroundVolcanoNotes": "身處於炙熱火山中。", "backgrounds092014": "第 4 組:2014 年 9 月推出", "backgroundThunderstormText": "雷雨", "backgroundThunderstormNotes": "雷雨中的閃電。", "backgroundAutumnForestText": "秋季森林", - "backgroundAutumnForestNotes": "遊盪在秋天的森林中。", + "backgroundAutumnForestNotes": "在秋天的森林中遊盪。", "backgroundHarvestFieldsText": "肥沃農田", "backgroundHarvestFieldsNotes": "在肥沃的農田中耕種。", "backgrounds102014": "第 5 組:2014 年 10 月推出", @@ -46,7 +46,7 @@ "backgroundIcebergText": "冰山", "backgroundIcebergNotes": "在一座冰山上漂流。", "backgroundTwinklyLightsText": "冬季的閃耀之光", - "backgroundTwinklyLightsNotes": "漫步在鑲著聖誕燈飾的樹林間。", + "backgroundTwinklyLightsNotes": "在鑲著聖誕燈飾的樹林間漫步。", "backgroundSouthPoleText": "南極", "backgroundSouthPoleNotes": "探訪冰天雪地的南極。", "backgrounds012015": "第 8 組:2015 年 1 月推出", @@ -55,9 +55,9 @@ "backgroundFrigidPeakText": "寒冷的山峰", "backgroundFrigidPeakNotes": "攻上一座寒冷的山頂。", "backgroundSnowyPinesText": "白雪皚皚的松樹", - "backgroundSnowyPinesNotes": "避難所中雪白的松樹。", + "backgroundSnowyPinesNotes": "在雪白的松樹庇護。", "backgrounds022015": "第 9 組: 2015 年 2 月推出", - "backgroundBlacksmithyText": "黑色的鐵匠鋪", + "backgroundBlacksmithyText": "鐵匠鋪", "backgroundBlacksmithyNotes": "在黑鐵匠鋪中勞動。", "backgroundCrystalCaveText": "水晶洞穴", "backgroundCrystalCaveNotes": "探索水晶洞穴。", @@ -69,7 +69,7 @@ "backgroundStainedGlassText": "彩繪玻璃", "backgroundStainedGlassNotes": "欣賞彩繪玻璃。", "backgroundRollingHillsText": "連綿起伏的山丘", - "backgroundRollingHillsNotes": "嬉鬧在連綿起伏的山丘中。", + "backgroundRollingHillsNotes": "在連綿起伏的山丘中嬉鬧。", "backgrounds042015": "第 11 組:2015 年 4 月推出", "backgroundCherryTreesText": "櫻花樹", "backgroundCherryTreesNotes": "欣賞綻放的櫻花樹。", @@ -79,11 +79,11 @@ "backgroundGumdropLandNotes": "品嘗糖果世界的景色。", "backgrounds052015": "第 12 組:2015 年五月推出", "backgroundMarbleTempleText": "大理石神廟", - "backgroundMarbleTempleNotes": "展現在大理石神廟之前", + "backgroundMarbleTempleNotes": "在大理石神廟之前展現。", "backgroundMountainLakeText": "山脈之湖", - "backgroundMountainLakeNotes": "把你的腳指浸在山脈之湖裡面", + "backgroundMountainLakeNotes": "把你的腳指浸在山脈之湖裡面。", "backgroundPagodasText": "佛塔", - "backgroundPagodasNotes": "爬到佛塔的頂端", + "backgroundPagodasNotes": "爬到佛塔的頂端。", "backgrounds062015": "第 13 組:2015 年 6 月推出", "backgroundDriftingRaftText": "漂流筏", "backgroundDriftingRaftNotes": "泛舟漂流筏。", @@ -92,38 +92,45 @@ "backgroundIslandWaterfallsText": "島上的瀑布", "backgroundIslandWaterfallsNotes": "在島上的瀑布野餐", "backgrounds072015": "第 14 組:2015 年 7 月推出", - "backgroundDilatoryRuinsText": "拖拉遺址", - "backgroundDilatoryRuinsNotes": "潛入拖拉遺址。", + "backgroundDilatoryRuinsText": "緩慢遺址", + "backgroundDilatoryRuinsNotes": "潛入緩慢遺址。", "backgroundGiantWaveText": "巨潮", "backgroundGiantWaveNotes": "在巨潮中衝浪。", - "backgroundSunkenShipText": "沈船", - "backgroundSunkenShipNotes": "探索沈船", + "backgroundSunkenShipText": "沉船", + "backgroundSunkenShipNotes": "探索沉船", "backgrounds082015": "第 15 組:2015 年 8 月推出", "backgroundPyramidsText": "金字塔", "backgroundPyramidsNotes": "欣賞金字塔。", - "backgroundSunsetSavannahText": "薩凡納日落", + "backgroundSunsetSavannahText": "草原的日落", "backgroundSunsetSavannahNotes": "慢慢走進薩凡納日落。", "backgroundTwinklyPartyLightsText": "閃爍的晚會燈光", - "backgroundTwinklyPartyLightsNotes": "在閃爍的晚會燈光下跳舞!", + "backgroundTwinklyPartyLightsNotes": "在閃爍的晚會燈光下跳舞 !", "backgrounds092015": "第 16 組:2015 年 9 月推出", "backgroundMarketText": "Habitica市集", - "backgroundMarketNotes": "在Habitica市集的店舖", - "backgroundStableText": "Habitica馬廄", - "backgroundStableNotes": "將座騎牽至Habitica馬廄照料", - "backgroundTavernText": "Habitica酒館", - "backgroundTavernNotes": "拜訪Habitica酒館", + "backgroundMarketNotes": "在 Habitica 市集的店舖購物。", + "backgroundStableText": "Habitica 的馬房", + "backgroundStableNotes": "在 Habitica 的馬房照料座騎。", + "backgroundTavernText": "Habitica 的酒館", + "backgroundTavernNotes": "拜訪 Habitica 的酒館。", "backgrounds102015": "第 17 組:2015 年 10 月推出", "backgroundHarvestMoonText": "滿月", - "backgroundHarvestMoonNotes": "在滿月下閒聊", + "backgroundHarvestMoonNotes": "在滿月下咯咯笑。", "backgroundSlimySwampText": "黏糊糊的沼澤", "backgroundSlimySwampNotes": "跋涉過黏糊糊的沼澤", "backgroundSwarmingDarknessText": "蜂擁黑暗", - "backgroundSwarmingDarknessNotes": "在蜂擁黑暗瑟瑟發抖", + "backgroundSwarmingDarknessNotes": "在蜂擁的黑暗中瑟瑟發抖。", "backgrounds112015": "第 18 組:2015 年 11 月推出", "backgroundFloatingIslandsText": "漂浮島", - "backgroundFloatingIslandsNotes": "跳躍過整座漂浮島", + "backgroundFloatingIslandsNotes": "跳躍過漂浮島。", "backgroundNightDunesText": "夜之砂丘", - "backgroundNightDunesNotes": "悠哉地散步過夜之砂丘", + "backgroundNightDunesNotes": "悠哉地散步過夜之砂丘。", "backgroundSunsetOasisText": "日落綠洲", - "backgroundSunsetOasisNotes": "在日落綠洲裡面曬曬夕陽" + "backgroundSunsetOasisNotes": "在日落綠洲裡面曬曬夕陽。", + "backgrounds122015": "SET 19: Released December 2015", + "backgroundAlpineSlopesText": "Alpine Slopes", + "backgroundAlpineSlopesNotes": "Ski on the Alpine Slopes.", + "backgroundSnowySunriseText": "Snowy Sunrise", + "backgroundSnowySunriseNotes": "Gaze at the Snowy Sunrise.", + "backgroundWinterTownText": "Winter Town", + "backgroundWinterTownNotes": "Bustle through a Winter Town." } \ No newline at end of file diff --git a/common/locales/zh_TW/challenge.json b/common/locales/zh_TW/challenge.json index 0f187fad77..c463153958 100644 --- a/common/locales/zh_TW/challenge.json +++ b/common/locales/zh_TW/challenge.json @@ -1,7 +1,7 @@ { "challenge": "挑戰", "brokenChaLink": "無效的挑戰連結", - "brokenTask": "無效的挑戰連結:這項任務本來是一個挑戰的一部分,但是此任務已從該挑戰中移除了。你想怎麼處置這項任務?", + "brokenTask": "無效的挑戰連結:這項任務本來是一個挑戰的一部份,但是此任務已從該挑戰中移除了。你想怎樣做?", "keepIt": "保留", "removeIt": "刪除", "brokenChallenge": "無效的挑戰連結:這項任務本來是一個挑戰的一部分,但是該挑戰 (或隊伍) 已經被刪除了。你想怎麼處置這項任務?", @@ -11,14 +11,14 @@ "unsubChallenge": "無效的挑戰連結:這項任務本來是一個挑戰的一部分,可是你已經取消訂閱該挑戰了。你想怎麼處置這項任務?", "challengeWinner": "贏得了以下挑戰", "challenges": "挑戰", - "noChallenges": "還沒有挑戰,在", - "toCreate": "這裡建立一個。", + "noChallenges": "還沒有挑戰,探訪", + "toCreate": "去建立一個。", "selectWinner": "選一位贏家然後結束挑戰:", "deleteOrSelect": "刪除或選擇贏家", "endChallenge": "結束挑戰", "challengeDiscription": "這些是該挑戰的任務。玩家參與挑戰後,它們會改變顏色並通過圖表來顯示該挑戰參加者的整體進度。", - "hows": "看看其他人的進度如何?", - "filter": "篩選條件", + "hows": "其他人的進度如何呢?", + "filter": "篩選", "groups": "群組", "all": "全選", "noNone": "全不選", @@ -30,36 +30,36 @@ "discard": "取消", "challengeTitle": "挑戰名", "challengeTag": "標籤名", - "challengeTagPop": "挑戰名會顯示在在標籤列表和任務的工具提示中。所以挑戰名要盡量短。例如用「-10 磅」代替「在 3 個月內減掉 10 磅」 (點選查看詳細資訊)。", - "challengeDescr": "詳細說明", + "challengeTagPop": "挑戰會顯示在在標籤列表和任務的工具提示中。所以挑戰名要盡量短。例如用「-10 磅」代替「在 3 個月內減掉 10 磅」 (點選查看詳細資訊)。", + "challengeDescr": "說明", "prize": "戰利品", - "prizePop": "如果有人「贏得」了你的挑戰,你可以獎勵贏家一些寶石。最大值 = 你擁有的寶石數(+ 公會寶石數,如果你建立了是這個公會的挑戰)。注意:獎勵設定好之後就不能修改。", + "prizePop": "如果有人「贏得」了你的挑戰,你可以獎勵贏家一些寶石。最大值 = 你擁有的寶石數(如果你建立了這個挑戰的公會+ 公會寶石數)。注意:獎勵設定好之後就不能修改。", "prizePopTavern": "如果有人「贏得」了你的挑戰,你可以獎勵贏家一些寶石。最大值 = 你擁有的寶石數。注意:獎勵設定好之後就不能修改,如果取消挑戰寶石也不能退回。", "publicChallenges": "公開挑戰 最少需要 1 個寶石作為獎勵 (為了防止有人拿來打廣告。)", "officialChallenge": "Habitica 官方挑戰", - "by": "發起人", + "by": "發起人 :", "participants": "<%= membercount %>個參與者", "join": "加入", - "exportChallengeCSV": "匯出為 CSV", + "exportChallengeCSV": "匯出至CSV", "selectGroup": "請選擇群組", "challengeCreated": "挑戰已建立", "sureDelCha": "你確定要收回挑戰嗎?", - "sureDelChaTavern": "你確定要收回挑戰嗎?你付出的寶石不會退還喔!", + "sureDelChaTavern": "你確定要收回挑戰嗎?你付出的寶石不會退還喔 !", "removeTasks": "移除任務", "keepTasks": "保留任務", - "closeCha": "關閉挑戰並且……", - "leaveCha": "離開挑戰並且……", + "closeCha": "關閉挑戰並……", + "leaveCha": "離開挑戰並……", "challengedOwnedFilterHeader": "擁有者", "challengedOwnedFilter": "已擁有", "challengedNotOwnedFilter": "尚未擁有", - "challengedEitherOwnedFilter": "兩者皆不", - "backToChallenges": "回到挑戰", - "prizeValue": "<%= gemcount %> <%= gemicon %> 禮物", + "challengedEitherOwnedFilter": "都顯示", + "backToChallenges": "回到所有挑戰", + "prizeValue": "<%= gemcount %> <%= gemicon %> 禮物", "clone": "複製", - "challengeNotEnoughGems": "沒有足夠的寶石來產生這個挑戰", - "noPermissionEditChallenge": "你沒有權限更動這個挑戰的內容", - "noPermissionDeleteChallenge": "你沒有權限撤回這個挑戰要求", - "noPermissionCloseChallenge": "你沒有權限關閉這個挑戰", + "challengeNotEnoughGems": "你沒有足夠的寶石來產生這個挑戰。", + "noPermissionEditChallenge": "你沒有權限更動這個挑戰的內容。", + "noPermissionDeleteChallenge": "你沒有權限撤回這個挑戰。", + "noPermissionCloseChallenge": "你沒有權限關閉這個挑戰。", "congratulations": "恭喜!", "hurray": "太好了!", "noChallengeOwner": "無人擁有", diff --git a/common/locales/zh_TW/character.json b/common/locales/zh_TW/character.json index c338812951..a59901bd39 100644 --- a/common/locales/zh_TW/character.json +++ b/common/locales/zh_TW/character.json @@ -4,7 +4,7 @@ "avatar": "角色", "other": "其他", "fullName": "全名", - "displayName": "暱稱", + "displayName": "顯示名稱", "displayPhoto": "照片", "displayBlurb": "自我介紹", "displayBlurbPlaceholder": "請介紹你自己", @@ -33,13 +33,13 @@ "bodyFacialHair": "鬍鬚", "beard": "落腮鬍", "mustache": "八字鬍", - "flower": "花", + "flower": "花朵", "basicSkins": "基本膚色", "rainbowSkins": "彩色膚色", "pastelSkins": "柔和膚色", "spookySkins": "萬聖節膚色", "supernaturalSkins": "超自然膚色", - "splashySkins": "吸引人的外觀", + "splashySkins": "吸引膚色", "rainbowColors": "彩色髮色", "shimmerColors": "柔光髮色", "hauntedColors": "幽靈髮色", @@ -51,16 +51,16 @@ "classBonusText": "你的職業 (如果你還沒解鎖或選擇其他職業,你是個戰士) 使用同職業的裝備時,比起其他職業的裝備會更有效。穿上你目前職業的裝備可以讓屬性加成上升 50%。", "classEquipBonus": "職業加成", "battleGear": "戰鬥裝備", - "battleGearText": "這是你帶上戰場的裝備,在你做任務時會影響一些數值。", - "autoEquipBattleGear": "自動裝上新裝備", + "battleGearText": "這是你穿上戰場的裝備,在你做任務時會影響一些數值。", + "autoEquipBattleGear": "自動穿上新裝備", "costume": "服裝", - "costumeText": "如果你喜歡其他裝備的外觀更勝於你現在的裝備,勾選\"使用服裝\"框穿上想被看到的服裝,而你的戰鬥裝備會穿在裡面。", + "costumeText": "如果你覺得其他裝備的外觀更勝於你現在的裝備,勾選「使用服裝」框穿上想被看到的服裝,而你不會看到戰鬥裝備。", "useCostume": "使用服裝", - "useCostumeInfo1": "點選\"使用服裝\"可以讓你的角色圖像裝備而不改變實際在戰鬥裡的數值(只改變外觀),也就是說你可以隨意裝扮你的角色圖像,雖然他們並不是最強的戰鬥配置。", - "useCostumeInfo2": "當你第一次按下\"使用服裝\"時,你的頭像看起來會很簡陋...不過沒關係,可以看到畫面左邊武器裝備的狀態還在,接下來可以在畫面右邊隨意穿上各種裝備,這雖不會影響到實際戰鬥數據,但是看起來十分帥氣!試著組合所有武器、防具、寵物、坐騎、還有背景

有問題嗎?在遊戲維基裡看一看 這個 on 找到你最佳的組合?到這裡或是酒館秀給大家看吧!", - "gearAchievement": "你已達成「終極裝備」成就:升級到最高裝備!你已完成以下組合:", - "moreGearAchievements": "欲取得終極裝備徽章,到這裡選擇職業並開始購買職業專屬物品!", - "armoireUnlocked": "你已解鎖 神秘寶箱! 點擊神秘寶箱可隨機獲得特殊裝備、食物、或是經驗值! ", + "useCostumeInfo1": "點選\"使用服裝\"可以讓你的角色裝備服裝而不改變實際在戰鬥裡的數值(只改變外觀),也就是說 你能在左邊選擇最強的戰鬥配置,並可以在右邊隨意裝扮你的角色。", + "useCostumeInfo2": "當你第一次按下「使用服裝」時,你的頭像看起來會很簡陋...不過沒關係!如果你看畫面左邊,你會看到武器裝備的狀態還在。接下來,你可以在畫面右邊隨意穿上各種裝備,這雖不會影響到實際戰鬥數據,但是看起來十分帥氣!試著組合所有武器、防具、寵物、坐騎、還有背景吧!

有問題嗎?在遊戲維基裡看一看 這個 on 找到你最佳的組合?到這裡或是酒館給大家看吧!", + "gearAchievement": "你已達成「終極裝備」成就:升級到職業的最高裝備!你已完成以下組合:", + "moreGearAchievements": "欲取得終極裝備徽章,到這裡選擇職業並購買職業專屬物品!", + "armoireUnlocked": "你解鎖了神秘寶箱! 點擊神秘寶箱可獲得隨機的特殊裝備、食物、或是經驗值! ", "ultimGearName": "終極裝備", "ultimGearText": "已升級到此種職業之最高武器和盔甲:", "level": "等級", @@ -82,7 +82,7 @@ "allocatePerPop": "增加一點感知", "allocateInt": "分配給智力的屬性點:", "allocateIntPop": "增加一點智力", - "noMoreAllocate": "恭喜您!您的角色已經達到了最高的等級 100,所以往後的等級提升您將不會再獲得屬性點。您可以使用這個角色續續升級,又或者透過巿集取得免費的重生之球,從等級 1 開始一場嶄新的冒險。", + "noMoreAllocate": "恭喜您!您的角色已經達到了等級 100,所以往後的等級您將不會再獲得屬性點。您可以使用這個角色續續升級,又或者透過巿集取得免費的重生之球,從等級 1 開始一場嶄新的冒險。", "stats": "屬性", "strength": "力量", "strengthText": "力量會增加「會心一擊」的機率,而會心一擊時會提升金幣、經驗和物品掉落的機率。力量還能幫助你傷害 BOSS。", @@ -126,7 +126,7 @@ "rogueText": "盜賊熱衷於積累財富,比其他人獲得更多的金幣,還擅長尋找隨機物品。他們特有的匿蹤技能使得他們能夠躲避未完成的每日任務帶來的傷害。如果你希望獲得更多的獎勵、成就並渴求戰利品及徽章,來玩盜賊吧!", "healerText": "醫者頑強地對抗突如其來的傷害,並且保護其他的人。錯過的日常任務和一些壞習慣不太能影響他們,他們總是想方設法幫你治療。如果你熱衷於輔助其他的隊友或者是享受那種從死神手裡奪回生命的快感,那就成為一名醫者吧!", "optOut": "暫時不選擇", - "optOutText": "不想要玩職業系統,或是想稍候再做選擇?暫時不選擇 - 你將會是一位戰士,沒有任何特別的屬性。你可以從遊戲維基取得各種職業的資訊,並且稍候在設定裏啟用職業系統。", + "optOutText": "不想要選擇職業,或是想稍候再做選擇?如果暫時不選擇,你將會是一位戰士,並沒有任何特別的屬性。你可以從遊戲維基取得各種職業的資訊,並且稍候在設定裏選擇職業。", "select": "選擇", "stealth": "匿蹤", "stealthNewDay": "新的一天開始時,錯過了的每日任務不會傷害到你。", @@ -150,12 +150,12 @@ "unequipCostume": "卸下服裝", "unequipPetMountBackground": "卸下寵物、座騎、背景", "animalSkins": "動物膚色", - "chooseClassHeading": "選擇你的職業!或是等會再選。", + "chooseClassHeading": "選擇你的職業!或是等會再選。", "warriorWiki": "戰士_", - "mageWiki": "魔法師", + "mageWiki": "法師", "rogueWiki": "盜賊", "healerWiki": "醫者", - "chooseClassLearn": "了解更多職業資訊", + "chooseClassLearn": "了解職業", "str": "力量", "con": "體質", "per": "感知", diff --git a/common/locales/zh_TW/communityguidelines.json b/common/locales/zh_TW/communityguidelines.json index 554ea51eeb..f12222a128 100644 --- a/common/locales/zh_TW/communityguidelines.json +++ b/common/locales/zh_TW/communityguidelines.json @@ -7,8 +7,8 @@ "commGuidePara003": "這些規則適用在屬於我們的所有社群空間(但也不只限於此),包括 Trello, Github, Transifex 以及 Wikia (也就是我們的維基百科)。\n有時候會出現一些前所未見的新狀況,像是新的衝突事端或是邪惡的亡靈法師,當這些情況發生,管理員們可能會修改這些指導原則以確保整個社群不受威脅、平安。別擔心,假如指導原則有所更動,Bailey 會發布公告來通知你。", "commGuidePara004": "拿起你的羽毛筆跟羊皮卷軸,準備開始做筆記吧!", "commGuideHeadingBeing": "成為一個Habit公民", - "commGuidePara005": "Habitica 是最早、最一流的自我提升網站,這讓我們幸運地在網路上凝聚了最溫暖、大方、謙遜,也最相挺的社群。一個 Habitican 有許多特徵,其中最常見也最顯眼的是:", - "commGuideList01A": " 樂於助人的心。許多人費時費力幫助社群新人、給予指導。例如,新手公會,就是一種專門回答人們各式疑惑的協會,如果你覺得你能幫上忙,無須害羞!", + "commGuidePara005": "Habitica 是一個提升自我改善的網站,這讓我們幸運地在網絡上凝聚了最溫暖、大方、謙遜,也最相挺的社群。一個 Habitican 有許多特徵,其中最常見也最顯眼的是:", + "commGuideList01A": " 樂於助人的心。許多人抽出時間幫助社群新人、給予指導。例如,新手公會就是一種專門回答人們各式疑惑的協會。如果你覺得你能幫上忙,無須害羞!", "commGuideList01B": " 勤勉的態度。Habitican 在努力改善自己的生活同時,也是在不斷地為這個網站添磚加瓦。這是一個開源項目,我們每個人都持續地在讓這個地方變得好上加好。", "commGuideList01C": "積極的援助。Habitican 們為他人的成功喝采,在逆境中撫慰彼此。在隊伍中使用技能、在聊天室中說友善的鼓勵話語,彼此支援、彼此依賴、彼此學習。", "commGuideList01D": "相敬的禮儀。我們有不同的出身、不同的技能以及不同的想法,這是如此我們的社群才如此美妙!Habitican們尊重、擁抱彼此的差異,記住這點,很快地你將會用有來自生活中各方各面的朋友。", @@ -21,7 +21,7 @@ "commGuidePara009b": "在 Github 上", "commGuidePara010": "有些管理員會來協助職員。他們都經過精挑細選,所以請不吝給予尊重並聆聽他們的建議。", "commGuidePara011": "現在的職員成員是(從左到右):", - "commGuidePara011a": "酒館裡的對話", + "commGuidePara011a": "在酒館對話", "commGuidePara011b": "在 GitHub/Wikia 上", "commGuidePara011c": "在 Wikia 上", "commGuidePara011d": "在 GitHub 上", @@ -134,11 +134,11 @@ "commGuideList11C": "申請", "commGuideList11D": "刪除(管理員/員工可能會刪除有問題的內容)", "commGuideList11E": "編輯(管理員/員工可能會刪除有問題的內容)", - "commGuideHeadingRestoration": "恢復", + "commGuideHeadingRestoration": "歸還", "commGuidePara061": "Habit大陸是一塊致力於自我完善的地方,我們相信又第二次機會。如果你違了規且接受後果,將其視為一個評估你行為的機會,並努力成為一名更好的社區成員。", "commGuidePara062": "你收到的說明你行為後果的電子郵件(或者,輕度違規的情況,管理員/工作人員通告)是個很好的信息來源。配合實施的限制,並努力符合撤銷處罰的要求。", "commGuidePara063": "如果你不明白你的後果,或者你違規的性質,請詢問工作人員/版主來幫助你以避免以後犯同樣的錯誤。", - "commGuideHeadingContributing": "為Habitica作出貢獻", + "commGuideHeadingContributing": "為 Habitica 作出貢獻", "commGuidePara064": "Habitica 是一個開源項目,這意味著我們歡迎任何Habit公民的加入!每一位加入的玩家都會按照以下貢獻等級獲得獎勵:", "commGuideList12A": "Habitica貢獻者勳章,和3顆寶石", "commGuideList12B": "貢獻者盔甲,增加 3 寶石", @@ -158,21 +158,21 @@ "commGuidePara068": "現在向前進發吧,勇敢的冒險家,完成你的每日任務吧!", "commGuideHeadingLinks": "有用的連結", "commGuidePara069": "這些插圖由以下富有天賦的藝術家貢獻:", - "commGuideLink01": "新手協會", + "commGuideLink01": "新手公會", "commGuideLink01description": "一個專門為新用戶回答問題的公會!", "commGuideLink02": "後角公會", "commGuideLink02description": "一個討論複雜或敏感話題的公會。", "commGuideLink03": "維基", "commGuideLink03description": "收集最多的關於Habitica的消息。", "commGuideLink04": "GitHub", - "commGuideLink04description": "上報漏洞或者幫助開發程式!", - "commGuideLink05": "Main Trello", + "commGuideLink04description": "用於上報漏洞或者幫助開發程式!", + "commGuideLink05": "主要 Trello", "commGuideLink05description": "用於申請網站功能。", - "commGuideLink06": "Mobile Trello", + "commGuideLink06": "移動Trello", "commGuideLink06description": "用於申請移動端功能。", - "commGuideLink07": "Art Trello", + "commGuideLink07": "藝術Trello", "commGuideLink07description": "用於提交像素畫。", - "commGuideLink08": "Quest Trello", - "commGuideLink08description": "提交任務作品。", + "commGuideLink08": "Trello 的任務", + "commGuideLink08description": "對於提交任務的寫作。", "lastUpdated": "最後更新" } \ No newline at end of file diff --git a/common/locales/zh_TW/content.json b/common/locales/zh_TW/content.json index ac6814af7d..0d942c7bd6 100644 --- a/common/locales/zh_TW/content.json +++ b/common/locales/zh_TW/content.json @@ -1,10 +1,10 @@ { "potionText": "治療藥水", - "potionNotes": "回復15點生命值(立即使用)", + "potionNotes": "回復 15 點生命值 (立即使用 )", "armoireText": "神秘寶箱", - "armoireNotesFull": "打開神祕寶箱隨機獲得特殊裝備,經驗,或食物!裝備碎片還有:", + "armoireNotesFull": "打開神祕寶箱而隨機獲得特殊裝備,經驗,或食物!裝備還有:", "armoireLastItem": "你找到了神祕寶箱裡最後一件稀有裝備碎片。", - "armoireNotesEmpty": "每個月的第一個禮拜,神祕寶箱都會推出新的裝備。在那之前,請繼續點擊神祕寶箱以獲得經驗和食物吧!", + "armoireNotesEmpty": "每個月的第一個禮拜,神祕寶箱都會推出新的裝備。在那之前,請繼續點擊神祕寶箱以獲得經驗和食物!", "dropEggWolfText": "狼", "dropEggWolfMountText": "狼", "dropEggWolfAdjective": "一隻忠誠的", @@ -19,19 +19,19 @@ "dropEggLionCubAdjective": "一隻豪氣的", "dropEggFoxText": "狐狸", "dropEggFoxMountText": "狐狸", - "dropEggFoxAdjective": "一隻古靈精怪的", + "dropEggFoxAdjective": "一隻狡詐的", "dropEggFlyingPigText": "飛豬", "dropEggFlyingPigMountText": "飛豬", - "dropEggFlyingPigAdjective": "一隻詼諧的", + "dropEggFlyingPigAdjective": "一隻怪誕的", "dropEggDragonText": "龍", "dropEggDragonMountText": "龍", - "dropEggDragonAdjective": "一隻偉大的", + "dropEggDragonAdjective": "一隻強壯偉大的", "dropEggCactusText": "仙人掌", "dropEggCactusMountText": "仙人掌", - "dropEggCactusAdjective": "一隻多刺的", + "dropEggCactusAdjective": "一隻刺手的", "dropEggBearCubText": "小熊", "dropEggBearCubMountText": "熊", - "dropEggBearCubAdjective": "一隻萌爆了的", + "dropEggBearCubAdjective": "一隻愛擁抱的", "questEggGryphonText": "獅鷲獸", "questEggGryphonMountText": "獅鷲獸", "questEggGryphonAdjective": "一隻驕傲的", @@ -43,10 +43,10 @@ "questEggDeerAdjective": "一隻優雅的", "questEggEggText": "蛋", "questEggEggMountText": "蛋籃子", - "questEggEggAdjective": "一顆繽紛的", + "questEggEggAdjective": "一顆色彩繽紛的", "questEggRatText": "老鼠", "questEggRatMountText": "老鼠", - "questEggRatAdjective": "一隻灰撲撲的", + "questEggRatAdjective": "一隻骯髒的", "questEggOctopusText": "章魚", "questEggOctopusMountText": "章魚", "questEggOctopusAdjective": "一隻滑溜的", @@ -61,19 +61,19 @@ "questEggRoosterAdjective": "一隻傲氣的", "questEggSpiderText": "蜘蛛", "questEggSpiderMountText": "蜘蛛", - "questEggSpiderAdjective": "一隻毛骨悚然的", + "questEggSpiderAdjective": "一隻恐怖的", "questEggOwlText": "貓頭鷹", "questEggOwlMountText": "貓頭鷹", - "questEggOwlAdjective": "一隻智慧的", + "questEggOwlAdjective": "一隻有智慧的", "questEggPenguinText": "企鵝", "questEggPenguinMountText": "企鵝", - "questEggPenguinAdjective": "一隻敏捷的", + "questEggPenguinAdjective": "一隻精明的", "questEggTRexText": "暴龍", "questEggTRexMountText": "暴龍", "questEggTRexAdjective": "一隻雙手短短的", "questEggRockText": "巨石", - "questEggRockMountText": "巨石", - "questEggRockAdjective": "一顆活躍的", + "questEggRockMountText": "石頭", + "questEggRockAdjective": "一顆活潑的", "questEggBunnyText": "兔子", "questEggBunnyMountText": "兔子", "questEggBunnyAdjective": "一隻柔軟的", @@ -100,7 +100,7 @@ "questEggFrogAdjective": "一隻王子般的", "questEggSnakeText": "蛇", "questEggSnakeMountText": "蛇", - "questEggSnakeAdjective": "a slithering", + "questEggSnakeAdjective": "一個滑行", "eggNotes": "找瓶孵化藥水倒在這顆蛋上,接著等蛋孵化出<%= eggAdjective(locale) %> <%= eggText(locale) %>。", "hatchingPotionBase": "普通", "hatchingPotionWhite": "白色", diff --git a/common/locales/zh_TW/death.json b/common/locales/zh_TW/death.json index fcd41aa03a..81991cdfb4 100644 --- a/common/locales/zh_TW/death.json +++ b/common/locales/zh_TW/death.json @@ -1,11 +1,11 @@ { - "lostAllHealth": "沒有HP了!", + "lostAllHealth": "沒有 HP了!", "dontDespair": "不要絕望!", - "deathPenaltyDetails": "你失去了一些等級、黃金、裝備,但是只要努力就可以把它們拿回來!", + "deathPenaltyDetails": "你失去了一個等級、所有黃金和一件裝備,但是只要努力就可以把它們拿回來!", "refillHealthTryAgain": "回復 HP,然後再試一次", - "dyingOftenTips": "這很常發生嗎? 這裡有 些密技!", + "dyingOftenTips": "這常常發生嗎? 這裡有些密技!", "losingHealthWarning": "小心!你的生命值正在減少!", - "losingHealthWarning2": "別讓你的生命值降為0!你會因此損失一個等級、金幣,和噴掉某件裝備。", + "losingHealthWarning2": "別讓你的生命值降為零!你會因此損失一個等級、所有金幣和一件裝備。", "toRegainHealth": "若要回復生命值:", "lowHealthTips1": "等級提升而補足生命值!", "lowHealthTips2": "從獎勵欄內購買治療藥水可以回復15點生命值。", diff --git a/common/locales/zh_TW/faq.json b/common/locales/zh_TW/faq.json index e160a8dc79..ed164d2b8e 100644 --- a/common/locales/zh_TW/faq.json +++ b/common/locales/zh_TW/faq.json @@ -2,7 +2,7 @@ "frequentlyAskedQuestions": "常見問題", "faqQuestion0": "我不知道怎麼玩,有遊戲介紹嗎?", "iosFaqAnswer0": "首先,你要設定好你的每日任務。接著,當你在現實生活中完成時,再把每日任務打勾,你會因此得到經驗值和金幣。金幣可以購買裝備和物品,而經驗值能使你的角色升級並且隨著等級提升還能解鎖其他功能,像是:寵物、技能,以及關卡任務!你可以調整你自己的角色在選單「玩家」>「角色」裡面。\n\n另外,有些基本的功能作用需要注意:點選手機螢幕介面右上角的(+)可以增加新任務。新增任務後,可以輕按現有任務便可再度編輯。按住不放將任務往左邊滑過便可刪除。在畫面左上角有一個標籤可幫助你分類,你可以點選任務來增加或減少清單。", - "webFaqAnswer0": "首先,你要設定好你的每日任務。接著,當你在現實生活中完成時,再把每日任務打勾,你會因此得到經驗值和金幣。金幣可以購買裝備和物品,而經驗值能使你的角色升級並且隨著等級提升還能解鎖其他功能,像是:寵物、技能,以及關卡任務!\n\n想要更多資訊,可以在wiki裡面找到詳細的介紹,讓你一步一步熟悉遊戲! [wiki](http://habitica.wikia.com/wiki/Habitica_Wiki)", + "webFaqAnswer0": "First, you'll set up tasks that you want to do in your everyday life. Then, as you complete the tasks in real life and check them off, you'll earn Experience and Gold. Gold is used to buy equipment and some items, as well as custom rewards. Experience causes your character to level up and unlock content such as pets, skills, and quests! For more detail, check out a step-by-step overview of the game at [Help -> Overview for New Users](https://habitica.com/static/overview).", "faqQuestion1": "我要如何設定每日任務?", "iosFaqAnswer1": "好習慣(+符號)就是你每天可以做很多次的那種正面任務,像是多吃菜。壞習慣(-符號)則是你應該要避免的負面任務,像是咬指甲。有些習慣同時擁有+和-,代表它可以同時兼具好的一面和壞的一面,像是走樓梯vs搭電梯。達成好習慣會獎勵你金幣和經驗。壞習慣則會減損生命值。\n\n每日任務是你每天都會做到的事情,像是刷牙或檢查電子信箱。你可以透過點擊來指定每日任務的天數。如果你沒有在每日任務指定的日子完成它的話,你的角色會在隔天減少生命值。所以小心不要一口氣增加太多每日任務!\n\n待辦事項是你的待辦清單,完成待辦事項也能夠得到金幣和經驗值。你不會因為待辦事項完成與否而受到攻擊。對著待辦事項點選也可以編輯指定日期。", "webFaqAnswer1": "好習慣( )就是你每天可以做很多次的那種正面任務,像是多吃菜。壞習慣()則是你應該要避免的負面任務,像是咬指甲。有些習慣同時擁有 ,代表它可以同時兼具好的一面和壞的一面,像是走樓梯vs搭電梯。達成好習慣會獎勵你金幣和經驗。壞習慣則會減損生命值。\n

\n每日任務是你每天都會做到的事情,像是刷牙或檢查電子信箱。你可以透過點擊來指定每日任務的天數。如果你沒有在每日任務指定的日子完成它的話,你的角色會在隔天減少生命值。所以小心不要一口氣增加太多每日任務!\n

\n待辦事項是你的待辦清單,完成待辦事項也能夠得到金幣和經驗值。你不會因為待辦事項完成與否而受到攻擊。對著待辦事項點選鉛筆按鈕也可以編輯指定日期。", @@ -36,7 +36,7 @@ "faqQuestion11": "我要怎麼做才能回報問題或者請求新功能呢?", "iosFaqAnswer11": "在「選單」>「回饋意見」裡,你可以回報錯誤、請求新功能或者只是給個意見,我們會盡其所能的協助你!", "webFaqAnswer11": "回報錯誤的話要到[幫助 > 回報問題](https://github.com/HabitRPG/habitrpg/issues/2760),跟著步驟填寫資訊即可,我們一定會使命必達的,別怕!\n

\n建議我們增加新功能的話,則是要到[幫助 > 請求新功能](https://trello.com/c/odmhIqyW/440-read-first-table-of-contents) ,然後跟著指示做就沒錯啦!", - "faqQuestion12": "我要如何才能夠挑戰世界BOSS?", + "faqQuestion12": "我要如何才能夠挑戰世界老闆?", "iosFaqAnswer12": "世界BOSS是出現在酒館的特別怪獸。所有使用者都會自動跟Boss作戰,完成日常任務和使用技能都會自動對Boss造成傷害。\n\n你也可以同時解任務,當你完成每日任務和使用技能都會同時對隊伍正在解的活動任務的Boss和世界Boss造成傷害。\n\n世界Boss無法傷害你或者你的帳號。取而代之,它有一個憤怒值,當使用者沒有完成日常任務時就會增加。當憤怒值滿了,它就會攻擊網站裡其中一位非玩家角色,而且改變他們的圖像。\n\n你可以從wiki中獲得更多關於以往世界BOSS的歷史。 [以往 World Bosses](http://habitica.wikia.com/wiki/World_Bosses) ", "webFaqAnswer12": "世界BOSS是出現在酒館的特別怪獸。所有使用者都會自動跟Boss作戰,完成日常任務和使用技能都會自動對Boss造成傷害。

\n\n你也可以同時解任務,當你完成每日任務和使用技能都會同時對隊伍正在解的活動任務的Boss和世界Boss造成傷害。\n

\n世界Boss無法傷害你或者你的帳號。取而代之,它有一個憤怒值,當使用者沒有完成日常任務時就會增加。當憤怒值滿了,它就會攻擊網站裡其中一位非玩家角色,而且改變他們的圖像。\n

\n你可以從wiki中獲得更多關於以往世界BOSS的歷史。 [以往 World Bosses](http://habitica.wikia.com/wiki/World_Bosses) ", "iosFaqStillNeedHelp": "如果你有疑問,可是沒在這裡看到解答的話,來「選單」>「酒館」的聊天室問問,我們很高興為你服務!", diff --git a/common/locales/zh_TW/gear.json b/common/locales/zh_TW/gear.json index 040b763243..8274c341fb 100644 --- a/common/locales/zh_TW/gear.json +++ b/common/locales/zh_TW/gear.json @@ -149,15 +149,19 @@ "weaponArmoireRancherLassoText": "牛仔套索", "weaponArmoireRancherLassoNotes": "套索:為圍補和牽繩的理想工具。增加<%= str %>點力量, <%= per %>點感知和<%= int %>點智力。神祕寶箱:牛仔系列(3/3)。", "weaponArmoireMythmakerSwordText": "神話英雄之劍", - "weaponArmoireMythmakerSwordNotes": "雖然這把劍看起來有點破舊,但它可是見證了無數個神話英雄的誕生。增加感知和力量各<%= attrs %>點。神祕寶箱:黃金袍系列(3/3)。", + "weaponArmoireMythmakerSwordNotes": "Though it may seem humble, this sword has made many mythic heroes. Increases Perception and Strength by <%= attrs %> each. Enchanted Armoire: Golden Toga Set (Item 3 of 3).", "weaponArmoireIronCrookText": "鐵彎杖", - "weaponArmoireIronCrookNotes": "激烈地敲擊鐵塊所製成的,但這把鐵彎杖很擅長牧羊哦。提高感知和力量各<%= attrs %>點。神祕寶箱:鐵角系列 (3/3)", + "weaponArmoireIronCrookNotes": "Fiercely hammered from iron, this iron crook is good at herding sheep. Increases Perception and Strength by <%= attrs %> each. Enchanted Armoire: Horned Iron Set (Item 3 of 3).", "weaponArmoireGoldWingStaffText": "金翼魔杖", "weaponArmoireGoldWingStaffNotes": "法杖上的風不斷地旋轉扭動,增加所有屬性各<%= attrs %>點。神祕寶箱:獨立物品。", "weaponArmoireBatWandText": "蝙蝠魔杖", "weaponArmoireBatWandNotes": "這個魔杖可以把任何任務轉變成一隻蝙蝠!只要揮動它然後等著看蝙蝠飛走吧。增加<%= int %> 點智力,和<%= per %>點感知。神祕寶箱:獨立物品。", "weaponArmoireShepherdsCrookText": "牧羊杖", "weaponArmoireShepherdsCrookNotes": "想要放牧獅鷲獸的話,選這把牧羊杖就對了。增加<%= con %>感知。神秘寶箱:牧羊人系列(1/3)", + "weaponArmoireCrystalCrescentStaffText": "Crystal Crescent Staff", + "weaponArmoireCrystalCrescentStaffNotes": "Summon the power of the crescent moon with this shining staff! Increases Intelligence and Strength by <%= attrs %> each. Enchanted Armoire: Crystal Crescent Set (Item 3 of 3).", + "weaponArmoireBlueLongbowText": "Blue Longbow", + "weaponArmoireBlueLongbowNotes": "Ready... Aim... Fire! This bow has great range. Increases Perception by 9, Constitution by 8, and Strength by 7. Enchanted Armoire: Independent Item.", "armor": "盔甲", "armorBase0Text": "正常服裝", "armorBase0Notes": "普通的衣服。 沒有屬性加成。", @@ -222,7 +226,7 @@ "armorSpecialBirthday2015Text": "愚蠢的隊伍長袍", "armorSpecialBirthday2015Notes": "生日快樂,Habitica!穿上這些愚蠢的派對長袍去慶祝美妙的一天,沒有屬性加成。", "armorSpecialGaymerxText": "彩虹戰士護甲", - "armorSpecialGaymerxNotes": "這件特殊的護甲裝飾著五彩斑斕的彩虹圖案,是為紀念自豪季和GaymerX而生!GaymerX是一個遊戲大會,慶祝LGBTQ和遊戲並對每個人開放。它舉辦於舊金山中心的洲際酒店,時間是7月11-13日!沒有屬性加成。", + "armorSpecialGaymerxNotes": "In celebration of the GaymerX Conference, this special armor is decorated with a radiant, colorful rainbow pattern! GaymerX is a game convention celebrating LGTBQ and gaming and is open to everyone.", "armorSpecialSpringRogueText": "圓滑貓套裝", "armorSpecialSpringRogueNotes": "無可挑剔的整潔。增加<%= per %>點感知。限量版2014年春季裝備。", "armorSpecialSpringWarriorText": "四葉草鋼護甲", @@ -309,6 +313,8 @@ "armorMystery201508Notes": "穿上毛茸茸的獵豹服裝讓你跑得跟閃光一樣快!沒有屬性加成。 2015年8月訂閱者物品。", "armorMystery201509Text": "狼人服裝", "armorMystery201509Notes": "這真的是扮裝,對吧?沒有屬性加成。2015年9月訂閱者物品。", + "armorMystery201511Text": "Wooden Armor", + "armorMystery201511Notes": "Considering this armor was carved directly from a magical log, it's surprisingly comfortable. Confers no benefit. November 2015 Subscriber Item.", "armorMystery301404Text": "蒸汽龐克套裝", "armorMystery301404Notes": "精巧又瀟灑,哇嗚!沒有屬性加成。3015年1月訂閱者物品。", "armorArmoireLunarArmorText": "潤月護甲", @@ -327,6 +333,8 @@ "armorArmoireShepherdRobesNotes": "布料材質涼爽,透氣,非常適合在沙漠中的大熱天放牧獅鷲。增加力量和感知各<%= attrs %>點。神秘寶箱:牧羊人系列(2/3)", "armorArmoireRoyalRobesText": "皇家長袍", "armorArmoireRoyalRobesNotes": "精彩的統治者,整天都在統治來統治去!增加體質、智力和感知各<%= attrs %>點。神秘寶箱:皇家系列(3/3)", + "armorArmoireCrystalCrescentRobesText": "Crystal Crescent Robes", + "armorArmoireCrystalCrescentRobesNotes": "These magical robes are luminescent at night. Increases Constitution and Perception by <%= attrs %> each. Enchanted Armoire: Crystal Crescent Set (Item 2 of 3).", "headgear": "頭飾", "headBase0Text": "沒有頭盔", "headBase0Notes": "沒有頭飾", @@ -447,7 +455,7 @@ "headSpecialFall2015HealerText": "青蛙帽", "headSpecialFall2015HealerNotes": "這是一頂極其嚴肅的帽子,只有最優秀的藥師可以配戴它。增加<%= int %>點智力。 2015年秋季限量版裝備。", "headSpecialGaymerxText": "彩虹戰士頭盔", - "headSpecialGaymerxNotes": "這頂由五光十色的鐳射彩虹圖案裝飾的帽子是為了慶祝驕傲時節和GaymerX!GaymerX是一個向所有人開放的慶祝LGBTQ並儘情玩樂的遊戲大會。7月11-13日在舊金山市中心洲際飯店舉行!沒有屬性加成。", + "headSpecialGaymerxNotes": "In celebration of the GaymerX Conference, this special helmet is decorated with a radiant, colorful rainbow pattern! GaymerX is a game convention celebrating LGTBQ and gaming and is open to everyone.", "headMystery201402Text": "翼盔", "headMystery201402Notes": "這頂帶翅膀的飾環使佩戴者風馳電掣!沒有屬性加成。2014年2月捐贈者物品。", "headMystery201405Text": "精神的火焰", @@ -470,6 +478,8 @@ "headMystery201508Notes": "這個柔順的獵豹帽可真是毛茸茸啊!沒有屬性加成。2015年8月訂閱者物品。", "headMystery201509Text": "狼人面具", "headMystery201509Notes": "這個真的是面具,對吧?沒有屬性加成。2015年9月訂閱者物品。", + "headMystery201511Text": "Log Crown", + "headMystery201511Notes": "Count the number of rings to learn how old this crown is. Confers no benefit. November 2015 Subscriber Item.", "headMystery301404Text": "華麗禮帽", "headMystery301404Notes": "上流社會佼佼者的華麗禮帽!3015年1月訂閱者物品。沒有屬性加成。", "headMystery301405Text": "基礎禮帽", @@ -506,6 +516,8 @@ "headArmoireBlueFloppyHatNotes": "許多咒術被縫進這頂帽子裡,最後再給它一抹燦爛的藍色。增加感知、智力和體質各<%= attrs %>點。神祕寶箱:獨立物品。", "headArmoireShepherdHeaddressText": "牧羊人頭飾", "headArmoireShepherdHeaddressNotes": "你戴上這頂頭飾顯得智力非凡,不過有時候,你放養的獅鷲們喜歡咀嚼它。增加<%= int %>點智力。神秘寶箱:牧羊人系列(3/3)", + "headArmoireCrystalCrescentHatText": "Crystal Crescent Hat", + "headArmoireCrystalCrescentHatNotes": "The design on this hat waxes and wanes with the phases of the moon. Increases Intelligence and Perception by <%= attrs %> each. Enchanted Armoire: Crystal Crescent Set (Item 1 of 3).", "offhand": "副手物品", "shieldBase0Text": "沒有副手裝備", "shieldBase0Notes": "沒有盾牌或副武器。", diff --git a/common/locales/zh_TW/generic.json b/common/locales/zh_TW/generic.json index 0b724eb494..1857a05d80 100644 --- a/common/locales/zh_TW/generic.json +++ b/common/locales/zh_TW/generic.json @@ -1,24 +1,24 @@ { "languageName": "中文(正體)", "stringNotFound": "找不到文字“<%= string %>”。", - "titleIndex": "Habitica | 你的生活遊戲", + "titleIndex": "Habitica | 你的生活角色扮演遊戲", "habitica": "Habitica", "expandToolbar": "展開列表", "collapseToolbar": "隱藏列表", - "markdownBlurb": "Habitica 使用 markdown 語法來邊訊息格式,詳見Markdown 速查。", + "markdownBlurb": "Habitica 使用 markdown 管理訊息格式,詳見Markdown 速查。", "showFormattingHelp": "開啟格式使用提示", "hideFormattingHelp": "關閉格式使用提示", - "youType": "輸入:", - "youSee": "結果:", + "youType": "輸入 :", + "youSee": "結果 :", "italics": "*斜體*", "bold": "**粗體**", "strikethrough": "~~刪除線~~", - "emojiExample": ":笑臉:", + "emojiExample": ":smile:", "markdownLinkEx": "[有趣的 Habitica](https://habitica.com)", "markdownImageEx": "![替代文字](https://habitica.com/cake.png \"連結文字\")", "unorderedListHTML": "+ 第一個項目
+ 第二個項目
+ 第三個項目", "unorderedListMarkdown": "+ 第一個項目\n+ 第二個項目\n+ 第三個項目", - "code": "'程式碼'", + "code": "`程式碼`", "achievements": "成就", "modalAchievement": "獲得成就!", "special": "特殊", @@ -28,7 +28,7 @@ "market": "市場", "subscriberItem": "神秘物品", "newSubscriberItem": "新的神秘物品", - "subscriberItemText": "每個月,訂閱者會收到一個神秘物品。一般會在月底前一個星期公佈。詳情請看 Habitica 維基「神秘物品」頁面。", + "subscriberItemText": "每個月,訂閱者會收到一個神秘物品。一般會在月底前一個星期公佈。詳情請看 Habitica 維基「神秘物品」頁面 。", "all": "全部", "none": "無", "or": "或", @@ -65,7 +65,7 @@ "habitBirthdayText": "慶祝Habitica生日派對!", "habitBirthdayPluralText": "慶祝第<%= number %>次的Habitica生日派對", "habiticaDay": "Habitica 命名日", - "habiticaDaySingularText": "慶祝 Habitica 命名日! 感謝成為超棒的玩家。", + "habiticaDaySingularText": "慶祝了 Habitica 命名日! 感謝這位超棒的玩家。", "habiticaDayPluralText": "慶祝 <%= number %> 命名日! 感謝成為超棒的玩家。", "achievementDilatory": "拖延的救世者", "achievementDilatoryText": "2014年夏季世界事件中協助打敗了恐怖的拖延巨龍!", @@ -121,10 +121,10 @@ "greetingCard": "賀卡", "greetingCardExplanation": "你收到愉快的密友成就!", "greetingCardNotes": "送張賀卡給隊伍成員。", - "greeting0": "嗨!", + "greeting0": "您好!", "greeting1": "只是想說聲哈囉:)", "greeting2": "`瘋狂的招手`", - "greeting3": "嘿你!", + "greeting3": "嘿你!", "greetingCardAchievementTitle": "愉快的密友", "greetingCardAchievementText": "哈囉!你收到或寄出 <%= cards %> 張賀卡。", "thankyouCard": "感謝卡", @@ -136,16 +136,16 @@ "thankyou3": "我非常感謝你!", "thankyouCardAchievementTitle": "大大感恩", "thankyouCardAchievementText": "感謝你如此感恩! 你收到或送出 <%= cards %> 張感謝卡。", - "streakAchievement": "You earned a streak achievement!", - "firstStreakAchievement": "21 天連擊", + "streakAchievement": "你已得到了一個連擊成就!", + "firstStreakAchievement": "21 天連擊。", "streakAchievementCount": "<%= streaks %> 21 天連擊", "twentyOneDays": "You've completed your Daily for 21 days in a row!", - "dontBreakStreak": "Amazing job. Don't break the streak!", + "dontBreakStreak": "太棒了! 別斷了這個連擊!", "dontStop": "不要現在停止!", "levelUpShare": "I leveled up in Habitica by improving my real-life habits!", "questUnlockShare": "I unlocked a new quest in Habitica!", "hatchPetShare": "I hatched a new pet by completing my real-life tasks!", "raisePetShare": "I raised a pet into a mount by completing my real-life tasks!", - "wonChallengeShare": "I won a challenge in Habitica!", + "wonChallengeShare": "我在Habitica贏得了挑戰!", "achievementShare": "I earned a new achievement in Habitica!" } \ No newline at end of file diff --git a/common/locales/zh_TW/groups.json b/common/locales/zh_TW/groups.json index 7b3966afe3..8d52cc5561 100644 --- a/common/locales/zh_TW/groups.json +++ b/common/locales/zh_TW/groups.json @@ -19,14 +19,14 @@ "tavernAlert2": "到 GitHub 回報", "moderatorIntro1": "酒館和公會的版主是:", "communityGuidelines": "社群規範", - "communityGuidelinesRead1": "請讀我", + "communityGuidelinesRead1": "請閲讀我們的", "communityGuidelinesRead2": "在聊天之前", "party": "隊伍", "createAParty": "建立一個隊伍", "updatedParty": "隊與設置更新。", "noPartyText": "你不在一個個隊伍中,或是你的隊伍需要一點時間來載入。你可以建立一個隊伍並邀請朋友,或是加入一個既存的隊伍中,讓他們輸入你的UUID,再回來看邀請訊息:", "LFG": "為了宣傳新的隊伍並找到一個人加入,請到<%= linkStart %>Party Wanted(尋找隊伍)<%= linkEnd %>公會。", - "wantExistingParty": "Want to join an existing party? Go to the <%= linkStart %>Party Wanted Guild<%= linkEnd %> and post this User ID:", + "wantExistingParty": "想加入已存在的隊伍嗎?前往<%= linkStart %>隊伍招募公會<%= linkEnd %>並貼出這個 User ID:", "joinExistingParty": "加入他人的隊伍", "create": "建立", "userId": "UUID", @@ -139,7 +139,7 @@ "likePost": "如果喜歡這個貼文請按+1!", "partyExplanation1": "Play Habitica with friends to stay accountable!", "partyExplanation2": "與怪獸對戰並且新增挑戰!", - "partyExplanation3": "Invite friends now to earn a Quest Scroll!", + "partyExplanation3": "現在邀請朋友來賺取一個任務卷軸!", "wantToStartParty": "你想要建立一個隊伍嗎?", "exclusiveQuestScroll": "Inviting a friend to your party will grant you an exclusive Quest Scroll to battle the Basi-List together!", "nameYourParty": "幫你的新隊伍命名吧!", diff --git a/common/locales/zh_TW/limited.json b/common/locales/zh_TW/limited.json index 802367ee10..873d39305e 100644 --- a/common/locales/zh_TW/limited.json +++ b/common/locales/zh_TW/limited.json @@ -21,6 +21,7 @@ "valentineCardAchievementText": "哇喔喔,你跟你的朋友真的很互相照顧耶!你收到或寄出 <%= cards %> 張情人節卡片。", "polarBear": "北極熊", "turkey": "火雞", + "gildedTurkey": "Gilded Turkey", "polarBearPup": "小北極熊", "jackolantern": "南瓜燈", "seasonalShop": "季節限定商店", @@ -29,9 +30,9 @@ "seasonalShopClosedText": "季節限定商店目前沒有營業!我不知道店主人在哪,不過我想下個盛大宴會他會回來的。", "seasonalShopText": "歡迎來到季節限定商店!!我們正要把春天 季節限定版 的商品上架呢。這裡的每樣物品都會在每年歡慶春日的時節開放購買,但只到四月30日為止,所以趕快趁現在採購,不然你可得等到明年才能再買囉。", "seasonalShopSummerText": "歡迎來到季節商店!! 我們在夏令有季節性版本 商品。 每年的夏季特賣我們都會提供相關商品販售,只賣到7/31而已喔,所以請趕快購買,錯過要等明年了!", - "seasonalShopFallText": "Welcome to the Seasonal Shop!! We're stocking autumn Seasonal Edition goodies at the moment. Everything here will be available to purchase during the Fall Festival event each year, but we're only open until October 31, so be sure to stock up now, or you'll have to wait a year to buy these items again!", - "seasonalShopFallTextBroken": "Oh.... Welcome to the Seasonal Shop... We're stocking autumn Seasonal Edition goodies, or something... Everything here will be available to purchase during the Fall Festival event each year, but we're only open until October 31... I guess you should to stock up now, or you'll have to wait... and wait... and wait... *sigh*", - "seasonalShopRebirth": "If you've used the Orb of Rebirth, you can repurchase this equipment in the Rewards Column. Initially, you'll only be able to purchase the items for your current class (Warrior by default), but fear not, the other class-specific items will become available if you switch to that class.", + "seasonalShopFallText": "歡迎來到季節商店!! 我們上架了秋季季節限定商品。這裡的所有東西會在每年的秋季節慶活動中開放購買,但只開放到 10 月 31 日為止,所以請務必在此時購入,否則就要再等一年才能買到囉!", + "seasonalShopFallTextBroken": "哦....歡迎來到季節商店...我們目前有秋季季節限定的商品,之類的...這裡的所有東西會在每年的秋季節慶活動中開放購買,但我們只開放到 10 月 31 日...我想你現在就該買起來,不然你就要一直等...一直等...一直等...*嘆氣*", + "seasonalShopRebirth": "如果你曾使用過重生球,你可以在獎勵欄中再購買這個道具。一開始你只能購買目前職業 ( 預設是戰士 ) 的道具,但不要怕,其他職業限定的道具會在你轉換到該職業後開放。", "candycaneSet": "拐杖糖 ( 法師 )", "skiSet": "滑雪杖 ( 盜賊 )", "snowflakeSet": "雪花 ( 醫者 )", @@ -60,6 +61,6 @@ "monsterOfScienceSet": "Monster of Science (Warrior)", "witchyWizardSet": "Witchy Wizard (Mage)", "mummyMedicSet": "Mummy Medic (Healer)", - "vampireSmiterSet": "Vampire Smiter (Rogue)", - "fallEventAvailability": "Available until October 31" + "vampireSmiterSet": "吸血鬼打擊者(盜賊)", + "fallEventAvailability": "即日起至10月31日" } \ No newline at end of file diff --git a/common/locales/zh_TW/messages.json b/common/locales/zh_TW/messages.json index 8fca577477..c4f1165111 100644 --- a/common/locales/zh_TW/messages.json +++ b/common/locales/zh_TW/messages.json @@ -2,11 +2,11 @@ "messageLostItem": "你的 <%= itemText %> 壞掉了。", "messageTaskNotFound": "找不到任務。", "messageDuplicateTaskID": "這個任務的 ID 已存在。", - "messageTagNotFound": "找不到標籤", + "messageTagNotFound": "找不到標籤。", "messagePetNotFound": "找不到寵物", "messageFoodNotFound": "找不到食物", "messageNotAvailable": "這個物品目前無法購買。", - "messageCannotFeedPet": "無法餵食這隻寵物", + "messageCannotFeedPet": "無法餵食這隻寵物。", "messageAlreadyMount": "你已經擁有這個坐騎了,試著給其他的寵物。", "messageEvolve": "你已經馴服 <%= egg %>,出去兜兜風吧!", "messageLikesFood": "<%= egg %> 真的很喜歡 <%= foodText %>!", @@ -14,22 +14,22 @@ "messageBought": "購買了 <%= itemText %>", "messageEquipped": "裝備了 <%= itemText %>。", "messageUnEquipped": "取下 <%= itemText %> 了。", - "messageMissingEggPotion": "缺少蛋或是藥劑", - "messageInvalidEggPotionCombo": "你不能使用魔法孵化藥水在任務寵物蛋上,請試試別種蛋吧。", + "messageMissingEggPotion": "缺少了蛋或是藥水。", + "messageInvalidEggPotionCombo": "你不能在任務寵物蛋上使用魔法孵化藥水,請試試別種蛋吧。", "messageAlreadyPet": "你已經有這隻寵物了,請試試別的組合!", - "messageHatched": "你的蛋孵化了!去馬廄裝備你的寵物", + "messageHatched": "你的蛋孵化了!去馬房裝備你的寵物吧。", "messageNotEnoughGold": "金幣不足", "messageTwoHandled": "<%= gearText %> 是雙手武器", "messageDropFood": "你找到了 <%= dropArticle %><%= dropText %>! <%= dropNotes %>", "messageDropEgg": "你找到一個 <%= dropText %> 蛋! <%= dropNotes %>", "messageDropPotion": "你找到了 <%= dropText %> 的孵化藥劑! <%= dropNotes %>", - "messageDropQuest": "發現一個任務!", - "messageDropMysteryItem": "你打開一個箱子,發現到 <%= dropText %>!", - "messageFoundQuest": "你找到了新任務\"<%= questText %>\"!", - "messageAlreadyPurchasedGear": " 你曾經買過某個裝備,但是現在沒有了,你可在工作頁裡重買一次。", - "messageAlreadyOwnGear": "你已經有這個東西了。到裝備頁裡裝備它吧。", - "armoireEquipment": "<%= image %> 你在神祕寶箱裡找到稀有的裝備 <%= dropText %>! 好棒!", - "armoireFood": "<%= image %> 你在神祕寶箱裡找到 <%= dropArticle %><%= dropText %>. 這是什麼東東啊?", + "messageDropQuest": "發現一個任務 !", + "messageDropMysteryItem": "你打開箱子,發現到 <%= dropText %>!", + "messageFoundQuest": "你找到了新任務《<%= questText %>》!", + "messageAlreadyPurchasedGear": " 你曾經買過這個裝備,但是現在沒有了。你可在獎勵欄裡重買一次。", + "messageAlreadyOwnGear": "你已經有這個了物品。到裝備頁裡裝備它吧。", + "armoireEquipment": "<%= image %> 你在神祕寶箱裡找到稀有的裝備 <%= dropText %>!好棒!", + "armoireFood": "<%= image %> 你在神祕寶箱裡找到 <%= dropArticle %><%= dropText %>. 這是什麼東西啊?", "armoireExp": "你打開神祕寶箱⋯⋯只得到經驗值。", "messageInsufficientGems": "寶石不足 !", "messageAuthPasswordMustMatch": ":password 和 :confirm密碼不配合。", @@ -38,18 +38,18 @@ "messageAuthEmailTaken": "電子郵件已被使用。", "messageAuthNoUserFound": "找不到戶口。", "messageAuthMustBeLoggedIn": "你需要登入。", - "messageAuthMustIncludeTokens": "You must include a token and uid (user id) in your request", + "messageAuthMustIncludeTokens": "您必須在您的請求裏包括令牌和 UID(用戶ID )", "messageGroupNotFound": "找不到群組或你沒有使用權。", - "messageGroupAlreadyInParty": "已在一個隊伍,請嘗試刷新畫面。。", - "messageGroupOnlyLeaderCanUpdate": "Only the group leader can update the group!", - "messageGroupRequiresInvite": "Can't join a group you're not invited to.", + "messageGroupAlreadyInParty": "已在一個隊伍,請嘗試刷新畫面。", + "messageGroupOnlyLeaderCanUpdate": "只有群組領袖可以更新組別!", + "messageGroupRequiresInvite": "不能加入一個你沒有被邀請參加的群組。", "messageGroupCannotRemoveSelf": "您不能刪除自己!", "messageGroupChatBlankMessage": "不能傳送空白的留言。", "messageGroupChatLikeOwnMessage": "不能讚自己的留言。不要這樣做吧!", "messageGroupChatFlagOwnMessage": "不能舉報自己的留言。", "messageGroupChatFlagAlreadyReported": "你已經舉報了這個留言。", "messageGroupChatNotFound": "找不到留言 !", - "messageGroupChatAdminClearFlagCount": "Only an admin can clear the flag count!", + "messageGroupChatAdminClearFlagCount": "只有管理員才可以把標記計數清除!", "messageUserOperationProtected": "path `<%= operation %>` was not saved, as it's a protected path.", - "messageUserOperationNotFound": "<%= operation %> operation not found" + "messageUserOperationNotFound": "<%= operation %> 找不到行動" } \ No newline at end of file diff --git a/common/locales/zh_TW/noscript.json b/common/locales/zh_TW/noscript.json index 6057268ef2..6da2e48056 100644 --- a/common/locales/zh_TW/noscript.json +++ b/common/locales/zh_TW/noscript.json @@ -1,6 +1,6 @@ { - "jsDisabledHeading": "Alas! Your browser doesn't have JavaScript enabled", - "jsDisabledHeadingFull": "Alas! Your browser doesn't have JavaScript enabled and without it, Habitica can't work properly", - "jsDisabledText": "Habitica can't properly display the site without it!", - "jsDisabledLink": "Please enable JavaScript to continue!" + "jsDisabledHeading": "唉呀!你的瀏覽器沒有啟用 JavaScript", + "jsDisabledHeadingFull": "唉呀!你的瀏覽器未啟用 JavaScript,沒有它 Habitica 就無法正常運行", + "jsDisabledText": "Habitica 沒有它就無法正確顯示網站!", + "jsDisabledLink": "請啟用 JavaScript 來繼續!" } \ No newline at end of file diff --git a/common/locales/zh_TW/pets.json b/common/locales/zh_TW/pets.json index f25d83f73a..71a1217222 100644 --- a/common/locales/zh_TW/pets.json +++ b/common/locales/zh_TW/pets.json @@ -3,7 +3,7 @@ "petsFound": "擁有的寵物", "magicPets": "魔法藥水寵物", "rarePets": "稀有寵物", - "questPets": "劇情任務寵物", + "questPets": "任務寵物", "mounts": "坐騎", "mountsTamed": "已馴服的坐騎", "questMounts": "劇情任務坐騎", @@ -11,7 +11,7 @@ "rareMounts": "稀有坐騎", "etherealLion": "靈獅", "veteranWolf": "退伍軍狼", - "veteranTiger": "退伍軍虎", + "veteranTiger": "資深的老虎", "cerberusPup": "三頭地獄幼犬", "hydra": "三頭蛇", "mantisShrimp": "瀨尿蝦", @@ -19,7 +19,7 @@ "orca": "逆戟鯨", "royalPurpleGryphon": "紫禦獅鷲", "phoenix": "鳳凰", - "rarePetPop1": "按按金色的爪印,看看怎麼為Habitica貢獻,以獲得這隻稀有寵物!", + "rarePetPop1": "按按金色的爪印,看看怎麼為Habitica貢獻而獲得這隻稀有寵物!", "rarePetPop2": "得到這個寵物的方法!", "potion": "<%= potionType %> 藥水", "egg": "<%= eggType %> 蛋", @@ -55,26 +55,26 @@ "triadBingoAchievement": "因為找到了全部90種寵物和總共90種座騎,然後「再一次」找齊所有90種寵物,你獲得了\"大三元\"的成就。", "dropsEnabled": "啟用了物品掉落功能!", "itemDrop": "你獲得一件物品!", - "firstDrop": "你解鎖了掉落物系統!你現在每完成一項任務,你將有一定機率找到物品,包括蛋、孵化藥水、和食物!你剛剛發現了<%= eggText %>蛋! <%= eggNotes %>", - "useGems": "如果你很中意某之寵物,但又不想慢慢等蛋掉落的話,可以在背包>市集使用寶石買下它!", + "firstDrop": "你解鎖了掉落物系統!你現在每完成一項任務,就有機會找到物品,包括蛋、孵化藥水、或是食物!你剛剛發現了<%= eggText %>蛋! <%= eggNotes %>", + "useGems": "如果你很想要某之寵物,但又不想慢慢等蛋掉落的話,可以在背包 >市集使用寶石買下它!", "hatchAPot": "孵化一隻<%= potion %><%= egg %>?", - "hatchedPet": "You hatched a <%= potion %> <%= egg %>!", - "displayNow": "Display Now", + "hatchedPet": "您孵出了一個 <%= potion %> <%= egg %>!", + "displayNow": "現在顯示", "displayLater": "稍後顯示", - "earnedCompanion": "With all your productivity, you've earned a new companion. Feed it to make it grow!", - "feedPet": "餵你的<%= name %>一個<%= article %><%= text %>?", + "earnedCompanion": "因為你的效率,你已經獲得了一個新的同伴。餵養它,使其茁壯成長!", + "feedPet": "餵一個<%= article %><%= text %> 給 <%= name %>?", "useSaddle": "把鞍用在<%= pet %>上?", - "raisedPet": "You grew a <%= pet %>!", - "earnedSteed": "By completing your tasks, you've earned a faithful steed!", - "rideNow": "Ride Now", - "rideLater": "Ride Later", + "raisedPet": "一隻 <%= pet %> 成長了!", + "earnedSteed": "通過完成你的任務,你贏得一個忠心的坐騎!", + "rideNow": "現在騎", + "rideLater": "稍後騎", "petName": "<%= potion %> <%= egg %>", "mountName": "<%= potion %> <%= mount %>", "petKeyName": "寵物之家的鑰匙", - "petKeyPop": "讓你的寵物盡情嘶吼,放手讓他們展開自己的旅程,然後點燃自己再次成為\"寵物大師\"熱情吧!", + "petKeyPop": "讓你的寵物盡情嘶吼,展開自己的旅程,然後再次成為寵物大師吧!", "petKeyBegin": "寵物之家的鑰匙:再次體驗 <%= title %>吧!", - "petKeyInfo": "失去了蒐集寵物的熱情嗎?你可以放生你的寵物,讓蒐集掉落的物品再度充滿意義。", - "petKeyInfo2": "使用\"寵物之家的鑰匙\"將你所有非任務的寵物 和/或 座騎歸零。 (因任務獲得的寵物和稀有寵物不受影響)", + "petKeyInfo": "失去了蒐集寵物的樂趣嗎?你可以放生你的寵物,讓蒐集掉落物再度有意義。", + "petKeyInfo2": "使用寵物之家的鑰匙,將你所有非任務的寵物 和/或 座騎歸零。 ( 任務寵物和稀有寵物不受影響 )", "petKeyInfo3": "一共有三把\"寵物之家的鑰匙\":單單放生你的寵物( 4 顆寶石);或者單單放生你的座騎( 4 顆寶石),抑或是把寵物與座騎一同放生( 6 顆寶石)。 透過鑰匙你將獲得\"寵物大師\"或\"座騎大師\"的成就。 而\"大三元\"的成就,只有在你使用\"同時放生寵物與座騎\"的鑰匙後,然後「再一次」找齊所有90種寵物才能獲得。讓全世界看看你是多麼厲害的收集大師!但是請小心抉擇,因為一旦你使用了鑰匙打開籠舍或馬廄的大門,你只能透過重新收集才能把他們找回來...", "petKeyInfo4": "一共有三把\"寵物之家的鑰匙\":單單放生你的寵物( 4 顆寶石);或者單單放生你的座騎( 4 顆寶石),抑或是把寵物與座騎一同放生。 透過鑰匙你將獲得\"寵物大師\"或\"座騎大師\"的成就。 而\"大三元\"的成就,只有在你使用\"同時放生寵物與座騎\"的鑰匙後,然後「再一次」找齊所有90種寵物才能獲得。讓全世界看看你是多麼厲害的收集大師!但是請小心抉擇,因為一旦你使用了鑰匙打開籠舍或馬廄的大門,你只能透過重新收集才能把他們找回來...", "petKeyPets": "釋放所有寵物", diff --git a/common/locales/zh_TW/quests.json b/common/locales/zh_TW/quests.json index e83090557a..0d60974878 100644 --- a/common/locales/zh_TW/quests.json +++ b/common/locales/zh_TW/quests.json @@ -77,6 +77,6 @@ "startQuest": "任務開始", "whichQuestStart": "你要開始哪個任務?", "getMoreQuests": "取得更多任務", - "unlockedAQuest": "You unlocked a quest!", - "leveledUpReceivedQuest": "You leveled up to Level <%= level %> and received a quest scroll!" + "unlockedAQuest": "你解鎖了一個任務!", + "leveledUpReceivedQuest": "您升級為等級 <%= 級別 %> 並獲得一個任務捲軸!" } \ No newline at end of file diff --git a/common/locales/zh_TW/questscontent.json b/common/locales/zh_TW/questscontent.json index 5d58d71a9f..a64b6297dc 100644 --- a/common/locales/zh_TW/questscontent.json +++ b/common/locales/zh_TW/questscontent.json @@ -1,15 +1,15 @@ { "questEvilSantaText": "聖誕盜獵者", - "questEvilSantaNotes": "你聽到哀淒的咆哮聲從冰原深處傳來。你循著咆哮和嘶吼 ─不時夾雜著尖笑聲─ 來到了林子中的一塊空地,看到一隻成年的北極熊。她被拷著,關在籠子裡,吼叫著想要逃出。一個心懷不軌的小惡魔,穿著被遺棄的聖誕戲裝,在籠子上跳著舞呢。擊敗聖誕盜獵者,救出那隻母熊!", - "questEvilSantaCompletion": "聖誕盜獵者憤怒地嚎叫,縱身躍入夜幕之中。母熊充滿感激的咆哮嘶吼,似乎想對你說些什麼。你把她帶回馬厩,輕語者Matt Boch畏懼地屏息傾聽她講述的故事。原來她有個小熊寶寶!然而小熊卻在母熊落入陷阱時逃入了冰原中。 幫母熊找到她的寶寶!", + "questEvilSantaNotes": "你聽到從冰原深處傳來的哀淒的咆哮聲。你循著咆哮,嘶吼和尖笑聲來到了森林中的一塊空地,看到一隻成年的北極熊。她被拷著,關在籠子裡,吼叫著想要逃出。一個心懷不軌的小惡魔,穿著被遺棄的聖誕戲裝,在籠子上跳著舞。擊敗聖誕盜獵者,救出那隻母熊!", + "questEvilSantaCompletion": "聖誕盜獵者憤怒地嚎叫,縱身躍入黑夜之中。母熊充滿感激的咆哮嘶吼,似乎想對你說些什麼。你把她帶回馬房,輕語者Matt Boch畏懼地屏息傾聽她講述的故事。原來她有個小熊寶寶!然而小熊卻在母熊落入陷阱時逃入了冰原中。 幫助母熊找到她的寶寶吧!", "questEvilSantaBoss": "聖誕盜獵者", - "questEvilSantaDropBearCubPolarMount": "北極熊 ( 坐騎 )", + "questEvilSantaDropBearCubPolarMount": "北極熊 (坐騎)", "questEvilSanta2Text": "找小熊", - "questEvilSanta2Notes": "母熊的寶寶在母熊被抓住的時候跑進了冰原。她在樹林邊際嗅著空氣尋索蹤跡。你聽到樹枝咔嚓作響,雪地嘎吱嘎吱的聲音迴盪在整個樹林。是爪印!你們開始追尋雪地上的踪跡。集齊所有的爪印和破損的樹枝來找回她的寶寶!", - "questEvilSanta2Completion": "你找到了小熊!母熊和她的寶寶對你感激不盡。作為回報,他們決定與你結伴同行直到永遠。", + "questEvilSanta2Notes": "寶寶在母熊被抓住的時候跑進了冰原。母熊在樹林邊際嗅著空氣尋索蹤跡。你聽到樹枝咔嚓作響,雪地嘎吱嘎吱的聲音迴盪在整個樹林。是爪印!你們開始追尋雪地上的踪跡。集齊所有的爪印和破損的樹枝來找回她的寶寶!", + "questEvilSanta2Completion": "你找到了小熊!母熊和她的寶寶對你感激不盡。作為回報,他們決定永遠與你結伴同行。", "questEvilSanta2CollectTracks": "足跡", "questEvilSanta2CollectBranches": "折斷的樹枝", - "questEvilSanta2DropBearCubPolarPet": "北極熊(寵物)", + "questEvilSanta2DropBearCubPolarPet": "北極熊 (寵物)", "questGryphonText": "烈燄獅鷲", "questGryphonNotes": "偉大的馴獸師,baconsaur,來到你的隊伍尋求幫助:「冒險者,求你們幫幫我!我珍貴的獅鷲跑掉了,威脅著Habit城的安全!如果你能阻止她,我可以把她的幾個蛋給你! 」", "questGryphonCompletion": "這隻強大的野獸遭擊敗後,羞愧地逃回他原來的主人那兒。「說真的,你做的太棒了,冒險者!」baconsaur 高聲說:「請拿走一些獅鷲的蛋吧,我相信你會好好養育這些幼鳥的。」", @@ -25,9 +25,9 @@ "questGhostStagText": "春之幽靈", "questGhostStagNotes": "\"啊,春天!一年當中色彩重回大地的時光。凜冽的雪丘消融,朝氣蓬勃的植物取代了寒冷的冰霜。青翠的綠葉覆滿枝頭,草地也恢復了往昔鮮明的色彩。一道花朵搭成的彩虹沿著平原上升,而神秘的白霧覆蓋著大地!…等等。神秘的白霧?「糟了,」 Inventrix 憂慮地說:「看來某種精靈是這場大霧的原因。噢,它現在往你那邊衝過去了。」", "questGhostStagCompletion": "精靈似乎毫髮無傷,將它的鼻子靠近地面。一股平靜的聲音包圍著你的隊伍。「我為我的所作所為感到抱歉。我剛從睡眠中甦醒,神智似乎未清。請把這些當做我道歉的象徵。」一窩蛋忽然出現在精靈前的草地上。精靈片語未留,奔跑進森林之中,只留下花朵兀自在他的身後飄落。", - "questGhostStagBoss": "雄鹿精靈", - "questGhostStagDropDeerEgg": "鹿 (蛋)", - "questGhostStagUnlockText": "解鎖-可在市集中購買鹿蛋", + "questGhostStagBoss": "精靈雄鹿", + "questGhostStagDropDeerEgg": "鹿 (蛋)", + "questGhostStagUnlockText": "解鎖- 可在市集中購買鹿蛋", "questRatText": "鼠王", "questRatNotes": "到處都是垃圾!整個 Habitica 充斥著未完成的日常任務造成的垃圾。問題已然相當嚴重,成群的老鼠現在隨處可見。你注意到 @Pandah 愛憐地拍著一隻老鼠。她解釋說其實老鼠相當溫馴,牠們以未完成的日常任務為食。問題的根源在於日常任務落入了下水道內,使下水道成為亟需清理的危險場所。你走入下水道內,一隻巨鼠睜著血紅雙眼、咧出一口黃板牙來攻擊你,試圖保護自己的巢穴。究竟你會落荒而逃,還是勇敢面對傳說中的鼠王呢?", "questRatCompletion": "你的最後一擊粉碎了巨鼠的力量,牠的眼睛逐漸黯淡發灰。這隻巨獸化為許多小老鼠,驚慌地四處亂竄。你發現@Pandah站在你身後,凝望著那一度強大的生物。她說道Habitica的公民因為受到你勇氣的鼓舞,很快地就把他們未完成的每日任務解決了。她警告說我們仍須警醒,一旦我們放鬆警戒,鼠王還會回來的。@Pandah也給了你幾個老鼠蛋作為酬勞,看到你表露不安,她微笑著說:「牠們是很棒的寵物。」", @@ -255,9 +255,9 @@ "questBurnoutCompletion": "Burnout is DEFEATED!

With a great, soft sigh, Burnout slowly releases the ardent energy that was fueling its fire. As the monster curls quietly into ashes, its stolen energy shimmers through the air, rejuvenating the Exhaust Spirits and returning them to their true forms.

Ian, Daniel, and the Seasonal Sorceress cheer as Habiticans rush to greet them, and all the missing citizens of the Flourishing Fields embrace their friends and families. The final Exhaust Spirit transforms into the Joyful Reaper herself!

\"Look!\" whispers @Baconsaur, as the ashes begin to glitter. Slowly, they resolve into hundreds of shining phoenixes!

One of the glowing birds alights on the Joyful Reaper's skeletal arm, and she grins at it. \"It has been a long time since I've had the exquisite privilege to behold a phoenix in the Flourishing Fields,\" she says. \"Although given recent occurrences, I must say, this is highly thematically appropriate!\"

Her tone sobers, although (naturally) her grin remains. \"We're known for being hard-working here, but we are also known for our feasts and festivities. Rather ironic, I suppose, that as we strove to plan a spectacular party, we refused to permit ourselves any time for fun. We certainly won't make the same mistake twice!\"

She claps her hands. \"Now - let's celebrate!\"", "questBurnoutCompletionChat": "`Burnout is DEFEATED!`\n\nWith a great, soft sigh, Burnout slowly releases the ardent energy that was fueling its fire. As the monster curls quietly into ashes, its stolen energy shimmers through the air, rejuvenating the Exhaust Spirits and returning them to their true forms.\n\nIan, Daniel, and the Seasonal Sorceress cheer as Habiticans rush to greet them, and all the missing citizens of the Flourishing Fields embrace their friends and families. The final Exhaust Spirit transforms into the Joyful Reaper herself!\n\n\"Look!\" whispers @Baconsaur, as the ashes begin to glitter. Slowly, they resolve into hundreds of shining phoenixes!\n\nOne of the glowing birds alights on the Joyful Reaper's skeletal arm, and she grins at it. \"It has been a long time since I've had the exquisite privilege to behold a phoenix in the Flourishing Fields,\" she says. \"Although given recent occurrences, I must say, this is highly thematically appropriate!\"\n\nHer tone sobers, although (naturally) her grin remains. \"We're known for being hard-working here, but we are also known for our feasts and festivities. Rather ironic, I suppose, that as we strove to plan a spectacular party, we refused to permit ourselves any time for fun. We certainly won't make the same mistake twice!\"\n\nShe claps her hands. \"Now - let's celebrate!\"\n\nAll Habiticans receive:\n\nPhoenix Pet\nPhoenix Mount\nAchievement: Savior of the Flourishing Fields\nBasic Candy\nVanilla Candy\nSand Candy\nCinnamon Candy\nChocolate Candy\nRotten Candy\nSour Pink Candy\nSour Blue Candy\nHoney Candy", "questBurnoutBoss": "Burnout", - "questBurnoutBossRageTitle": "Exhaust Strike", + "questBurnoutBossRageTitle": "排氣打擊 ", "questBurnoutBossRageDescription": "When this gauge fills, Burnout will unleash its Exhaust Strike on Habitica!", - "questBurnoutDropPhoenixPet": "Phoenix (Pet)", + "questBurnoutDropPhoenixPet": "鳳凰(寵物)", "questBurnoutDropPhoenixMount": "Phoenix (Mount)", "questBurnoutBossRageQuests": "`Burnout uses EXHAUST STRIKE!`\n\nOh no! Despite our best efforts, we've let some Dailies get away from us, and now Burnout is inflamed with energy! With a crackling snarl, it engulfs Ian the Quest Master in a surge of spectral fire. As fallen quest scrolls smolder, the smoke clears, and you see that Ian has been drained of energy and turned into a drifting Exhaust Spirit!\n\nOnly defeating Burnout can break the spell and restore our beloved Quest Master. Let's keep our Dailies in check and defeat this monster before it attacks again!", "questBurnoutBossRageSeasonalShop": "`Burnout uses EXHAUST STRIKE!`\n\nAhh!!! Our incomplete Dailies have fed the flames of Burnout, and now it has enough energy to strike again! It lets loose a gout of spectral flame that sears the Seasonal Shop. You're horrified to see that the cheery Seasonal Sorceress has been transformed into a drooping Exhaust Spirit.\n\nWe have to rescue our NPCs! Hurry, Habiticans, complete your tasks and defeat Burnout before it strikes for a third time!", @@ -272,6 +272,6 @@ "questSnakeNotes": "It takes a hardy soul to live in the Sand Dunes of Distraction. The arid desert is hardly a productive place, and the shimmering dunes have led many a traveler astray. However, something has even the locals spooked. The sands have been shifting and upturning entire villages. Residents claim a monster with an enormous serpentine body lies in wait under the sands, and they have all pooled together a reward for whomever will help them find and stop it. The much-lauded snake charmers @EmeraldOx and @PainterProphet have agreed to help you summon the beast. Can you stop the Serpent of Distraction?", "questSnakeCompletion": "With assistance from the charmers, you banish the Serpent of Distraction. Though you were happy to help the inhabitants of the Dunes, you can't help but feel a little sad for your fallen foe. While you contemplate the sights, @LordDarkly approaches you. \"Thank you! It's not much, but I hope this can express our gratitude properly.\" He hands you some Gold and... some Snake eggs! You will see that majestic animal again after all.", "questSnakeBoss": "Serpent of Distraction", - "questSnakeDropSnakeEgg": "Snake (Egg)", + "questSnakeDropSnakeEgg": "蛇(蛋)", "questSnakeUnlockText": "Unlocks purchasable Snake eggs in the Market" } \ No newline at end of file diff --git a/common/locales/zh_TW/settings.json b/common/locales/zh_TW/settings.json index 369f7d8a9d..d5c8f135c8 100644 --- a/common/locales/zh_TW/settings.json +++ b/common/locales/zh_TW/settings.json @@ -15,10 +15,10 @@ "startAdvCollapsed": "預設隱藏進階選項", "startAdvCollapsedPop": "選擇這個選項後,展開編輯新任務時,進階選項是隱藏的。", "dontShowAgain": "不要再顯示", - "suppressLevelUpModal": "Don't show popup when gaining a level", - "suppressHatchPetModal": "Don't show popup when hatching a pet", - "suppressRaisePetModal": "Don't show popup when raising a pet into a mount", - "suppressStreakModal": "Don't show popup when attaining a Streak achievement", + "suppressLevelUpModal": "升級時不要跳出提醒畫面", + "suppressHatchPetModal": "孵化寵物時不要跳出提醒畫面", + "suppressRaisePetModal": "當寵物成長為座騎時不要跳出提醒畫面", + "suppressStreakModal": "當達成連擊成就時不要跳出提醒畫面", "showTour": "顯示教學", "restartTour": "重新開始剛加入 Habitica 時,所顯示的教學", "showBailey": "顯示 Bailey", @@ -143,5 +143,8 @@ "gemCapExtra": "Gem Cap Extra:", "mysticHourglasses": "Mystic Hourglasses:", "paypal": "PayPal", - "amazonPayments": "Amazon Payments" + "amazonPayments": "Amazon Payments", + "timezone": "Time Zone", + "timezoneUTC": "Habitica uses the time zone set on your PC, which is: <%= utc %>", + "timezoneInfo": "If that time zone is wrong, first reload this page using your browser's reload or refresh button to ensure that Habitica has the most recent information. If it is still wrong, adjust the time zone on your PC and then reload this page again.

If you use Habitica on other PCs or mobile devices, the time zone must be the same on them all. If your Dailies have been reseting at the wrong time, repeat this check on all other PCs and on a browser on your mobile devices." } \ No newline at end of file diff --git a/common/locales/zh_TW/tasks.json b/common/locales/zh_TW/tasks.json index 3d9cf6fc36..9a208abbe9 100644 --- a/common/locales/zh_TW/tasks.json +++ b/common/locales/zh_TW/tasks.json @@ -88,8 +88,7 @@ "fortifyText": "鞏固會將你的任務回復到中性狀態 ( 黃色 ,如同剛新增時),並把你的生命值補滿。把它當成無計可施時的最後王牌!紅色會為進步提供良好的動力,但如果滿目紅色讓你難過,且每天開始時都對你致命,那麼花費寶石來喘口氣吧!", "sureDelete": "你確定要刪除這個任務嗎?", "streakCoins": "連擊獎勵", - "pushTaskToTop": "置頂", - "pushTaskToBottom": "置底", + "pushTaskToTop": "Push task to top. Hold ctrl or cmd to push to bottom.", "emptyTask": "請先輸入任務的標題", "dailiesRestingInInn": "你正在酒館休息中!你今天不會因為未完成每日任務而受到傷害,但是任務還是會每天刷新哦。如果你正在隊伍中解任務的話,在你離開酒館前,你將不會受到傷害也無法獲得獎勵,可是若你的隊伍沒有乖乖完成他們自己的每日任務的話,你的生命值仍然會受損哦。", "habitHelp1": "「好習慣」就是你每天都可以完成好幾次的正面事情。當你每次點擊 <%= plusIcon %>的時候,它會為你帶來金幣和經驗值哦。", diff --git a/common/script/content/constants.js b/common/script/content/constants.js index 9274e9cf32..0c0ee334e0 100644 --- a/common/script/content/constants.js +++ b/common/script/content/constants.js @@ -16,12 +16,12 @@ export const EVENTS = { birthday: { start: '2013-01-30', end: '2014-02-01' }, spring: { start: '2014-03-21', end: '2014-05-01' }, summer: { start: '2014-06-20', end: '2014-08-01' }, - gaymerx: { start: '2014-07-02', end: '2014-08-01' }, fall: { start: '2014-09-21', end: '2014-11-01' }, winter2015: { start: '2014-12-21', end: '2015-02-02' }, spring2015: { start: '2015-03-20', end: '2015-05-02' }, summer2015: { start: '2015-06-20', end: '2015-08-02' }, fall2015: { start: '2015-09-21', end: '2015-11-01' }, + gaymerx: { start: '2015-12-01', end: '2015-12-14' }, }; export const GEAR_TYPES = [ diff --git a/common/script/content/gear/sets/armoire.js b/common/script/content/gear/sets/armoire.js index 77c9ff065c..16f8655be2 100644 --- a/common/script/content/gear/sets/armoire.js +++ b/common/script/content/gear/sets/armoire.js @@ -77,6 +77,15 @@ let armor = { set: 'royal', canOwn: ownsItem('armor_armoire_royalRobes'), }, + crystalCrescentRobes: { + text: t('armorArmoireCrystalCrescentRobesText'), + notes: t('armorArmoireCrystalCrescentRobesNotes', { attrs: 7 }), + value: 100, + per: 7, + con: 7, + set: 'crystalCrescent', + canOwn: ownsItem('armor_armoire_crystalCrescentRobes'), + }, }; let eyewear = { @@ -232,6 +241,15 @@ let head = { set: 'shepherd', canOwn: ownsItem('head_armoire_shepherdHeaddress'), }, + crystalCrescentHat: { + text: t('headArmoireCrystalCrescentHatText'), + notes: t('headArmoireCrystalCrescentHatNotes', { attrs: 7 }), + value: 100, + int: 7, + per: 7, + set: 'crystalCrescent', + canOwn: ownsItem('head_armoire_crystalCrescentHat'), + }, }; let shield = { @@ -338,6 +356,25 @@ let weapon = { set: 'shepherd', canOwn: ownsItem('weapon_armoire_shepherdsCrook'), }, + crystalCrescentStaff: { + text: t('weaponArmoireCrystalCrescentStaffText'), + notes: t('weaponArmoireCrystalCrescentStaffNotes', { attrs: 7 }), + value: 100, + int: 7, + str: 7, + set: 'crystalCrescent', + canOwn: ownsItem('weapon_armoire_crystalCrescentStaff'), + }, + blueLongbow: { + text: t('weaponArmoireBlueLongbowText'), + notes: t('weaponArmoireBlueLongbowNotes', { per: 9, con: 8, str: 7 }), + value: 100, + per: 9, + con: 8, + str: 7, + twoHanded: true, + canOwn: ownsItem('weapon_armoire_blueLongbow'), + }, }; let armoireSet = { diff --git a/common/script/content/index.js b/common/script/content/index.js index 3f39542ded..d14727016c 100644 --- a/common/script/content/index.js +++ b/common/script/content/index.js @@ -1030,6 +1030,14 @@ api.premiumHatchingPotions = { canBuy: (function() { return false; }) + }, + Peppermint: { + value: 2, + text: t('hatchingPotionPeppermint'), + limited: true, + canBuy: (function() { + return true; + }) } }; @@ -3214,7 +3222,21 @@ api.backgrounds = { text: t('backgroundSunsetOasisText'), notes: t('backgroundSunsetOasisNotes') } - } + }, + backgrounds122015: { + alpine_slopes: { + text: t('backgroundAlpineSlopesText'), + notes: t('backgroundAlpineSlopesNotes') + }, + snowy_sunrise: { + text: t('backgroundSnowySunriseText'), + notes: t('backgroundSnowySunriseNotes') + }, + winter_town: { + text: t('backgroundWinterTownText'), + notes: t('backgroundWinterTownNotes') + } + }, }; api.subscriptionBlocks = { diff --git a/common/script/index.js b/common/script/index.js index cfcffa13f5..292f579de2 100644 --- a/common/script/index.js +++ b/common/script/index.js @@ -2063,23 +2063,25 @@ api.wrap = function(user, main) { return content.gear.flat[type + "_base_0"]; } return item; - }, + }, handleTwoHanded: function(item, type, req) { - var message, ref, weapon; + var message, currentWeapon, currentShield; if (type == null) { type = 'equipped'; } - if (item.type === "shield" && ((ref = (weapon = content.gear.flat[user.items.gear[type].weapon])) != null ? ref.twoHanded : void 0)) { + currentShield = content.gear.flat[user.items.gear[type].shield]; + currentWeapon = content.gear.flat[user.items.gear[type].weapon]; + + if (item.type === "shield" && (currentWeapon ? currentWeapon.twoHanded : false)) { user.items.gear[type].weapon = 'weapon_base_0'; - message = i18n.t('messageTwoHandled', { - gearText: weapon.text(req.language) - }, req.language); - } - if (item.twoHanded) { - user.items.gear[type].shield = "shield_base_0"; - message = i18n.t('messageTwoHandled', { - gearText: item.text(req.language) + message = i18n.t('messageTwoHandedUnequip', { + twoHandedText: currentWeapon.text(req.language), offHandedText: item.text(req.language), }, req.language); + } else if (item.twoHanded && (currentShield && user.items.gear[type].shield != "shield_base_0")) { + user.items.gear[type].shield = "shield_base_0"; + message = i18n.t('messageTwoHandedEquip', { + twoHandedText: item.text(req.language), offHandedText: currentShield.text(req.language), + }, req.language); } return message; }, diff --git a/common/script/public/userServices.js b/common/script/public/userServices.js index 67d705e8b7..ba02382fc4 100644 --- a/common/script/public/userServices.js +++ b/common/script/public/userServices.js @@ -106,11 +106,10 @@ angular.module('habitrpg') } if (err) { var message = err.code ? err.message : err; - console.log(message); if (MOBILE_APP) Notification.push({type:'text',text:message}); else Notification.text(message); // In the case of 200s, they're friendly alert messages like "Your pet has hatched!" - still send the op - if ((err.code && err.code >= 400) || !err.code) return; + if ((err.code && err.code >= 400) || !err.code) return; } userServices.log({op:k, params: req.params, query:req.query, body:req.body}); }); diff --git a/keys/google/iap-live b/keys/google/iap-live index 69dc38136b..cc086655a1 100644 --- a/keys/google/iap-live +++ b/keys/google/iap-live @@ -1 +1 @@ -MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAk6EVccD7D6y5vLmsUxUXVYTMyByq+NjfTzjMBaKCk93fq8Ahn6Ipha1K4oBIvArUj3CsP5Tb/Yf6c6SrEsSnE3eqgKQgeq+fYyfIm+Fb+tFGTttLonZ2Sqemqeyx2PjOG2CVZBXj1+Zr7jb0ocMNYraYUTvklWnpcK6/5ZaZLLent1PGiU9l5jIfRAsxmJH/UpssgpFPnCs+8PRKUALkJATTfVCCF+PJef6mcKAafAArKUEo0lR2/NeaE62Wpii33DLuKDPfMqL3g4EHZTEVE1ezFl/3WPeLlxuQm38hZLpEfEYKp17qzplU+GmWIfjZt6OdtVdonlYxIxNAZLnWEQIDAQAB \ No newline at end of file +MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAnmbea0F4VJb93JnAyzEHXt0RMubikRn+nLhU6nRD6Wdt/utizmkfEca3HJlbrG2J1yB3DO8Js/hiVZiu4JdX9ApU9GDwXJxMjSCf+Y5XAV6SB/gtsnR1eFTRcNqroHUlN419xzWBcjMtlcCJ28QguG/vkLoumKDomVbqcUKKHycbQYtI+BZZ2fENeyIJRTQ7luvWX4kJ99vsTZTlQZ02aRAF6yE2lCGUpLSH3CoRaKrmsHB3NOJRDQj74Ulc038NQ86X9Jeb9+/D5gBZh/R6i9DX6ipNKAoSH5n+5TdBfId6UPMUhejiQH4OjoG2VyiP6FKRH07Q3XZ83seunoCeaQIDAQAB diff --git a/test/api-legacy/inAppPurchases.js b/test/api-legacy/inAppPurchases.js index b50fecdf3d..d4182e437c 100644 --- a/test/api-legacy/inAppPurchases.js +++ b/test/api-legacy/inAppPurchases.js @@ -70,7 +70,8 @@ describe('In-App Purchases', function() { expect(paymentSpy).to.be.calledOnce; return expect(paymentSpy).to.be.calledWith({ user: res.locals.user, - paymentMethod: 'IAP GooglePlay' + paymentMethod: 'IAP GooglePlay', + amount: 5.25 }); }); }); diff --git a/test/api/v2/register/POST-register.test.js b/test/api/v2/register/POST-register.test.js index e40963830e..a4d1987002 100644 --- a/test/api/v2/register/POST-register.test.js +++ b/test/api/v2/register/POST-register.test.js @@ -240,4 +240,55 @@ describe('POST /register', () => { }); }); }); + + context('successful login with habitica-android header', () => { + let api, username, email, password; + + beforeEach(() => { + api = requester({}, {'x-client': 'habitica-android'}); + username = generateRandomUserName(); + email = `${username}@example.com`; + password = 'password'; + }); + + it('sets all common tutorial flags to true', () => { + return api.post('/register', { + username: username, + email: email, + password: password, + confirmPassword: password, + }).then((user) => { + expect(user.flags.tour).to.not.be.empty; + + each(user.flags.tutorial.common, (value, attribute) => { + expect(value).to.eql(true); + }); + }); + }); + + it('populates user with default todos, habits, and rewards', () => { + return api.post('/register', { + username: username, + email: email, + password: password, + confirmPassword: password, + }).then((user) => { + expect(user.todos).to.not.be.empty; + expect(user.dailys).to.be.empty; + expect(user.habits).to.not.be.empty; + expect(user.rewards).to.not.be.empty; + }); + }); + + it('populates user with default tags', () => { + return api.post('/register', { + username: username, + email: email, + password: password, + confirmPassword: password, + }).then((user) => { + expect(user.tags).to.not.be.empty; + }); + }); + }); }); diff --git a/test/common/user.ops.equip.test.js b/test/common/user.ops.equip.test.js new file mode 100644 index 0000000000..62f7956e02 --- /dev/null +++ b/test/common/user.ops.equip.test.js @@ -0,0 +1,102 @@ +/* eslint-disable camelcase */ + +import sinon from 'sinon'; // eslint-disable-line no-shadow +import {assert} from 'sinon'; +import i18n from '../../common/script/i18n'; +import shared from '../../common/script/index.js'; +import content from '../../common/script/content/index'; + +describe('user.ops.equip', () => { + let user; + let spy; + + beforeEach(() => { + user = { + items: { + gear: { + owned: { + weapon_warrior_0: true, + weapon_warrior_1: true, + weapon_warrior_2: true, + weapon_wizard_1: true, + weapon_wizard_2: true, + shield_base_0: true, + shield_warrior_1: true, + }, + equipped: { + weapon: 'weapon_warrior_0', + shield: 'shield_base_0', + }, + }, + }, + preferences: {}, + stats: {gp: 200}, + achievements: {}, + flags: {}, + }; + + shared.wrap(user); + spy = sinon.spy(); + }); + + context('Gear', () => { + it('should not send a message if a weapon is equipped while only having zero or one weapons equipped', () => { + // user.ops.equip always calls the callback, even if it isn't sending a message + // so we need to check to see if a single null message was sent. + user.ops.equip({params: {key: 'weapon_warrior_1'}}); + + // one-handed to one-handed + user.ops.equip({params: {key: 'weapon_warrior_2'}}, spy); + + assert.calledOnce(spy); + assert.calledWith(spy, null); + spy.reset(); + + // one-handed to two-handed + user.ops.equip({params: {key: 'weapon_wizard_1'}}, spy); + assert.calledOnce(spy); + assert.calledWith(spy, null); + spy.reset(); + + // two-handed to two-handed + user.ops.equip({params: {key: 'weapon_wizard_2'}}, spy); + assert.calledOnce(spy); + assert.calledWith(spy, null); + spy.reset(); + + // two-handed to one-handed + user.ops.equip({params: {key: 'weapon_warrior_2'}}, spy); + assert.calledOnce(spy); + assert.calledWith(spy, null); + spy.reset(); + }); + + it('should send messages if equipping a two-hander causes the off-hander to be unequipped', () => { + user.ops.equip({params: {key: 'weapon_warrior_1'}}); + user.ops.equip({params: {key: 'shield_warrior_1'}}); + + // equipping two-hander + user.ops.equip({params: {key: 'weapon_wizard_1'}}, spy); + let weapon = content.gear.flat.weapon_wizard_1; + let item = content.gear.flat.shield_warrior_1; + let message = i18n.t('messageTwoHandedEquip', {twoHandedText: weapon.text(null), offHandedText: item.text(null)}); + + assert.calledOnce(spy); + assert.calledWith(spy, {code: 200, message}); + }); + + it('should send messages if equipping an off-hand item causes a two-handed weapon to be unequipped', () => { + // equipping two-hander + user.ops.equip({params: {key: 'weapon_wizard_1'}}); + let weapon = content.gear.flat.weapon_wizard_1; + let shield = content.gear.flat.shield_warrior_1; + + user.ops.equip({params: {key: 'shield_warrior_1'}}, spy); + + let message = i18n.t('messageTwoHandedUnequip', {twoHandedText: weapon.text(null), offHandedText: shield.text(null)}); + + assert.calledOnce(spy); + assert.calledWith(spy, {code: 200, message}); + }); + }); +}); diff --git a/test/e2e/e2e.js b/test/e2e/e2e.js index bc5e013cda..6efeaaa82b 100644 --- a/test/e2e/e2e.js +++ b/test/e2e/e2e.js @@ -37,7 +37,7 @@ describe('front page', function() { var login = element(by.css("#loginForm input[value='Login']")); login.click(); var alertDialog = browser.switchTo().alert(); - expect(alertDialog.getText()).toMatch("Uh-oh - your username or password is incorrect.\n- Make sure your username or email is typed correctly.\n- You may have signed up with Facebook, not email. Double-check by trying Facebook login.\n- If you forgot your password, click \"Forgot Password\"."); + expect(alertDialog.getText()).toMatch("Uh-oh - your username or password is incorrect.\n- Make sure your username or email is typed correctly.\n- You may have signed up with Facebook, not email. Double-check by trying Facebook login.\n- If you forgot your password, click \"Forgot Password\" on the habitica.com website's login form."); alertDialog.accept(); }); diff --git a/test/spec/controllers/inventoryCtrlSpec.js b/test/spec/controllers/inventoryCtrlSpec.js index c110a70dae..2553acbcf3 100644 --- a/test/spec/controllers/inventoryCtrlSpec.js +++ b/test/spec/controllers/inventoryCtrlSpec.js @@ -79,18 +79,28 @@ describe('Inventory Controller', function() { expect(rootScope.openModal).to.have.been.calledWith('hatchPet'); }); - it('does not show modal if user tries to hatch a pet they own', function(){ + it('shows modal even if user has raised that pet to a mount', function(){ + user.items.pets['Cactus-Base'] = -1; scope.chooseEgg('Cactus'); scope.choosePotion('Base'); - expect(user.items.eggs).to.eql({Cactus: 0}); - expect(user.items.hatchingPotions).to.eql({Base: 0}); - expect(user.items.pets).to.eql({'Cactus-Base': 5}); - expect(scope.selectedEgg).to.eql(null); - expect(scope.selectedPotion).to.eql(null); + expect(rootScope.openModal).to.have.been.calledOnce; + expect(rootScope.openModal).to.have.been.calledWith('hatchPet'); + }); + + it('does not show modal if user tries to hatch a pet they own', function(){ + user.items.pets['Cactus-Base'] = 5; scope.chooseEgg('Cactus'); scope.choosePotion('Base'); - expect(rootScope.openModal).to.not.have.been.calledTwice; + expect(rootScope.openModal).to.not.have.been.called; + }); + + it('does not show modal if user tries to hatch a premium quest pet', function(){ + user.items.eggs = {Snake: 1}; + user.items.hatchingPotions = {Peppermint: 1}; + scope.chooseEgg('Snake'); + scope.choosePotion('Peppermint'); + expect(rootScope.openModal).to.not.have.been.called; }); it('does not show pet hatching modal if user has opted out', function(){ diff --git a/website/public/css/alerts.styl b/website/public/css/alerts.styl index 6525f131ea..e5ac4aa042 100644 --- a/website/public/css/alerts.styl +++ b/website/public/css/alerts.styl @@ -14,7 +14,7 @@ display: inline-block .wide-popover - max-width: 400px + max-width: max-content // Small alerts alert-sm-mixin() diff --git a/website/public/css/inventory.styl b/website/public/css/inventory.styl index 8e86e70f5b..1740daa407 100644 --- a/website/public/css/inventory.styl +++ b/website/public/css/inventory.styl @@ -104,7 +104,7 @@ menu.pets .customize-menu .pet-button border: none background: none white -.pet-not-owned +.pet-not-owned, .mount-not-owned width: 81px; height: 99px; /* Would use css3 filters and just display the original pet image with a black hue, @@ -115,12 +115,6 @@ 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/tasks.styl b/website/public/css/tasks.styl index 0318d9b5c8..854125dcb0 100644 --- a/website/public/css/tasks.styl +++ b/website/public/css/tasks.styl @@ -190,6 +190,9 @@ for $stage in $stages float: right font-size: 0.85em .empty-task-notification + // @TODO: This causes weird centering behavior (see #6332) + // however, this is required to show the tooltip on the task button + // Figure out how to fix the centering behavior while preserving the tooltip height: 100%; // message in Dailies column when Resting in Inn diff --git a/website/public/favicon_192x192.png b/website/public/favicon_192x192.png new file mode 100644 index 0000000000..96226b2cd6 Binary files /dev/null and b/website/public/favicon_192x192.png differ diff --git a/website/public/js/controllers/inventoryCtrl.js b/website/public/js/controllers/inventoryCtrl.js index c053f88d8c..42d0a0ca97 100644 --- a/website/public/js/controllers/inventoryCtrl.js +++ b/website/public/js/controllers/inventoryCtrl.js @@ -115,11 +115,12 @@ habitrpg.controller("InventoryCtrl", var potName = Content.hatchingPotions[potion.key].text(); if (!$window.confirm(window.env.t('hatchAPot', {potion: potName, egg: eggName}))) return; - var userHasPet = user.items.pets[egg.key + '-' + potion.key]; + var userHasPet = user.items.pets[egg.key + '-' + potion.key] > 0; + var isPremiumPet = Content.hatchingPotions[potion.key].premium && !Content.dropEggs[egg.key]; user.ops.hatch({params:{egg:egg.key, hatchingPotion:potion.key}}); - if (!user.preferences.suppressModals.hatchPet && !userHasPet) { + if (!user.preferences.suppressModals.hatchPet && !userHasPet && !isPremiumPet) { $scope.hatchedPet = { egg: eggName, potion: potName, @@ -261,7 +262,7 @@ habitrpg.controller("InventoryCtrl", } }; - $scope.$on("habit:keyup", function (e, keyEvent) { + $scope.$on("habit:keydown", function (e, keyEvent) { if (keyEvent.keyCode == "27") { $scope.deselectItem(); } diff --git a/website/public/js/controllers/rootCtrl.js b/website/public/js/controllers/rootCtrl.js index 0e6fd743c7..8d0bf5f3d8 100644 --- a/website/public/js/controllers/rootCtrl.js +++ b/website/public/js/controllers/rootCtrl.js @@ -327,5 +327,19 @@ habitrpg.controller("RootCtrl", ['$scope', '$rootScope', '$location', 'User', '$ }); // error will be handled via $http interceptor } + + // Global Keyevents + var ctrlKeys = [17, 224, 91]; + $scope.$on("habit:keydown", function (e, keyEvent) { + if (ctrlKeys.indexOf(keyEvent.keyCode) !== -1) { + $scope.ctrlPressed = true; + } + }); + + $scope.$on("habit:keyup", function (e, keyEvent) { + if (ctrlKeys.indexOf(keyEvent.keyCode) !== -1) { + $scope.ctrlPressed = false; + } + }); } ]); diff --git a/website/public/js/controllers/tasksCtrl.js b/website/public/js/controllers/tasksCtrl.js index 7eee145e37..9797e7eb21 100644 --- a/website/public/js/controllers/tasksCtrl.js +++ b/website/public/js/controllers/tasksCtrl.js @@ -76,7 +76,7 @@ habitrpg.controller("TasksCtrl", ['$scope', '$rootScope', '$location', 'User','N * Pushes task to top or bottom of list */ $scope.pushTask = function(task, index, location) { - var to = (location === 'bottom') ? -1 : 0; + var to = (location === 'bottom' || $scope.ctrlPressed) ? -1 : 0; User.user.ops.sortTask({params:{id:task.id},query:{from:index, to:to}}) }; diff --git a/website/src/controllers/api-v2/auth.js b/website/src/controllers/api-v2/auth.js index 94b6b682a5..7e838097b5 100644 --- a/website/src/controllers/api-v2/auth.js +++ b/website/src/controllers/api-v2/auth.js @@ -156,7 +156,7 @@ api.loginLocal = function(req, res, next) { User.findOne(login, {auth:1}, function(err, user){ if (err) return next(err); - if (!user) return res.json(401, {err:"Uh-oh - your username or password is incorrect.\n- Make sure your username or email is typed correctly.\n- You may have signed up with Facebook, not email. Double-check by trying Facebook login.\n- If you forgot your password, click \"Forgot Password\"."}); + if (!user) return res.json(401, {err:"Uh-oh - your username or password is incorrect.\n- Make sure your username or email is typed correctly.\n- You may have signed up with Facebook, not email. Double-check by trying Facebook login.\n- If you forgot your password, click \"Forgot Password\" on the habitica.com website's login form."}); if (user.auth.blocked) return res.json(401, accountSuspended(user._id)); // We needed the whole user object first so we can get his salt to encrypt password comparison User.findOne( @@ -164,7 +164,7 @@ api.loginLocal = function(req, res, next) { , {_id:1, apiToken:1} , function(err, user){ if (err) return next(err); - if (!user) return res.json(401,{err:"Uh-oh - your username or password is incorrect.\n- Make sure your username or email is typed correctly.\n- You may have signed up with Facebook, not email. Double-check by trying Facebook login.\n- If you forgot your password, click \"Forgot Password\"."}); + if (!user) return res.json(401,{err:"Uh-oh - your username or password is incorrect.\n- Make sure your username or email is typed correctly.\n- You may have signed up with Facebook, not email. Double-check by trying Facebook login.\n- If you forgot your password, click \"Forgot Password\" on the habitica.com website's login form."}); res.json({id: user._id,token: user.apiToken}); password = null; }); diff --git a/website/src/controllers/payments/iap.js b/website/src/controllers/payments/iap.js index 6da2a29606..829482ed67 100644 --- a/website/src/controllers/payments/iap.js +++ b/website/src/controllers/payments/iap.js @@ -61,7 +61,7 @@ exports.androidVerify = function(req, res, next) { data: googleRes }; - payments.buyGems({user:user, paymentMethod:'IAP GooglePlay'}); + payments.buyGems({user:user, paymentMethod:'IAP GooglePlay', amount: 5.25}); return res.json(resObj); } diff --git a/website/src/models/user.js b/website/src/models/user.js index e6885ae8c8..cca59d7719 100644 --- a/website/src/models/user.js +++ b/website/src/models/user.js @@ -154,7 +154,6 @@ var UserSchema = new Schema({ tavern: {type: Boolean, 'default': false}, equipment: {type: Boolean, 'default': false}, items: {type: Boolean, 'default': false}, - inviteParty: {type: Boolean, 'default': false}, }, ios: { addTask: {type: Boolean, 'default': false}, @@ -586,7 +585,7 @@ UserSchema.methods.unlink = function(options, cb) { function _populateDefaultsForNewUser(user) { var taskTypes; - if (user.registeredThrough === "habitica-web") { + if (user.registeredThrough === "habitica-web" || user.registeredThrough === "habitica-android") { taskTypes = ['habits', 'dailys', 'todos', 'rewards', 'tags']; var tutorialCommonSections = [ diff --git a/website/views/index.jade b/website/views/index.jade index 33d1c78f68..359134bc5a 100644 --- a/website/views/index.jade +++ b/website/views/index.jade @@ -1,14 +1,16 @@ doctype html //html(ng-app="habitrpg", ng-controller="RootCtrl", ng-class='{"applying-action":applyingAction}', ui-keypress="{27:'castCancel()'}") -html(ng-app="habitrpg", ng-controller="RootCtrl", ng-class='{"applying-action":applyingAction}', ui-keyup="{27:'castCancel()'}", ng-keydown="$broadcast('habit:keyup', $event)") +html(ng-app="habitrpg", ng-controller="RootCtrl", ng-class='{"applying-action":applyingAction}', ui-keyup="{27:'castCancel()'}", ng-keydown="$broadcast('habit:keydown', $event)", ng-keyup="$broadcast('habit:keyup', $event)") head title=env.t('titleIndex') // ?v=1 needed to force refresh - link(rel='shortcut icon', href='#{env.getBuildUrl("favicon.ico")}?v=4') + link(rel='shortcut icon', sizes="32x32", href='#{env.getBuildUrl("favicon.ico")}?v=4') + link(rel='shortcut icon', sizes="144x144", href='#{env.getBuildUrl("favicon_192x192.png")}?v=4') meta(charset='utf-8') meta(name='viewport', content='width=device-width, initial-scale=1.0') meta(name='apple-mobile-web-app-capable', content='yes') + meta(name='mobile-web-app-capable', content='yes') //- Disable NewRelic until we add it again on the server diff --git a/website/views/options/inventory/drops.jade b/website/views/options/inventory/drops.jade index c9c7143b0d..9718cc2283 100644 --- a/website/views/options/inventory/drops.jade +++ b/website/views/options/inventory/drops.jade @@ -136,6 +136,19 @@ | {{::pot.value}}  span.Pet_Currency_Gem1x.inline-gems + li.customize-menu + menu.pets-menu!=env.t('magicHatchingPotions') + " - " + env.t('winterEventAvailability') + p.muted=env.t('premiumPotionNoDropExplanation') + div(ng-repeat='pot in Content.hatchingPotions', ng-if='pot.premium && pot.canBuy(user)') + button.customize-option(class='Pet_HatchingPotion_{{::pot.key}}', + popover='{{::pot.notes()}} {{::pot.addlNotes()}}', popover-append-to-body='true', + popover-title!=env.t("potion", {potionType: "{{::pot.text()}}"}), + popover-trigger='mouseenter', popover-placement='top', + ng-click='purchase("hatchingPotions", pot)') + p + | {{::pot.value}}  + span.Pet_Currency_Gem1x.inline-gems + li.customize-menu menu.pets-menu(label=env.t('food')) p.muted!=env.t('dropsExplanation') diff --git a/website/views/options/inventory/mounts.jade b/website/views/options/inventory/mounts.jade index bbb9e9889d..e08d25c642 100644 --- a/website/views/options/inventory/mounts.jade +++ b/website/views/options/inventory/mounts.jade @@ -7,7 +7,7 @@ mixin mountList(eggSource, potionSource) each potion in potionSource - mount = egg.key+"-"+potion.key div(popover-trigger='mouseenter', popover=env.t('mountName', {potion: potion.text(env.language.code), mount: egg.mountText(env.language.code)}), popover-placement='bottom') - button(class="pet-button Mount_Head_#{mount}", ng-show='user.items.mounts["#{mount}"]', ng-class='{active: user.items.currentMount == "#{mount}"}', ng-click='chooseMount("#{egg.key}", "#{potion.key}")') + button(class="pet-button Mount_Icon_#{mount}", ng-show='user.items.mounts["#{mount}"]', ng-class='{active: user.items.currentMount == "#{mount}"}', ng-click='chooseMount("#{egg.key}", "#{potion.key}")') button(class="pet-button mount-not-owned", ng-if='!user.items.mounts["#{mount}"] && (#{potion.canBuy()} || user.items.hatchingPotions["#{potion.key}"] || user.items.pets["#{mount}"])') .PixelPaw -} @@ -34,7 +34,7 @@ mixin mountList(eggSource, potionSource) each egg in env.Content.dropEggs - mount = egg.key+"-"+potion.key div(popover-trigger='mouseenter', popover=env.t('mountName', {potion: potion.text(env.language.code), mount: egg.mountText(env.language.code)}), popover-placement='bottom') - button(class="pet-button Mount_Head_#{mount}", ng-show='user.items.mounts["#{mount}"]', ng-class='{active: user.items.currentMount == "#{mount}"}', ng-click='chooseMount("#{egg.key}", "#{potion.key}")') + button(class="pet-button Mount_Icon_#{mount}", ng-show='user.items.mounts["#{mount}"]', ng-class='{active: user.items.currentMount == "#{mount}"}', ng-click='chooseMount("#{egg.key}", "#{potion.key}")') button(class="pet-button mount-not-owned", ng-if='!user.items.mounts["#{mount}"] && (#{potion.canBuy()} || user.items.hatchingPotions["#{potion.key}"] || user.items.pets["#{mount}"])') .PixelPaw .row: .col-md-12 @@ -46,4 +46,4 @@ mixin mountList(eggSource, potionSource) div each t,k in env.Content.specialMounts - var animal = k.split('-')[0], color = k.split('-')[1] - button(ng-if='user.items.mounts["#{animal}-#{color}"]', class="pet-button Mount_Head_#{animal}-#{color}", ng-class='{active: user.items.currentMount == "#{animal}-#{color}"}', ng-click='chooseMount("#{animal}", "#{color}")', popover=env.t(t), popover-trigger='mouseenter', popover-placement='bottom') + button(ng-if='user.items.mounts["#{animal}-#{color}"]', class="pet-button Mount_Icon_#{animal}-#{color}", ng-class='{active: user.items.currentMount == "#{animal}-#{color}"}', ng-click='chooseMount("#{animal}", "#{color}")', popover=env.t(t), popover-trigger='mouseenter', popover-placement='bottom') diff --git a/website/views/options/social/chat-box.jade b/website/views/options/social/chat-box.jade index 1bc2602b76..633d0d16a2 100644 --- a/website/views/options/social/chat-box.jade +++ b/website/views/options/social/chat-box.jade @@ -4,7 +4,7 @@ div.chat-form.guidelines-not-accepted(ng-if='!user.flags.communityGuidelinesAcce div button.btn.btn-warning(ng-click='acceptCommunityGuidelines()')=env.t('iAcceptCommunityGuidelines') .chat-buttons - button(ng-if='group.chat.length > 0 || group.memberCount > 1', type="button", ng-click='sync(group)')=env.t('toolTipMsg') + button(type="button", ng-click='sync(group)')=env.t('toolTipMsg') form.chat-form(ng-if='user.flags.communityGuidelinesAccepted' ng-submit='postChat(group,message.content)') div(ng-controller='AutocompleteCtrl') @@ -16,5 +16,5 @@ form.chat-form(ng-if='user.flags.communityGuidelinesAccepted' ng-submit='postCha .chat-controls.clearfix .chat-buttons input.btn(type='submit', value=env.t('sendChat'), ng-disabled='_sending') - button.btn(ng-if='group.chat.length > 0 || group.memberCount > 1', type="button", ng-click='sync(group)', ng-disabled='_sending')=env.t('toolTipMsg') + button.btn(type="button", ng-click='sync(group)', ng-disabled='_sending')=env.t('toolTipMsg') include ../../shared/formatting-help diff --git a/website/views/options/social/group.jade b/website/views/options/social/group.jade index 37f4027d25..b442f61e0c 100644 --- a/website/views/options/social/group.jade +++ b/website/views/options/social/group.jade @@ -132,14 +132,15 @@ a.pull-right.gem-wallet(ng-if='group.type!="party"', popover-trigger='mouseenter .col-md-8 div textarea.form-control(ng-show='group._editing', rows=6, placeholder=env.t('leaderMsg'), ng-model='group.leaderMessage') - table(ng-show='group.leaderMessage') - tr - td - .popover.static-popover.fade.right.in.wide-popover - .arrow - h3.popover-title {{group.leader.profile.name}} - .popover-content - markdown(text='group.leaderMessage') + .slight-vertical-padding + table(ng-show='group.leaderMessage') + tr + td + .popover.static-popover.fade.right.in.wide-popover + .arrow + h3.popover-title {{group.leader.profile.name}} + .popover-content + markdown(text='group.leaderMessage') div(ng-controller='ChatCtrl') h3=env.t('chat') include ./chat-box diff --git a/website/views/shared/footer.jade b/website/views/shared/footer.jade index 9f70f44cb5..ec67f778dc 100644 --- a/website/views/shared/footer.jade +++ b/website/views/shared/footer.jade @@ -8,7 +8,7 @@ footer.footer(ng-controller='FooterCtrl') li a(href='https://itunes.apple.com/us/app/habitica/id994882113?ls=1&mt=8', target='_blank')=env.t('mobileIOS') li - a(href='/static/apps')=env.t('mobileAndroid') + a(href='https://play.google.com/store/apps/details?id=com.habitrpg.android.habitica', target='_blank')=env.t('mobileAndroid') if env.isStaticPage h4=env.t('language') select(ng-change='changeLang()', ng-model='selectedLanguage', ng-options='language.name for language in languages') diff --git a/website/views/shared/new-stuff.jade b/website/views/shared/new-stuff.jade index 13f836697d..6d13d9fa06 100644 --- a/website/views/shared/new-stuff.jade +++ b/website/views/shared/new-stuff.jade @@ -1,29 +1,85 @@ -h2 11/25/2015 - HABITICA THANKSGIVING! NOVEMBER SUBSCRIBER ITEM AND TURKEY PETS AND MOUNTS +h2 12/10/2015 - ANDROID APP BETA IS LIVE! hr tr td - .npc_daniel.pull-right - h3 Happy Thanksgiving! - p It's Thanksgiving in Habitica! On this day Habiticans celebrate by spending time with loved ones, giving thanks, and riding their glorious turkeys into the magnificent sunset. Some of the NPCs are celebrating the occasion! - tr - td - .Pet-Turkey-Gilded.pull-right - h3 Turkey Pet and Mount! - p Those of you who weren't around last Thanksgiving have received an adorable Turkey Pet, and those of you who got a Turkey Pet last year have received a handsome Turkey Mount! Already got a Turkey Mount? You, my friend, have been gifted the rare and glittering Gilded Turkey Pet! + .promo_android.pull-right + h3 Android App Beta + p Android users, rejoice! We're releasing the beta version of our brand-new, totally rewritten native Android app. Download it here! br - p Thank you for using Habitica - we really love you guys <3 - tr - td - .promo_mystery_201511.pull-right - h3 November Subscriber Items Revealed - p The November Subscriber Item Set has been revealed: the Wood Warrior Set! All November subscribers will receive the Log Crown and the Wooden Armor. You still have five days to subscribe and receive the item set! Thank you so much for your support - we really do rely on you to keep Habitica free to use and running smoothly. - p.small.muted by Lemoness + p It's a beta version, which means that some features are still missing, but we are working to create additional releases for the coming weeks. You can help us make the app even better by leaving us feedback and reporting bugs under About > Report a Bug! (We are already aware of some, like Dailies sometimes moving around, and are working to address them in the coming weeks.) + br + p Finally, if you like the direction that we're taking the app, we'd love it if you could take the time to leave us a review :) It really makes a difference for us. + p.small.muted by Viirus, Sara Olson, MagicMicky, Negue, and FranzeJR if menuItem !== 'oldNews' hr a(href='/static/old-news', target='_blank') Read older news mixin oldNews + h2 12/7/2015 - PEPPERMINT PETS AND PUSH TASK TO BOTTOM! + tr + td + .Pet-Wolf-Peppermint.pull-right + h3 Peppermint Magic Hatching Potions + p A new Magic Hatching Potion is available! + br + p Between now and December 31st, you can buy Peppermint Hatching Potions from the Market and use them to hatch any standard pet egg. (Magic Hatching Potions do not work on Quest Pet eggs.) You'll find it very easy to care for your new Peppermint Pets: they love to eat every kind of food! + br + p Peppermint Hatching Potions are a Seasonal Edition item, so they will only be available during this time each year! Be sure to get them while you can. + p.small.muted by Lemoness + tr + td + h3 Push Task to Bottom + p Now you can easily push a task to the bottom of a list! Hold the Control or Command key, and the Push Task to Top icon will switch to a Push Task to Bottom icon. Click that and down goes the task! + p.small.muted by TheHollidayInn + h2 12/1/2015 - DECEMBER ARMOIRE ITEMS, BACKGROUNDS, MYSTERY BOX, AND GAYMERX ARMOR! + tr + td + .weapon_armoire_blueLongbow.pull-right + h3 December Armoire Items + p There is new equipment in Enchanted Armoire, a 100 GP Reward in the Rewards Column which unlocks after you've attained Ultimate Gear! + br + p Click on the Enchanted Armoire for a random chance at special Equipment, including the Crystal Crescent Set and the Blue Longbow! It may also give you random XP or food items. We'll be adding new equipment to it during the first week of each month, but even when you've exhausted the current supply, you can keep clicking for a chance at food and XP. + br + p Now go spend all that accumulated Gold! May the Random Number Generator smile upon you... + p.small.muted by Lemoness and SabreCat + p.small.muted Art by starsystemic, Fandekasp, and nonight + tr + td + .background_winter_town.pull-right + h3 December Backgrounds + p There are three new avatar backgrounds in the Background Shop! Now your avatar can ski on the Alpine Slopes, gaze at the Snowy Sunrise, or bustle through a Winter Town! + p.small.muted by Karithina, Inventrix, and Midori88 + tr + td + .inventory_present_12.pull-right + h3 December Mystery Box + p Ooh... What could it be? All Habiticans who are subscribed during the month of December will receive the 2015 December Mystery Item Set! It will be revealed on the 23rd, so keep your eyes peeled. Thanks for supporting the site <3 + p.small.muted by Lemoness + tr + td + .head_special_gaymerx.pull-right + h3 GaymerX Armor + p In honor of Habitica's partnership with the GaymerX3 Conference (December 11-13, in downtown San Jose), the Rainbow Warrior set is available once again from the Rewards column! It will only be available until December 14th, so be sure to get it now. Plus, the Unconventional Armor set will be available at the conference, so don't forget to pick up a promo card if you attend! + h2 11/25/2015 - HABITICA THANKSGIVING! NOVEMBER SUBSCRIBER ITEM AND TURKEY PETS AND MOUNTS + tr + td + .npc_daniel.pull-right + h3 Happy Thanksgiving! + p It's Thanksgiving in Habitica! On this day Habiticans celebrate by spending time with loved ones, giving thanks, and riding their glorious turkeys into the magnificent sunset. Some of the NPCs are celebrating the occasion! + tr + td + .Pet-Turkey-Gilded.pull-right + h3 Turkey Pet and Mount! + p Those of you who weren't around last Thanksgiving have received an adorable Turkey Pet, and those of you who got a Turkey Pet last year have received a handsome Turkey Mount! Already got a Turkey Mount? You, my friend, have been gifted the rare and glittering Gilded Turkey Pet! + br + p Thank you for using Habitica - we really love you guys <3 + tr + td + .promo_mystery_201511.pull-right + h3 November Subscriber Items Revealed + p The November Subscriber Item Set has been revealed: the Wood Warrior Set! All November subscribers will receive the Log Crown and the Wooden Armor. You still have five days to subscribe and receive the item set! Thank you so much for your support - we really do rely on you to keep Habitica free to use and running smoothly. + p.small.muted by Lemoness h2 11/19/2015 - SMALL iOS UPDATE AND HABITICA HIRING NEWS! tr td diff --git a/website/views/shared/tasks/meta_controls.jade b/website/views/shared/tasks/meta_controls.jade index e42210f240..733b37d23a 100644 --- a/website/views/shared/tasks/meta_controls.jade +++ b/website/views/shared/tasks/meta_controls.jade @@ -13,8 +13,9 @@ // Icons only available if you own the tasks (aka, hidden from challenge stats) span(ng-if='!obj._locked') - a(ng-click='pushTask(task,$index,"top")', tooltip=env.t('pushTaskToTop')) - span.glyphicon.glyphicon-open + a(ng-click='pushTask(task,$index,"top")', tooltip=env.t('pushTaskToTop'), ng-class="{'push-down': ctrlPressed}") + span(ng-hide="ctrlPressed").glyphicon.glyphicon-open + span(ng-show="ctrlPressed").glyphicon.glyphicon-save // a(ng-click='pushTask(task,$index,"bottom")', tooltip=env.t('pushTaskToBottom')) // span.glyphicon.glyphicon-import // // glyphicon-import or glyphicon-save or glyphicon-sort-by-attributes diff --git a/website/views/static/apps.jade b/website/views/static/apps.jade index 266d60596f..e71fef87b2 100644 --- a/website/views/static/apps.jade +++ b/website/views/static/apps.jade @@ -9,17 +9,10 @@ block title block content .lead - =env.t('checkOutIOSApp') + =env.t('checkOutMobileApps') .row.text-center - a(href='https://geo.itunes.apple.com/us/app/habitica/id994882113?mt=8') - .promo_habitica(style='border-radius:25px;margin:auto') - .row.text-center - a(href='https://geo.itunes.apple.com/us/app/habitica/id994882113?mt=8', style='display:inline-block;overflow:hidden;background:url(http://linkmaker.itunes.apple.com/images/badges/en-us/badge_appstore-lrg.svg) no-repeat;width:165px;height:40px;margin-left:30px') + .promo_habitica(style='border-radius:25px;margin:auto') br - .lead - =env.t('notifyAndroidApp') .row.text-center - .sendgrid-subscription-widget(data-token='WEc2mXZw9YqemYAJp3a%2FO%2FxyvSWuFCFS2x88bbdMa%2FJjEH%2FlDdpc%2Flbz4PPZZRZMnTmr8kNOzI6ypw%2Br3r55wQ%3D%3D') - script. - !function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?"http":"https";if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+"://s3.amazonaws.com/subscription-cdn/0.2/widget.min.js";fjs.parentNode.insertBefore(js,fjs);}}(document, "script", "sendgrid-subscription-widget-js"); - + a(href='https://play.google.com/store/apps/details?id=com.habitrpg.android.habitica&utm_source=global_co&utm_medium=prtnr&utm_content=Mar2515&utm_campaign=PartBadge&pcampaignid=MKT-AC-global-none-all-co-pr-py-PartBadges-Oct1515-1', style='display:inline-block;overflow:hidden;background:url(https://developer.android.com/images/brand/en_app_rgb_wo_45.png) no-repeat;background-size:100%;width:129px;height:45px;margin-left:20px') + a(href='https://geo.itunes.apple.com/us/app/habitica/id994882113?mt=8', style='display:inline-block;overflow:hidden;background:url(http://linkmaker.itunes.apple.com/images/badges/en-us/badge_appstore-lrg.svg#svgView) no-repeat;background-size:100%;width:152px;height:45px;margin-left:20px') diff --git a/website/views/static/front.jade b/website/views/static/front.jade index 9dcd7b3e3b..ddc9aaa28c 100644 --- a/website/views/static/front.jade +++ b/website/views/static/front.jade @@ -19,11 +19,12 @@ html(ng-app='habitrpg', ng-controller='RootCtrl') meta(name='twitter:card' content='summary') meta(name='twitter:site' content='@habitica') meta(name='twitter:title' content='Habitica: Your Life the Role Playing Game') - meta(name='twitter:description' content='Habitica is a free habit-building and productivity app that treats your real life like a game! Motivate yourself with in-game rewards and social encouragement.') + meta(name='twitter:description' content='Habitica is a free habit-building and productivity app that treats your real life like a game! Motivate yourself with in-game rewards and social encouragement.') meta(name='twitter:image' content='https://s3.amazonaws.com/habitica-assets/assets/gryphon_logo.png') meta(name='apple-itunes-app' content='app-id=994882113') link(rel='canonical', href='', type='text/html') - link(rel='shortcut icon', href='/favicon.ico') + link(rel='shortcut icon', sizes="32x32", href='/favicon.ico') + link(rel='shortcut icon', sizes="192x192", href='/favicon_192x192.png') link(rel='stylesheet', type='text/css', href='https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.4/css/bootstrap.min.css') @@ -651,4 +652,3 @@ html(ng-app='habitrpg', ng-controller='RootCtrl') }]).directive('carousel', [function () { return {} }]); - diff --git a/website/views/static/layout.jade b/website/views/static/layout.jade index 0c5057900a..f230f88213 100644 --- a/website/views/static/layout.jade +++ b/website/views/static/layout.jade @@ -19,7 +19,8 @@ html(ng-app='habitrpg') script(type='text/javascript'). window.env = !{JSON.stringify(env._.pick(env, env.clientVars))}; - link(rel='shortcut icon', href='#{env.getBuildUrl("favicon.ico")}?v=4') + link(rel='shortcut icon', sizes="32x32", href='#{env.getBuildUrl("favicon.ico")}?v=4') + link(rel='shortcut icon', sizes="192x192", href='#{env.getBuildUrl("favicon_192x192.png")}?v=4') meta(charset='utf-8') meta(name='viewport', content='width=device-width, initial-scale=1.0') diff --git a/website/views/static/new-stuff.jade b/website/views/static/new-stuff.jade index b2a6befbb1..0107b02d56 100644 --- a/website/views/static/new-stuff.jade +++ b/website/views/static/new-stuff.jade @@ -9,7 +9,8 @@ html(ng-app='habitrpg') script(type='text/javascript'). window.env = !{JSON.stringify(env._.pick(env, env.clientVars))}; - link(rel='shortcut icon', href='#{env.getBuildUrl("favicon.ico")}?v=4') + link(rel='shortcut icon', sizes="32x32", href='#{env.getBuildUrl("favicon.ico")}?v=4') + link(rel='shortcut icon', sizes="192x192", href='#{env.getBuildUrl("favicon_192x192.png")}?v=4') meta(charset='utf-8') meta(name='viewport', content='width=device-width, initial-scale=1.0')